diff --git a/corpus/declarations.txt b/corpus/declarations.txt index 11d0a94c..7c2c4e65 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -124,7 +124,8 @@ fn accumulate(self) -> Machine<{State::Accumulate}> {} (macro_invocation macro: (identifier) (token_tree - (string_literal) + (string_literal + (interpolation)) (identifier)))))) (function_item name: (identifier) @@ -1209,7 +1210,9 @@ pub enum Error { (attribute (identifier) (token_tree - (string_literal) + (string_literal + (interpolation + (format_specifier))) (identifier) (token_tree (integer_literal))))) @@ -1221,7 +1224,11 @@ pub enum Error { (attribute (identifier) (token_tree - (string_literal) + (string_literal + (interpolation + (identifier)) + (interpolation) + (interpolation)) (identifier) (identifier) (identifier) diff --git a/corpus/literals.txt b/corpus/literals.txt index 2500a1a1..2ed1f8d5 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -191,3 +191,135 @@ false; (boolean_literal)) (expression_statement (boolean_literal))) + +================================================================================ +Format strings +================================================================================ + +"{}"; +"{a}"; +"a {a}"; +"a {{}}"; +"a {b}}}"; +"a {{{b}"; +"a {{b}}"; +"a {{{b}}}"; +"a {aaaa}"; + +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (string_literal + (interpolation))) + (expression_statement + (string_literal + (interpolation + (identifier)))) + (expression_statement + (string_literal + (interpolation + (identifier)))) + (expression_statement + (string_literal)) + (expression_statement + (string_literal + (interpolation + (identifier)))) + (expression_statement + (string_literal + (interpolation + (identifier)))) + (expression_statement + (string_literal)) + (expression_statement + (string_literal + (interpolation + (identifier)))) + (expression_statement + (string_literal + (interpolation + (identifier))))) + +================================================================================ +Format strings with format specifiers +================================================================================ +"{:}"; +"{:?}"; +"{:#?}"; +"{a:?}"; +"{a:#?}"; +"{0:#?}"; +"{1} {0}"; +"{:b}"; +"{a:b}"; +"{a:#b}"; +"{a:#032b}"; +"{a:10.3b}"; +"{a:e}"; + +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (string_literal + (interpolation + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (identifier) + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (identifier) + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (integer_literal) + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (integer_literal)) + (interpolation + (integer_literal)))) + (expression_statement + (string_literal + (interpolation + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (identifier) + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (identifier) + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (identifier) + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (identifier) + (format_specifier)))) + (expression_statement + (string_literal + (interpolation + (identifier) + (format_specifier))))) diff --git a/corpus/macros.txt b/corpus/macros.txt index 5d26b420..333d2a8a 100644 --- a/corpus/macros.txt +++ b/corpus/macros.txt @@ -114,15 +114,21 @@ a!($a $a:ident $($a);*); (expression_statement (macro_invocation (identifier) - (token_tree (token_tree)))) + (token_tree + (token_tree)))) (expression_statement (macro_invocation (identifier) - (token_tree (identifier)))) + (token_tree + (identifier)))) (expression_statement (macro_invocation (identifier) - (token_tree (token_tree (token_tree (token_tree (identifier))))))) + (token_tree + (token_tree + (token_tree + (token_tree + (identifier))))))) (expression_statement (macro_invocation (identifier) @@ -213,7 +219,8 @@ macro_rules! zero_or_one { right: (token_tree (identifier) (token_tree - (string_literal) + (string_literal + (interpolation)) (metavariable)))) (macro_rule left: (token_tree_pattern @@ -224,7 +231,8 @@ macro_rules! zero_or_one { right: (token_tree (identifier) (token_tree - (string_literal) + (string_literal + (interpolation)) (metavariable))))) (macro_definition name: (identifier) diff --git a/grammar.js b/grammar.js index c5720f6e..41b29acb 100644 --- a/grammar.js +++ b/grammar.js @@ -1406,8 +1406,10 @@ module.exports = grammar({ string_literal: $ => seq( alias(/b?"/, '"'), repeat(choice( + $.interpolation, + $._escape_interpolation, $.escape_sequence, - $._string_content + $._string_content, )), token.immediate('"') ), @@ -1473,7 +1475,22 @@ module.exports = grammar({ super: $ => 'super', crate: $ => 'crate', - metavariable: $ => /\$[a-zA-Z_]\w*/ + metavariable: $ => /\$[a-zA-Z_]\w*/, + + interpolation: + $ => seq( + '{', + optional(choice($.integer_literal, $.identifier)), + optional($.format_specifier), + '}' + ), + + _escape_interpolation: _ => choice('{{', '}}'), + + format_specifier: _ => seq( + ':', + optional(repeat(token(/[^{}\n]+/))) + ), } }) diff --git a/queries/highlights.scm b/queries/highlights.scm index c1556847..ec2ab986 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -153,3 +153,7 @@ "*" @operator "&" @operator "'" @operator + +(interpolation + "{" @punctuation.special + "}" @punctuation.special) @embedded diff --git a/src/grammar.json b/src/grammar.json index 867f2683..4302b5c1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -8112,6 +8112,14 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "_escape_interpolation" + }, { "type": "SYMBOL", "name": "escape_sequence" @@ -8448,6 +8456,92 @@ "metavariable": { "type": "PATTERN", "value": "\\$[a-zA-Z_]\\w*" + }, + "interpolation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer_literal" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "format_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_escape_interpolation": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{{" + }, + { + "type": "STRING", + "value": "}}" + } + ] + }, + "format_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[^{}\\n]+" + } + } + }, + { + "type": "BLANK" + } + ] + } + ] } }, "extras": [ diff --git a/src/node-types.json b/src/node-types.json index 46a2578d..6e58e122 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1906,6 +1906,11 @@ ] } }, + { + "type": "format_specifier", + "named": true, + "fields": {} + }, { "type": "fragment_specifier", "named": true, @@ -2388,6 +2393,29 @@ ] } }, + { + "type": "interpolation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "format_specifier", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer_literal", + "named": true + } + ] + } + }, { "type": "let_chain", "named": true, @@ -3495,6 +3523,10 @@ { "type": "escape_sequence", "named": true + }, + { + "type": "interpolation", + "named": true } ] } @@ -5134,6 +5166,10 @@ "type": "{", "named": false }, + { + "type": "{{", + "named": false + }, { "type": "|", "named": false @@ -5149,5 +5185,9 @@ { "type": "}", "named": false + }, + { + "type": "}}", + "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index ede5d573..538d707f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,12 +5,12 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 2565 +#define LANGUAGE_VERSION 13 +#define STATE_COUNT 2575 #define LARGE_STATE_COUNT 639 -#define SYMBOL_COUNT 319 +#define SYMBOL_COUNT 326 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 139 +#define TOKEN_COUNT 142 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -151,194 +151,201 @@ enum { sym_super = 132, sym_crate = 133, sym_metavariable = 134, - sym__string_content = 135, - sym_raw_string_literal = 136, - sym_float_literal = 137, - sym_block_comment = 138, - sym_source_file = 139, - sym__statement = 140, - sym_empty_statement = 141, - sym_expression_statement = 142, - sym_macro_definition = 143, - sym_macro_rule = 144, - sym__token_pattern = 145, - sym_token_tree_pattern = 146, - sym_token_binding_pattern = 147, - sym_token_repetition_pattern = 148, - sym_fragment_specifier = 149, - sym_token_tree = 150, - sym_token_repetition = 151, - sym_attribute_item = 152, - sym_inner_attribute_item = 153, - sym_attribute = 154, - sym_mod_item = 155, - sym_foreign_mod_item = 156, - sym_declaration_list = 157, - sym_struct_item = 158, - sym_union_item = 159, - sym_enum_item = 160, - sym_enum_variant_list = 161, - sym_enum_variant = 162, - sym_field_declaration_list = 163, - sym_field_declaration = 164, - sym_ordered_field_declaration_list = 165, - sym_extern_crate_declaration = 166, - sym_const_item = 167, - sym_static_item = 168, - sym_type_item = 169, - sym_function_item = 170, - sym_function_signature_item = 171, - sym_function_modifiers = 172, - sym_where_clause = 173, - sym_where_predicate = 174, - sym_impl_item = 175, - sym_trait_item = 176, - sym_associated_type = 177, - sym_trait_bounds = 178, - sym_higher_ranked_trait_bound = 179, - sym_removed_trait_bound = 180, - sym_type_parameters = 181, - sym_const_parameter = 182, - sym_constrained_type_parameter = 183, - sym_optional_type_parameter = 184, - sym_let_declaration = 185, - sym_use_declaration = 186, - sym__use_clause = 187, - sym_scoped_use_list = 188, - sym_use_list = 189, - sym_use_as_clause = 190, - sym_use_wildcard = 191, - sym_parameters = 192, - sym_self_parameter = 193, - sym_variadic_parameter = 194, - sym_parameter = 195, - sym_extern_modifier = 196, - sym_visibility_modifier = 197, - sym__type = 198, - sym_bracketed_type = 199, - sym_qualified_type = 200, - sym_lifetime = 201, - sym_array_type = 202, - sym_for_lifetimes = 203, - sym_function_type = 204, - sym_tuple_type = 205, - sym_unit_type = 206, - sym_generic_function = 207, - sym_generic_type = 208, - sym_generic_type_with_turbofish = 209, - sym_bounded_type = 210, - sym_type_arguments = 211, - sym_type_binding = 212, - sym_reference_type = 213, - sym_pointer_type = 214, - sym_empty_type = 215, - sym_abstract_type = 216, - sym_dynamic_type = 217, - sym__expression_except_range = 218, - sym__expression = 219, - sym_macro_invocation = 220, - sym_delim_token_tree = 221, - sym__delim_tokens = 222, - sym__non_delim_token = 223, - sym_scoped_identifier = 224, - sym_scoped_type_identifier_in_expression_position = 225, - sym_scoped_type_identifier = 226, - sym_range_expression = 227, - sym_unary_expression = 228, - sym_try_expression = 229, - sym_reference_expression = 230, - sym_binary_expression = 231, - sym_assignment_expression = 232, - sym_compound_assignment_expr = 233, - sym_type_cast_expression = 234, - sym_return_expression = 235, - sym_yield_expression = 236, - sym_call_expression = 237, - sym_arguments = 238, - sym_array_expression = 239, - sym_parenthesized_expression = 240, - sym_tuple_expression = 241, - sym_unit_expression = 242, - sym_struct_expression = 243, - sym_field_initializer_list = 244, - sym_shorthand_field_initializer = 245, - sym_field_initializer = 246, - sym_base_field_initializer = 247, - sym_if_expression = 248, - sym_let_condition = 249, - sym__let_chain = 250, - sym__condition = 251, - sym_else_clause = 252, - sym_match_expression = 253, - sym_match_block = 254, - sym_match_arm = 255, - sym_last_match_arm = 256, - sym_match_pattern = 257, - sym_while_expression = 258, - sym_loop_expression = 259, - sym_for_expression = 260, - sym_const_block = 261, - sym_closure_expression = 262, - sym_closure_parameters = 263, - sym_loop_label = 264, - sym_break_expression = 265, - sym_continue_expression = 266, - sym_index_expression = 267, - sym_await_expression = 268, - sym_field_expression = 269, - sym_unsafe_block = 270, - sym_async_block = 271, - sym_block = 272, - sym__pattern = 273, - sym_tuple_pattern = 274, - sym_slice_pattern = 275, - sym_tuple_struct_pattern = 276, - sym_struct_pattern = 277, - sym_field_pattern = 278, - sym_remaining_field_pattern = 279, - sym_mut_pattern = 280, - sym_range_pattern = 281, - sym_ref_pattern = 282, - sym_captured_pattern = 283, - sym_reference_pattern = 284, - sym_or_pattern = 285, - sym__literal = 286, - sym__literal_pattern = 287, - sym_negative_literal = 288, - sym_string_literal = 289, - sym_boolean_literal = 290, - aux_sym_source_file_repeat1 = 291, - aux_sym_macro_definition_repeat1 = 292, - aux_sym_token_tree_pattern_repeat1 = 293, - aux_sym_token_tree_repeat1 = 294, - aux_sym_declaration_list_repeat1 = 295, - aux_sym_enum_variant_list_repeat1 = 296, - aux_sym_enum_variant_list_repeat2 = 297, - aux_sym_field_declaration_list_repeat1 = 298, - aux_sym_ordered_field_declaration_list_repeat1 = 299, - aux_sym_function_modifiers_repeat1 = 300, - aux_sym_where_clause_repeat1 = 301, - aux_sym_trait_bounds_repeat1 = 302, - aux_sym_type_parameters_repeat1 = 303, - aux_sym_use_list_repeat1 = 304, - aux_sym_parameters_repeat1 = 305, - aux_sym_for_lifetimes_repeat1 = 306, - aux_sym_tuple_type_repeat1 = 307, - aux_sym_type_arguments_repeat1 = 308, - aux_sym_delim_token_tree_repeat1 = 309, - aux_sym_arguments_repeat1 = 310, - aux_sym_array_expression_repeat1 = 311, - aux_sym_tuple_expression_repeat1 = 312, - aux_sym_field_initializer_list_repeat1 = 313, - aux_sym_match_block_repeat1 = 314, - aux_sym_closure_parameters_repeat1 = 315, - aux_sym_tuple_pattern_repeat1 = 316, - aux_sym_struct_pattern_repeat1 = 317, - aux_sym_string_literal_repeat1 = 318, - alias_sym_field_identifier = 319, - alias_sym_let_chain = 320, - alias_sym_shorthand_field_identifier = 321, - alias_sym_type_identifier = 322, + anon_sym_LBRACE_LBRACE = 135, + anon_sym_RBRACE_RBRACE = 136, + aux_sym_format_specifier_token1 = 137, + sym__string_content = 138, + sym_raw_string_literal = 139, + sym_float_literal = 140, + sym_block_comment = 141, + sym_source_file = 142, + sym__statement = 143, + sym_empty_statement = 144, + sym_expression_statement = 145, + sym_macro_definition = 146, + sym_macro_rule = 147, + sym__token_pattern = 148, + sym_token_tree_pattern = 149, + sym_token_binding_pattern = 150, + sym_token_repetition_pattern = 151, + sym_fragment_specifier = 152, + sym_token_tree = 153, + sym_token_repetition = 154, + sym_attribute_item = 155, + sym_inner_attribute_item = 156, + sym_attribute = 157, + sym_mod_item = 158, + sym_foreign_mod_item = 159, + sym_declaration_list = 160, + sym_struct_item = 161, + sym_union_item = 162, + sym_enum_item = 163, + sym_enum_variant_list = 164, + sym_enum_variant = 165, + sym_field_declaration_list = 166, + sym_field_declaration = 167, + sym_ordered_field_declaration_list = 168, + sym_extern_crate_declaration = 169, + sym_const_item = 170, + sym_static_item = 171, + sym_type_item = 172, + sym_function_item = 173, + sym_function_signature_item = 174, + sym_function_modifiers = 175, + sym_where_clause = 176, + sym_where_predicate = 177, + sym_impl_item = 178, + sym_trait_item = 179, + sym_associated_type = 180, + sym_trait_bounds = 181, + sym_higher_ranked_trait_bound = 182, + sym_removed_trait_bound = 183, + sym_type_parameters = 184, + sym_const_parameter = 185, + sym_constrained_type_parameter = 186, + sym_optional_type_parameter = 187, + sym_let_declaration = 188, + sym_use_declaration = 189, + sym__use_clause = 190, + sym_scoped_use_list = 191, + sym_use_list = 192, + sym_use_as_clause = 193, + sym_use_wildcard = 194, + sym_parameters = 195, + sym_self_parameter = 196, + sym_variadic_parameter = 197, + sym_parameter = 198, + sym_extern_modifier = 199, + sym_visibility_modifier = 200, + sym__type = 201, + sym_bracketed_type = 202, + sym_qualified_type = 203, + sym_lifetime = 204, + sym_array_type = 205, + sym_for_lifetimes = 206, + sym_function_type = 207, + sym_tuple_type = 208, + sym_unit_type = 209, + sym_generic_function = 210, + sym_generic_type = 211, + sym_generic_type_with_turbofish = 212, + sym_bounded_type = 213, + sym_type_arguments = 214, + sym_type_binding = 215, + sym_reference_type = 216, + sym_pointer_type = 217, + sym_empty_type = 218, + sym_abstract_type = 219, + sym_dynamic_type = 220, + sym__expression_except_range = 221, + sym__expression = 222, + sym_macro_invocation = 223, + sym_delim_token_tree = 224, + sym__delim_tokens = 225, + sym__non_delim_token = 226, + sym_scoped_identifier = 227, + sym_scoped_type_identifier_in_expression_position = 228, + sym_scoped_type_identifier = 229, + sym_range_expression = 230, + sym_unary_expression = 231, + sym_try_expression = 232, + sym_reference_expression = 233, + sym_binary_expression = 234, + sym_assignment_expression = 235, + sym_compound_assignment_expr = 236, + sym_type_cast_expression = 237, + sym_return_expression = 238, + sym_yield_expression = 239, + sym_call_expression = 240, + sym_arguments = 241, + sym_array_expression = 242, + sym_parenthesized_expression = 243, + sym_tuple_expression = 244, + sym_unit_expression = 245, + sym_struct_expression = 246, + sym_field_initializer_list = 247, + sym_shorthand_field_initializer = 248, + sym_field_initializer = 249, + sym_base_field_initializer = 250, + sym_if_expression = 251, + sym_let_condition = 252, + sym__let_chain = 253, + sym__condition = 254, + sym_else_clause = 255, + sym_match_expression = 256, + sym_match_block = 257, + sym_match_arm = 258, + sym_last_match_arm = 259, + sym_match_pattern = 260, + sym_while_expression = 261, + sym_loop_expression = 262, + sym_for_expression = 263, + sym_const_block = 264, + sym_closure_expression = 265, + sym_closure_parameters = 266, + sym_loop_label = 267, + sym_break_expression = 268, + sym_continue_expression = 269, + sym_index_expression = 270, + sym_await_expression = 271, + sym_field_expression = 272, + sym_unsafe_block = 273, + sym_async_block = 274, + sym_block = 275, + sym__pattern = 276, + sym_tuple_pattern = 277, + sym_slice_pattern = 278, + sym_tuple_struct_pattern = 279, + sym_struct_pattern = 280, + sym_field_pattern = 281, + sym_remaining_field_pattern = 282, + sym_mut_pattern = 283, + sym_range_pattern = 284, + sym_ref_pattern = 285, + sym_captured_pattern = 286, + sym_reference_pattern = 287, + sym_or_pattern = 288, + sym__literal = 289, + sym__literal_pattern = 290, + sym_negative_literal = 291, + sym_string_literal = 292, + sym_boolean_literal = 293, + sym_interpolation = 294, + sym__escape_interpolation = 295, + sym_format_specifier = 296, + aux_sym_source_file_repeat1 = 297, + aux_sym_macro_definition_repeat1 = 298, + aux_sym_token_tree_pattern_repeat1 = 299, + aux_sym_token_tree_repeat1 = 300, + aux_sym_declaration_list_repeat1 = 301, + aux_sym_enum_variant_list_repeat1 = 302, + aux_sym_enum_variant_list_repeat2 = 303, + aux_sym_field_declaration_list_repeat1 = 304, + aux_sym_ordered_field_declaration_list_repeat1 = 305, + aux_sym_function_modifiers_repeat1 = 306, + aux_sym_where_clause_repeat1 = 307, + aux_sym_trait_bounds_repeat1 = 308, + aux_sym_type_parameters_repeat1 = 309, + aux_sym_use_list_repeat1 = 310, + aux_sym_parameters_repeat1 = 311, + aux_sym_for_lifetimes_repeat1 = 312, + aux_sym_tuple_type_repeat1 = 313, + aux_sym_type_arguments_repeat1 = 314, + aux_sym_delim_token_tree_repeat1 = 315, + aux_sym_arguments_repeat1 = 316, + aux_sym_array_expression_repeat1 = 317, + aux_sym_tuple_expression_repeat1 = 318, + aux_sym_field_initializer_list_repeat1 = 319, + aux_sym_match_block_repeat1 = 320, + aux_sym_closure_parameters_repeat1 = 321, + aux_sym_tuple_pattern_repeat1 = 322, + aux_sym_struct_pattern_repeat1 = 323, + aux_sym_string_literal_repeat1 = 324, + aux_sym_format_specifier_repeat1 = 325, + alias_sym_field_identifier = 326, + alias_sym_let_chain = 327, + alias_sym_shorthand_field_identifier = 328, + alias_sym_type_identifier = 329, }; static const char * const ts_symbol_names[] = { @@ -477,6 +484,9 @@ static const char * const ts_symbol_names[] = { [sym_super] = "super", [sym_crate] = "crate", [sym_metavariable] = "metavariable", + [anon_sym_LBRACE_LBRACE] = "{{", + [anon_sym_RBRACE_RBRACE] = "}}", + [aux_sym_format_specifier_token1] = "format_specifier_token1", [sym__string_content] = "_string_content", [sym_raw_string_literal] = "raw_string_literal", [sym_float_literal] = "float_literal", @@ -633,6 +643,9 @@ static const char * const ts_symbol_names[] = { [sym_negative_literal] = "negative_literal", [sym_string_literal] = "string_literal", [sym_boolean_literal] = "boolean_literal", + [sym_interpolation] = "interpolation", + [sym__escape_interpolation] = "_escape_interpolation", + [sym_format_specifier] = "format_specifier", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_macro_definition_repeat1] = "macro_definition_repeat1", [aux_sym_token_tree_pattern_repeat1] = "token_tree_pattern_repeat1", @@ -661,6 +674,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_tuple_pattern_repeat1] = "tuple_pattern_repeat1", [aux_sym_struct_pattern_repeat1] = "struct_pattern_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", + [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", [alias_sym_field_identifier] = "field_identifier", [alias_sym_let_chain] = "let_chain", [alias_sym_shorthand_field_identifier] = "shorthand_field_identifier", @@ -803,6 +817,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_super] = sym_super, [sym_crate] = sym_crate, [sym_metavariable] = sym_metavariable, + [anon_sym_LBRACE_LBRACE] = anon_sym_LBRACE_LBRACE, + [anon_sym_RBRACE_RBRACE] = anon_sym_RBRACE_RBRACE, + [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, [sym__string_content] = sym__string_content, [sym_raw_string_literal] = sym_raw_string_literal, [sym_float_literal] = sym_float_literal, @@ -959,6 +976,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_negative_literal] = sym_negative_literal, [sym_string_literal] = sym_string_literal, [sym_boolean_literal] = sym_boolean_literal, + [sym_interpolation] = sym_interpolation, + [sym__escape_interpolation] = sym__escape_interpolation, + [sym_format_specifier] = sym_format_specifier, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_macro_definition_repeat1] = aux_sym_macro_definition_repeat1, [aux_sym_token_tree_pattern_repeat1] = aux_sym_token_tree_pattern_repeat1, @@ -987,6 +1007,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_tuple_pattern_repeat1] = aux_sym_tuple_pattern_repeat1, [aux_sym_struct_pattern_repeat1] = aux_sym_struct_pattern_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, + [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, [alias_sym_field_identifier] = alias_sym_field_identifier, [alias_sym_let_chain] = alias_sym_let_chain, [alias_sym_shorthand_field_identifier] = alias_sym_shorthand_field_identifier, @@ -1534,6 +1555,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_LBRACE_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE_RBRACE] = { + .visible = true, + .named = false, + }, + [aux_sym_format_specifier_token1] = { + .visible = false, + .named = false, + }, [sym__string_content] = { .visible = false, .named = true, @@ -2163,6 +2196,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_interpolation] = { + .visible = true, + .named = true, + }, + [sym__escape_interpolation] = { + .visible = false, + .named = true, + }, + [sym_format_specifier] = { + .visible = true, + .named = true, + }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2275,6 +2320,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_format_specifier_repeat1] = { + .visible = false, + .named = false, + }, [alias_sym_field_identifier] = { .visible = true, .named = true, @@ -3550,2574 +3599,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 3, - [5] = 2, - [6] = 2, - [7] = 2, - [8] = 8, - [9] = 9, - [10] = 2, - [11] = 3, - [12] = 8, - [13] = 3, - [14] = 3, - [15] = 3, - [16] = 2, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 19, - [21] = 18, - [22] = 22, - [23] = 23, - [24] = 24, - [25] = 17, - [26] = 18, - [27] = 23, - [28] = 19, - [29] = 24, - [30] = 22, - [31] = 18, - [32] = 19, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, - [40] = 40, - [41] = 37, - [42] = 42, - [43] = 39, - [44] = 40, - [45] = 45, - [46] = 40, - [47] = 47, - [48] = 48, - [49] = 39, - [50] = 37, - [51] = 51, - [52] = 52, - [53] = 53, - [54] = 54, - [55] = 55, - [56] = 56, - [57] = 57, - [58] = 58, - [59] = 58, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 80, - [83] = 83, - [84] = 84, - [85] = 85, - [86] = 86, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 91, - [96] = 68, - [97] = 94, - [98] = 90, - [99] = 99, - [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 104, - [105] = 105, - [106] = 106, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 115, - [116] = 111, - [117] = 117, - [118] = 118, - [119] = 112, - [120] = 120, - [121] = 121, - [122] = 117, - [123] = 123, - [124] = 124, - [125] = 111, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 105, - [130] = 113, - [131] = 131, - [132] = 106, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 138, - [139] = 109, - [140] = 124, - [141] = 110, - [142] = 120, - [143] = 128, - [144] = 103, - [145] = 145, - [146] = 136, - [147] = 147, - [148] = 148, - [149] = 149, - [150] = 149, - [151] = 103, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 120, - [156] = 156, - [157] = 108, - [158] = 100, - [159] = 126, - [160] = 160, - [161] = 148, - [162] = 100, - [163] = 100, - [164] = 133, - [165] = 165, - [166] = 166, - [167] = 165, - [168] = 121, - [169] = 169, - [170] = 115, - [171] = 169, - [172] = 166, - [173] = 127, - [174] = 107, - [175] = 153, - [176] = 135, - [177] = 152, - [178] = 178, - [179] = 179, - [180] = 179, - [181] = 179, - [182] = 182, - [183] = 182, - [184] = 184, - [185] = 185, - [186] = 186, - [187] = 185, - [188] = 186, - [189] = 184, - [190] = 190, - [191] = 191, - [192] = 192, - [193] = 192, - [194] = 194, - [195] = 195, - [196] = 195, - [197] = 195, - [198] = 198, - [199] = 199, - [200] = 200, - [201] = 200, - [202] = 202, - [203] = 202, - [204] = 204, - [205] = 202, - [206] = 199, - [207] = 200, - [208] = 204, - [209] = 209, - [210] = 48, - [211] = 53, - [212] = 56, - [213] = 54, - [214] = 214, - [215] = 60, - [216] = 85, - [217] = 72, - [218] = 218, - [219] = 75, - [220] = 62, - [221] = 74, - [222] = 77, - [223] = 76, - [224] = 69, - [225] = 73, - [226] = 63, - [227] = 67, - [228] = 61, - [229] = 65, - [230] = 230, - [231] = 230, - [232] = 232, - [233] = 66, - [234] = 84, - [235] = 232, - [236] = 236, - [237] = 237, - [238] = 237, - [239] = 239, - [240] = 240, - [241] = 241, - [242] = 242, - [243] = 242, - [244] = 241, - [245] = 56, - [246] = 246, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 253, - [254] = 254, - [255] = 255, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 299, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 53, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 54, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 365, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 448, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 453, - [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, - [460] = 460, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 466, - [467] = 467, - [468] = 468, - [469] = 365, - [470] = 470, - [471] = 471, - [472] = 472, - [473] = 473, - [474] = 474, - [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 484, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 484, - [491] = 491, - [492] = 492, - [493] = 489, - [494] = 494, - [495] = 487, - [496] = 492, - [497] = 488, - [498] = 481, - [499] = 494, - [500] = 500, - [501] = 501, - [502] = 502, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 505, - [508] = 508, - [509] = 509, - [510] = 504, - [511] = 505, - [512] = 501, - [513] = 502, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 508, - [518] = 506, - [519] = 502, - [520] = 508, - [521] = 505, - [522] = 509, - [523] = 509, - [524] = 504, - [525] = 525, - [526] = 508, - [527] = 504, - [528] = 501, - [529] = 502, - [530] = 508, - [531] = 509, - [532] = 509, - [533] = 514, - [534] = 505, - [535] = 516, - [536] = 502, - [537] = 537, - [538] = 525, - [539] = 539, - [540] = 504, - [541] = 503, - [542] = 501, - [543] = 501, - [544] = 515, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 584, - [590] = 590, - [591] = 587, - [592] = 585, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 567, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 64, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 597, - [613] = 600, - [614] = 575, - [615] = 88, - [616] = 598, - [617] = 597, - [618] = 587, - [619] = 611, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 622, - [624] = 622, - [625] = 625, - [626] = 626, - [627] = 626, - [628] = 625, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 629, - [633] = 633, - [634] = 634, - [635] = 630, - [636] = 626, - [637] = 633, - [638] = 631, - [639] = 639, - [640] = 640, - [641] = 641, - [642] = 642, - [643] = 643, - [644] = 644, - [645] = 645, - [646] = 646, - [647] = 647, - [648] = 648, - [649] = 640, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 656, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 650, - [661] = 661, - [662] = 643, - [663] = 663, - [664] = 664, - [665] = 665, - [666] = 666, - [667] = 667, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 639, - [673] = 673, - [674] = 644, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 648, - [680] = 652, - [681] = 681, - [682] = 663, - [683] = 681, - [684] = 684, - [685] = 654, - [686] = 686, - [687] = 676, - [688] = 642, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 651, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 665, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 655, - [707] = 698, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 704, - [713] = 658, - [714] = 711, - [715] = 667, - [716] = 689, - [717] = 708, - [718] = 661, - [719] = 670, - [720] = 675, - [721] = 694, - [722] = 657, - [723] = 659, - [724] = 646, - [725] = 644, - [726] = 664, - [727] = 653, - [728] = 696, - [729] = 695, - [730] = 666, - [731] = 701, - [732] = 318, - [733] = 733, - [734] = 710, - [735] = 735, - [736] = 703, - [737] = 705, - [738] = 738, - [739] = 709, - [740] = 640, - [741] = 741, - [742] = 742, - [743] = 690, - [744] = 678, - [745] = 653, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 318, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 761, - [762] = 762, - [763] = 461, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 464, - [768] = 320, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, - [773] = 256, - [774] = 326, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 198, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 799, - [800] = 800, - [801] = 48, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 290, - [809] = 306, - [810] = 369, - [811] = 384, - [812] = 387, - [813] = 813, - [814] = 392, - [815] = 585, - [816] = 816, - [817] = 817, - [818] = 62, - [819] = 401, - [820] = 402, - [821] = 403, - [822] = 404, - [823] = 405, - [824] = 406, - [825] = 407, - [826] = 408, - [827] = 411, - [828] = 413, - [829] = 414, - [830] = 415, - [831] = 419, - [832] = 423, - [833] = 425, - [834] = 426, - [835] = 428, - [836] = 431, - [837] = 433, - [838] = 838, - [839] = 434, - [840] = 435, - [841] = 436, - [842] = 842, - [843] = 843, - [844] = 440, - [845] = 246, - [846] = 443, - [847] = 444, - [848] = 450, - [849] = 452, - [850] = 456, - [851] = 468, - [852] = 77, - [853] = 476, - [854] = 477, - [855] = 479, - [856] = 856, - [857] = 480, - [858] = 412, - [859] = 475, - [860] = 471, - [861] = 470, - [862] = 862, - [863] = 465, - [864] = 463, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 66, - [870] = 69, - [871] = 871, - [872] = 872, - [873] = 453, - [874] = 451, - [875] = 447, - [876] = 446, - [877] = 420, - [878] = 416, - [879] = 88, - [880] = 398, - [881] = 375, - [882] = 373, - [883] = 75, - [884] = 357, - [885] = 338, - [886] = 335, - [887] = 327, - [888] = 325, - [889] = 324, - [890] = 323, - [891] = 891, - [892] = 321, - [893] = 319, - [894] = 388, - [895] = 383, - [896] = 317, - [897] = 314, - [898] = 898, - [899] = 311, - [900] = 304, - [901] = 302, - [902] = 301, - [903] = 297, - [904] = 293, - [905] = 905, - [906] = 417, - [907] = 418, - [908] = 273, - [909] = 272, - [910] = 271, - [911] = 270, - [912] = 257, - [913] = 362, - [914] = 422, - [915] = 73, - [916] = 254, - [917] = 360, - [918] = 83, - [919] = 424, - [920] = 432, - [921] = 342, - [922] = 922, - [923] = 349, - [924] = 924, - [925] = 437, - [926] = 252, - [927] = 389, - [928] = 251, - [929] = 348, - [930] = 81, - [931] = 931, - [932] = 932, - [933] = 250, - [934] = 249, - [935] = 935, - [936] = 347, - [937] = 438, - [938] = 439, - [939] = 346, - [940] = 454, - [941] = 941, - [942] = 942, - [943] = 457, - [944] = 458, - [945] = 345, - [946] = 946, - [947] = 344, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 74, - [953] = 953, - [954] = 343, - [955] = 247, - [956] = 331, - [957] = 356, - [958] = 341, - [959] = 339, - [960] = 336, - [961] = 85, - [962] = 329, - [963] = 394, - [964] = 395, - [965] = 427, - [966] = 64, - [967] = 54, - [968] = 448, - [969] = 455, - [970] = 467, - [971] = 466, - [972] = 445, - [973] = 81, - [974] = 72, - [975] = 409, - [976] = 390, - [977] = 386, - [978] = 382, - [979] = 979, - [980] = 377, - [981] = 309, - [982] = 374, - [983] = 368, - [984] = 367, - [985] = 60, - [986] = 308, - [987] = 987, - [988] = 361, - [989] = 567, - [990] = 307, - [991] = 460, - [992] = 364, - [993] = 305, - [994] = 303, - [995] = 300, - [996] = 298, - [997] = 352, - [998] = 350, - [999] = 296, - [1000] = 294, - [1001] = 292, - [1002] = 1002, - [1003] = 462, - [1004] = 291, - [1005] = 1005, - [1006] = 289, - [1007] = 288, - [1008] = 287, - [1009] = 1009, - [1010] = 286, - [1011] = 1011, - [1012] = 1012, - [1013] = 285, - [1014] = 284, - [1015] = 1015, - [1016] = 282, - [1017] = 1017, - [1018] = 281, - [1019] = 279, - [1020] = 276, - [1021] = 275, - [1022] = 277, - [1023] = 83, - [1024] = 84, - [1025] = 53, - [1026] = 478, - [1027] = 474, - [1028] = 584, - [1029] = 1029, - [1030] = 269, - [1031] = 1031, - [1032] = 280, - [1033] = 283, - [1034] = 268, - [1035] = 266, - [1036] = 264, - [1037] = 259, - [1038] = 61, - [1039] = 63, - [1040] = 1040, - [1041] = 255, - [1042] = 1042, - [1043] = 248, - [1044] = 473, - [1045] = 67, - [1046] = 1046, - [1047] = 76, - [1048] = 400, - [1049] = 56, - [1050] = 442, - [1051] = 1051, - [1052] = 1052, - [1053] = 472, - [1054] = 1054, - [1055] = 253, - [1056] = 261, - [1057] = 262, - [1058] = 381, - [1059] = 263, - [1060] = 1060, - [1061] = 1061, - [1062] = 265, - [1063] = 370, - [1064] = 359, - [1065] = 459, - [1066] = 267, - [1067] = 1067, - [1068] = 376, - [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 358, - [1073] = 1073, - [1074] = 322, - [1075] = 274, - [1076] = 278, - [1077] = 295, - [1078] = 299, - [1079] = 1079, - [1080] = 318, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 310, - [1085] = 449, - [1086] = 312, - [1087] = 1087, - [1088] = 313, - [1089] = 315, - [1090] = 441, - [1091] = 316, - [1092] = 328, - [1093] = 332, - [1094] = 333, - [1095] = 334, - [1096] = 340, - [1097] = 351, - [1098] = 353, - [1099] = 54, - [1100] = 354, - [1101] = 355, - [1102] = 53, - [1103] = 363, - [1104] = 366, - [1105] = 430, - [1106] = 371, - [1107] = 56, - [1108] = 372, - [1109] = 429, - [1110] = 258, - [1111] = 1111, - [1112] = 378, - [1113] = 379, - [1114] = 88, - [1115] = 380, - [1116] = 385, - [1117] = 421, - [1118] = 575, - [1119] = 1119, - [1120] = 393, - [1121] = 1121, - [1122] = 396, - [1123] = 397, - [1124] = 64, - [1125] = 399, - [1126] = 410, - [1127] = 65, - [1128] = 1128, - [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 1147, - [1148] = 1148, - [1149] = 1149, - [1150] = 1150, - [1151] = 1151, - [1152] = 1152, - [1153] = 621, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 758, - [1162] = 1162, - [1163] = 318, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1165, - [1168] = 1168, - [1169] = 1164, - [1170] = 1015, - [1171] = 758, - [1172] = 792, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 792, - [1177] = 780, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 769, - [1182] = 1182, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 766, - [1187] = 764, - [1188] = 1188, - [1189] = 772, - [1190] = 793, - [1191] = 796, - [1192] = 1031, - [1193] = 1193, - [1194] = 1119, - [1195] = 1195, - [1196] = 1195, - [1197] = 1197, - [1198] = 1136, - [1199] = 1199, - [1200] = 1155, - [1201] = 1201, - [1202] = 1199, - [1203] = 1157, - [1204] = 1204, - [1205] = 1154, - [1206] = 1206, - [1207] = 1207, - [1208] = 1130, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1201, - [1215] = 1215, - [1216] = 1213, - [1217] = 1210, - [1218] = 1218, - [1219] = 1206, - [1220] = 1206, - [1221] = 1148, - [1222] = 1211, - [1223] = 1223, - [1224] = 1140, - [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1213, - [1229] = 1229, - [1230] = 1213, - [1231] = 1209, - [1232] = 1143, - [1233] = 1204, - [1234] = 1234, - [1235] = 1144, - [1236] = 1146, - [1237] = 1211, - [1238] = 1138, - [1239] = 1206, - [1240] = 1147, - [1241] = 1129, - [1242] = 1206, - [1243] = 1243, - [1244] = 1128, - [1245] = 1245, - [1246] = 1246, - [1247] = 1152, - [1248] = 1210, - [1249] = 1158, - [1250] = 1250, - [1251] = 1246, - [1252] = 1252, - [1253] = 1142, - [1254] = 1254, - [1255] = 1255, - [1256] = 1145, - [1257] = 1206, - [1258] = 1258, - [1259] = 1201, - [1260] = 1213, - [1261] = 1213, - [1262] = 1156, - [1263] = 1132, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1269, - [1279] = 1265, - [1280] = 1270, - [1281] = 1275, - [1282] = 1282, - [1283] = 1268, - [1284] = 1271, - [1285] = 1274, - [1286] = 1286, - [1287] = 1272, - [1288] = 1277, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1267, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, - [1298] = 1297, - [1299] = 1299, - [1300] = 1299, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1305, - [1307] = 1304, - [1308] = 1305, - [1309] = 1305, - [1310] = 1305, - [1311] = 1311, - [1312] = 1311, - [1313] = 567, - [1314] = 575, - [1315] = 1315, - [1316] = 752, - [1317] = 762, - [1318] = 755, - [1319] = 753, - [1320] = 756, - [1321] = 755, - [1322] = 762, - [1323] = 756, - [1324] = 761, - [1325] = 761, - [1326] = 754, - [1327] = 759, - [1328] = 1328, - [1329] = 757, - [1330] = 1330, - [1331] = 760, - [1332] = 1332, - [1333] = 81, - [1334] = 1334, - [1335] = 88, - [1336] = 83, - [1337] = 1337, - [1338] = 64, - [1339] = 1334, - [1340] = 789, - [1341] = 1183, - [1342] = 797, - [1343] = 1015, - [1344] = 804, - [1345] = 782, - [1346] = 785, - [1347] = 799, - [1348] = 1348, - [1349] = 803, - [1350] = 791, - [1351] = 1351, - [1352] = 779, - [1353] = 781, - [1354] = 776, - [1355] = 805, - [1356] = 783, - [1357] = 802, - [1358] = 584, - [1359] = 790, - [1360] = 1180, - [1361] = 807, - [1362] = 786, - [1363] = 798, - [1364] = 1364, - [1365] = 795, - [1366] = 1366, - [1367] = 806, - [1368] = 788, - [1369] = 1369, - [1370] = 775, - [1371] = 1184, - [1372] = 1185, - [1373] = 1369, - [1374] = 787, - [1375] = 1369, - [1376] = 950, - [1377] = 1042, - [1378] = 868, - [1379] = 867, - [1380] = 1380, - [1381] = 932, - [1382] = 931, - [1383] = 865, - [1384] = 1012, - [1385] = 946, - [1386] = 949, - [1387] = 862, - [1388] = 1017, - [1389] = 1389, - [1390] = 1040, - [1391] = 771, - [1392] = 935, - [1393] = 1393, - [1394] = 1083, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, - [1398] = 941, - [1399] = 1005, - [1400] = 951, - [1401] = 1002, - [1402] = 953, - [1403] = 922, - [1404] = 905, - [1405] = 856, - [1406] = 1406, - [1407] = 56, - [1408] = 1395, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 54, - [1415] = 53, - [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 762, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 756, - [1424] = 761, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 756, - [1431] = 762, - [1432] = 1432, - [1433] = 755, - [1434] = 1434, - [1435] = 755, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 1395, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 761, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 761, - [1450] = 1450, - [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1454, - [1455] = 67, - [1456] = 1456, - [1457] = 755, - [1458] = 1458, - [1459] = 756, - [1460] = 1460, - [1461] = 762, - [1462] = 1462, - [1463] = 1462, - [1464] = 1464, - [1465] = 1465, - [1466] = 1465, - [1467] = 1464, - [1468] = 1468, - [1469] = 1469, - [1470] = 1469, - [1471] = 1471, - [1472] = 1471, - [1473] = 1468, - [1474] = 1474, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1478, - [1480] = 1480, - [1481] = 1480, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1487, - [1490] = 1490, - [1491] = 1483, - [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1486, - [1497] = 1497, - [1498] = 1495, - [1499] = 1493, - [1500] = 1500, - [1501] = 1484, - [1502] = 1490, - [1503] = 1494, - [1504] = 1504, - [1505] = 1337, - [1506] = 1482, - [1507] = 1497, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1512, - [1514] = 1485, - [1515] = 1500, - [1516] = 1516, - [1517] = 1511, - [1518] = 1508, - [1519] = 1509, - [1520] = 1492, - [1521] = 1516, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1337, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, - [1533] = 1531, - [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1542, - [1544] = 1544, - [1545] = 1545, - [1546] = 1545, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1545, - [1553] = 1553, - [1554] = 1554, - [1555] = 1534, - [1556] = 1556, - [1557] = 1348, - [1558] = 1558, - [1559] = 1559, - [1560] = 1559, - [1561] = 1561, - [1562] = 1527, - [1563] = 1532, - [1564] = 1538, - [1565] = 1337, - [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1579, - [1582] = 1576, - [1583] = 1569, - [1584] = 1584, - [1585] = 1573, - [1586] = 1586, - [1587] = 1587, - [1588] = 1588, - [1589] = 1589, - [1590] = 1590, - [1591] = 1591, - [1592] = 1580, - [1593] = 1593, - [1594] = 1594, - [1595] = 1595, - [1596] = 1348, - [1597] = 1597, - [1598] = 1594, - [1599] = 1599, - [1600] = 1586, - [1601] = 1584, - [1602] = 1597, - [1603] = 1603, - [1604] = 1604, - [1605] = 1587, - [1606] = 1606, - [1607] = 1607, - [1608] = 1608, - [1609] = 1571, - [1610] = 1590, - [1611] = 1588, - [1612] = 1612, - [1613] = 1613, - [1614] = 1614, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 1618, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1622, - [1623] = 1623, - [1624] = 1624, - [1625] = 1613, - [1626] = 1626, - [1627] = 1612, - [1628] = 1628, - [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1634, - [1635] = 1635, - [1636] = 1624, - [1637] = 1637, - [1638] = 1638, - [1639] = 1639, - [1640] = 1640, - [1641] = 1635, - [1642] = 1640, - [1643] = 1637, - [1644] = 1620, - [1645] = 1645, - [1646] = 1646, - [1647] = 1647, - [1648] = 1626, - [1649] = 1646, - [1650] = 1650, - [1651] = 1639, - [1652] = 1623, - [1653] = 1348, - [1654] = 1654, - [1655] = 1619, - [1656] = 1656, - [1657] = 1657, - [1658] = 1658, - [1659] = 1650, - [1660] = 1647, - [1661] = 1661, - [1662] = 1645, - [1663] = 1663, - [1664] = 1616, - [1665] = 1665, - [1666] = 1615, - [1667] = 1667, - [1668] = 1656, - [1669] = 1669, - [1670] = 1614, - [1671] = 1671, - [1672] = 1672, - [1673] = 1673, - [1674] = 1674, - [1675] = 1638, - [1676] = 1632, - [1677] = 1677, - [1678] = 1631, - [1679] = 1679, - [1680] = 1661, - [1681] = 1615, - [1682] = 1673, - [1683] = 1683, - [1684] = 1663, - [1685] = 1657, - [1686] = 1679, - [1687] = 1677, - [1688] = 1669, - [1689] = 1683, - [1690] = 1690, - [1691] = 1628, - [1692] = 1622, - [1693] = 1667, - [1694] = 1633, - [1695] = 1695, - [1696] = 1673, - [1697] = 1618, - [1698] = 1672, - [1699] = 1658, - [1700] = 1628, - [1701] = 1617, - [1702] = 1674, - [1703] = 1621, - [1704] = 1671, - [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1707, - [1709] = 1139, - [1710] = 1710, - [1711] = 1711, - [1712] = 1712, - [1713] = 1713, - [1714] = 1714, - [1715] = 1711, - [1716] = 1716, - [1717] = 1707, - [1718] = 1718, - [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1722, - [1723] = 1723, - [1724] = 1724, - [1725] = 1135, - [1726] = 1134, - [1727] = 1727, - [1728] = 1710, - [1729] = 1729, - [1730] = 1710, - [1731] = 1723, - [1732] = 1732, - [1733] = 1733, - [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1716, - [1739] = 1739, - [1740] = 1740, - [1741] = 1150, - [1742] = 1141, - [1743] = 1718, - [1744] = 1740, - [1745] = 1745, - [1746] = 1735, - [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1720, - [1751] = 1736, - [1752] = 1752, - [1753] = 1151, - [1754] = 1716, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, - [1758] = 1758, - [1759] = 1759, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1766, - [1767] = 1767, - [1768] = 1764, - [1769] = 1769, - [1770] = 1770, - [1771] = 1771, - [1772] = 1772, - [1773] = 1773, - [1774] = 1774, - [1775] = 1775, - [1776] = 1761, - [1777] = 1777, - [1778] = 1765, - [1779] = 1769, - [1780] = 1780, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1785, - [1786] = 1786, - [1787] = 1781, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1792, - [1793] = 1774, - [1794] = 1794, - [1795] = 1786, - [1796] = 1780, - [1797] = 1771, - [1798] = 1798, - [1799] = 1785, - [1800] = 1800, - [1801] = 1762, - [1802] = 1767, - [1803] = 1760, - [1804] = 1804, - [1805] = 1774, - [1806] = 1806, - [1807] = 1807, - [1808] = 1769, - [1809] = 1809, - [1810] = 1777, - [1811] = 1811, - [1812] = 1812, - [1813] = 1813, - [1814] = 1814, - [1815] = 1807, - [1816] = 1812, - [1817] = 1782, - [1818] = 1792, - [1819] = 1809, - [1820] = 1820, - [1821] = 1821, - [1822] = 1758, - [1823] = 1823, - [1824] = 1824, - [1825] = 1825, - [1826] = 1780, - [1827] = 1827, - [1828] = 1783, - [1829] = 1762, - [1830] = 1814, - [1831] = 1827, - [1832] = 1832, - [1833] = 1833, - [1834] = 1760, - [1835] = 1775, - [1836] = 1836, - [1837] = 1837, - [1838] = 1838, - [1839] = 1839, - [1840] = 1811, - [1841] = 1772, - [1842] = 1842, - [1843] = 1843, - [1844] = 1800, - [1845] = 1760, - [1846] = 1846, - [1847] = 1847, - [1848] = 1769, - [1849] = 1774, - [1850] = 1813, - [1851] = 1851, - [1852] = 1833, - [1853] = 1762, - [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 1862, - [1863] = 1863, - [1864] = 1864, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1870, - [1871] = 574, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1875, - [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1863, - [1886] = 1886, - [1887] = 1887, - [1888] = 1862, - [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1862, - [1895] = 1895, - [1896] = 1863, - [1897] = 1897, - [1898] = 1898, - [1899] = 571, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1903, - [1904] = 1904, - [1905] = 1905, - [1906] = 1863, - [1907] = 1907, - [1908] = 1908, - [1909] = 1862, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1919, - [1920] = 1920, - [1921] = 1898, - [1922] = 1922, - [1923] = 1881, - [1924] = 1861, - [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1930, - [1931] = 1931, - [1932] = 1932, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1865, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1858, - [1945] = 1945, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 1873, - [1950] = 1875, - [1951] = 1951, - [1952] = 1876, - [1953] = 1953, - [1954] = 1954, - [1955] = 1856, - [1956] = 1877, - [1957] = 1878, - [1958] = 1958, - [1959] = 1959, - [1960] = 1960, - [1961] = 1942, - [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1891, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, - [1971] = 1971, - [1972] = 1972, - [1973] = 1900, - [1974] = 1974, - [1975] = 1975, - [1976] = 1976, - [1977] = 1977, - [1978] = 1907, - [1979] = 1910, - [1980] = 1980, - [1981] = 1981, - [1982] = 1982, - [1983] = 1911, - [1984] = 1912, - [1985] = 1919, - [1986] = 1986, - [1987] = 1987, - [1988] = 1965, - [1989] = 1926, - [1990] = 1927, - [1991] = 1941, - [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 1943, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, - [1999] = 1999, - [2000] = 2000, - [2001] = 1965, - [2002] = 2002, - [2003] = 1998, - [2004] = 2004, - [2005] = 1958, - [2006] = 2006, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 2010, - [2011] = 1965, - [2012] = 2012, - [2013] = 2013, - [2014] = 1863, - [2015] = 1925, - [2016] = 1862, - [2017] = 1992, - [2018] = 1862, - [2019] = 1993, - [2020] = 2020, - [2021] = 2009, - [2022] = 2022, - [2023] = 2006, - [2024] = 2024, - [2025] = 2025, - [2026] = 2007, - [2027] = 1863, - [2028] = 2012, - [2029] = 1997, - [2030] = 2022, - [2031] = 2025, - [2032] = 2032, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 1987, - [2037] = 2033, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 2041, - [2042] = 2042, - [2043] = 2035, - [2044] = 2044, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 1975, - [2049] = 2049, - [2050] = 2050, - [2051] = 2051, - [2052] = 2052, - [2053] = 1892, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 2047, - [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2062, - [2064] = 2064, - [2065] = 2032, - [2066] = 2066, - [2067] = 1982, - [2068] = 1869, - [2069] = 2064, - [2070] = 2066, - [2071] = 2071, - [2072] = 1998, - [2073] = 1880, - [2074] = 2074, - [2075] = 2075, - [2076] = 1857, - [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 1901, - [2081] = 2000, - [2082] = 2075, - [2083] = 1903, - [2084] = 2077, - [2085] = 2085, - [2086] = 1948, - [2087] = 1884, - [2088] = 2088, - [2089] = 2089, - [2090] = 1963, - [2091] = 2091, - [2092] = 1969, - [2093] = 2093, - [2094] = 1855, - [2095] = 2095, - [2096] = 2096, - [2097] = 2020, - [2098] = 2098, - [2099] = 2099, - [2100] = 2034, - [2101] = 2098, - [2102] = 1994, - [2103] = 2103, - [2104] = 1999, - [2105] = 2010, - [2106] = 2008, - [2107] = 2107, - [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2107, - [2119] = 2119, - [2120] = 2120, - [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 2115, - [2125] = 2125, - [2126] = 2112, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, - [2130] = 2116, - [2131] = 2131, - [2132] = 2128, - [2133] = 2133, - [2134] = 2134, - [2135] = 2129, - [2136] = 2134, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, - [2142] = 2142, - [2143] = 2143, - [2144] = 2120, - [2145] = 2141, - [2146] = 2146, - [2147] = 2121, - [2148] = 2143, - [2149] = 2149, - [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 2158, - [2159] = 2159, - [2160] = 2160, - [2161] = 2127, - [2162] = 2162, - [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2122, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 2171, - [2172] = 2119, - [2173] = 2140, - [2174] = 2146, - [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 2117, - [2181] = 2181, - [2182] = 2182, - [2183] = 2183, - [2184] = 2184, - [2185] = 2114, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, - [2195] = 2195, - [2196] = 2113, - [2197] = 2197, - [2198] = 2187, - [2199] = 2176, - [2200] = 2170, - [2201] = 2201, - [2202] = 2175, - [2203] = 2177, - [2204] = 2179, - [2205] = 2181, - [2206] = 2182, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2184, - [2211] = 2211, - [2212] = 2111, - [2213] = 2188, - [2214] = 2214, - [2215] = 2110, - [2216] = 2157, - [2217] = 2137, - [2218] = 2218, - [2219] = 2109, - [2220] = 2108, - [2221] = 2191, - [2222] = 2192, - [2223] = 2193, - [2224] = 2142, - [2225] = 2194, - [2226] = 2226, - [2227] = 2227, - [2228] = 2168, - [2229] = 2171, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2166, - [2234] = 2153, - [2235] = 2125, - [2236] = 2165, - [2237] = 2131, - [2238] = 2214, - [2239] = 2171, - [2240] = 2183, - [2241] = 2159, - [2242] = 2163, - [2243] = 2190, - [2244] = 2244, - [2245] = 2245, - [2246] = 2197, - [2247] = 2247, - [2248] = 2248, - [2249] = 2211, - [2250] = 2186, - [2251] = 2218, - [2252] = 1595, - [2253] = 2253, - [2254] = 2123, - [2255] = 2255, - [2256] = 2256, - [2257] = 2227, - [2258] = 2245, - [2259] = 2253, - [2260] = 2260, - [2261] = 2244, - [2262] = 2262, - [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 2160, - [2267] = 2256, - [2268] = 2162, - [2269] = 2218, - [2270] = 2270, - [2271] = 2271, - [2272] = 2211, - [2273] = 2133, - [2274] = 2274, - [2275] = 2183, - [2276] = 2226, - [2277] = 2197, - [2278] = 2137, - [2279] = 2230, - [2280] = 2231, - [2281] = 2281, - [2282] = 865, - [2283] = 2232, - [2284] = 2284, - [2285] = 2133, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 941, - [2290] = 2290, - [2291] = 946, - [2292] = 2159, - [2293] = 2149, - [2294] = 2158, - [2295] = 2295, - [2296] = 2296, - [2297] = 2297, - [2298] = 2150, - [2299] = 2256, - [2300] = 2134, - [2301] = 2301, - [2302] = 2178, - [2303] = 2271, - [2304] = 2304, - [2305] = 1005, - [2306] = 2255, - [2307] = 2189, - [2308] = 2151, - [2309] = 2154, - [2310] = 2156, - [2311] = 2169, - [2312] = 2301, - [2313] = 585, - [2314] = 2314, - [2315] = 2315, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2320, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 2324, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2328, - [2329] = 2324, - [2330] = 2330, - [2331] = 2331, - [2332] = 2332, - [2333] = 2333, - [2334] = 2317, - [2335] = 2335, - [2336] = 2319, - [2337] = 2320, - [2338] = 2338, - [2339] = 2322, - [2340] = 2340, - [2341] = 2341, - [2342] = 2322, - [2343] = 2343, - [2344] = 2320, - [2345] = 2345, - [2346] = 2324, - [2347] = 2319, - [2348] = 2317, - [2349] = 2317, - [2350] = 2319, - [2351] = 2320, - [2352] = 2352, - [2353] = 2324, - [2354] = 2354, - [2355] = 2355, - [2356] = 2356, - [2357] = 2357, - [2358] = 2358, - [2359] = 2359, - [2360] = 2360, - [2361] = 2361, - [2362] = 2362, - [2363] = 2322, - [2364] = 2364, - [2365] = 2365, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 2370, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, - [2374] = 2374, - [2375] = 2375, - [2376] = 2376, - [2377] = 2377, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 2381, - [2382] = 2382, - [2383] = 2383, - [2384] = 2384, - [2385] = 2338, - [2386] = 2386, - [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, - [2399] = 2399, - [2400] = 2400, - [2401] = 2332, - [2402] = 2402, - [2403] = 2403, - [2404] = 2404, - [2405] = 2405, - [2406] = 2406, - [2407] = 2407, - [2408] = 2408, - [2409] = 2405, - [2410] = 2410, - [2411] = 2404, - [2412] = 2412, - [2413] = 2394, - [2414] = 2320, - [2415] = 2415, - [2416] = 2319, - [2417] = 2417, - [2418] = 2418, - [2419] = 2317, - [2420] = 2420, - [2421] = 2421, - [2422] = 2422, - [2423] = 2423, - [2424] = 2331, - [2425] = 2328, - [2426] = 2426, - [2427] = 2333, - [2428] = 2399, - [2429] = 2314, - [2430] = 2430, - [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2434, - [2435] = 2435, - [2436] = 2436, - [2437] = 2422, - [2438] = 2438, - [2439] = 2398, - [2440] = 2440, - [2441] = 2397, - [2442] = 2442, - [2443] = 2396, - [2444] = 2433, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2377, - [2450] = 2412, - [2451] = 2403, - [2452] = 2395, - [2453] = 2453, - [2454] = 2338, - [2455] = 2383, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, - [2459] = 564, - [2460] = 2460, - [2461] = 2442, - [2462] = 2440, - [2463] = 2393, - [2464] = 2464, - [2465] = 2465, - [2466] = 2343, - [2467] = 2316, - [2468] = 2468, - [2469] = 2469, - [2470] = 2321, - [2471] = 2471, - [2472] = 2386, - [2473] = 2323, - [2474] = 2474, - [2475] = 2330, - [2476] = 2476, - [2477] = 2322, - [2478] = 2352, - [2479] = 2318, - [2480] = 2391, - [2481] = 2481, - [2482] = 2333, - [2483] = 2483, - [2484] = 2320, - [2485] = 2415, - [2486] = 2319, - [2487] = 2379, - [2488] = 2488, - [2489] = 2378, - [2490] = 2317, - [2491] = 2378, - [2492] = 2379, - [2493] = 2423, - [2494] = 2418, - [2495] = 2434, - [2496] = 2324, - [2497] = 2497, - [2498] = 2435, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2445, - [2503] = 2370, - [2504] = 2378, - [2505] = 2379, - [2506] = 2458, - [2507] = 2417, - [2508] = 2378, - [2509] = 2379, - [2510] = 2468, - [2511] = 2378, - [2512] = 2379, - [2513] = 2471, - [2514] = 568, - [2515] = 2352, - [2516] = 2408, - [2517] = 2517, - [2518] = 2501, - [2519] = 2497, - [2520] = 2324, - [2521] = 2517, - [2522] = 2522, - [2523] = 2407, - [2524] = 2464, - [2525] = 2453, - [2526] = 2499, - [2527] = 2369, - [2528] = 2528, - [2529] = 2529, - [2530] = 2367, - [2531] = 2531, - [2532] = 2388, - [2533] = 2531, - [2534] = 2534, - [2535] = 2362, - [2536] = 2341, - [2537] = 2332, - [2538] = 2392, - [2539] = 2400, - [2540] = 2361, - [2541] = 2360, - [2542] = 2389, - [2543] = 2456, - [2544] = 2544, - [2545] = 2447, - [2546] = 2517, - [2547] = 2501, - [2548] = 2548, - [2549] = 2384, - [2550] = 2359, - [2551] = 2382, - [2552] = 2528, - [2553] = 2553, - [2554] = 2465, - [2555] = 2380, - [2556] = 2325, - [2557] = 2438, - [2558] = 2436, - [2559] = 2390, - [2560] = 2560, - [2561] = 2373, - [2562] = 2446, - [2563] = 2354, - [2564] = 2534, -}; - static inline bool sym_identifier_character_set_1(int32_t c) { return (c < 43514 ? (c < 4193 @@ -12597,814 +10078,824 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(59); - if (lookahead == '!') ADVANCE(91); - if (lookahead == '"') ADVANCE(150); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(73); - if (lookahead == '%') ADVANCE(127); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(113); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '@') ADVANCE(139); - if (lookahead == '[') ADVANCE(67); - if (lookahead == '\\') ADVANCE(36); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '^') ADVANCE(119); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(65); + if (eof) ADVANCE(62); + if (lookahead == '!') ADVANCE(95); + if (lookahead == '"') ADVANCE(154); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(77); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '+') ADVANCE(83); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '/') ADVANCE(130); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(110); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '@') ADVANCE(143); + if (lookahead == '[') ADVANCE(71); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '^') ADVANCE(123); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(68); + if (lookahead == '|') ADVANCE(122); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(168); + lookahead == ' ') SKIP(59) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(173); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(91); - if (lookahead == '"') ADVANCE(149); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '%') ADVANCE(127); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(99); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '^') ADVANCE(119); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '\n') SKIP(1) + if (lookahead == '/') ADVANCE(178); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + lookahead == ' ') ADVANCE(177); + if (lookahead != 0 && + lookahead != '{') ADVANCE(179); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(91); - if (lookahead == '%') ADVANCE(127); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '\'') ADVANCE(87); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(113); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(31); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(99); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '^') ADVANCE(119); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(95); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '+') ADVANCE(83); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(116); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '/') ADVANCE(130); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '^') ADVANCE(123); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(122); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(91); - if (lookahead == '%') ADVANCE(127); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(31); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '^') ADVANCE(119); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(95); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '\'') ADVANCE(91); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '+') ADVANCE(83); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '/') ADVANCE(130); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '^') ADVANCE(123); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(122); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(90); - if (lookahead == '"') ADVANCE(150); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '\'') ADVANCE(87); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '+') ADVANCE(78); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(100); - if (lookahead == '\\') ADVANCE(36); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(95); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '+') ADVANCE(83); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(116); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '/') ADVANCE(130); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(110); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '^') ADVANCE(123); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(122); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + lookahead == ' ') SKIP(4) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(90); - if (lookahead == '"') ADVANCE(149); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '&') ADVANCE(103); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(80); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(114); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(31); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '>') ADVANCE(100); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(94); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '&') ADVANCE(107); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(84); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(118); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(33); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(121); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(90); - if (lookahead == '"') ADVANCE(149); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '&') ADVANCE(103); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(80); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(111); - if (lookahead == '.') ADVANCE(22); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(31); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '[') ADVANCE(67); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'r') ADVANCE(157); + if (lookahead == '!') ADVANCE(94); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '&') ADVANCE(107); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(84); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(115); + if (lookahead == '.') ADVANCE(23); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(33); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '[') ADVANCE(71); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'r') ADVANCE(162); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(90); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '&') ADVANCE(103); - if (lookahead == '\'') ADVANCE(87); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(80); - if (lookahead == '+') ADVANCE(78); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(33); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(100); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(94); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '&') ADVANCE(107); + if (lookahead == '\'') ADVANCE(91); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(84); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(99); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(121); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(90); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '\'') ADVANCE(87); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '+') ADVANCE(78); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(100); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(94); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '\'') ADVANCE(91); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '/') ADVANCE(25); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(104); + if (lookahead == ']') ADVANCE(72); + if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '|') ADVANCE(121); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(90); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '+') ADVANCE(78); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(100); - if (lookahead == '@') ADVANCE(139); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(94); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '/') ADVANCE(25); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(110); + if (lookahead == '=') ADVANCE(99); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '@') ADVANCE(143); + if (lookahead == ']') ADVANCE(72); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(121); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(32); - if (lookahead == '%') ADVANCE(127); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(126); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(99); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '^') ADVANCE(119); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '!') ADVANCE(34); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '+') ADVANCE(83); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(116); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '/') ADVANCE(130); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(73); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '^') ADVANCE(123); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(122); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(149); - if (lookahead == '$') ADVANCE(73); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(71); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '_') ADVANCE(84); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '"') ADVANCE(154); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '{') ADVANCE(68); + if (lookahead == '}') ADVANCE(45); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('!' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); + lookahead == ' ') SKIP(26) END_STATE(); case 12: - if (lookahead == '"') ADVANCE(149); - if (lookahead == '$') ADVANCE(73); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '0') ADVANCE(144); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '_') ADVANCE(84); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '$') ADVANCE(77); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '/') ADVANCE(87); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(75); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '_') ADVANCE(88); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(89); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(173); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(149); - if (lookahead == '$') ADVANCE(72); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '/') ADVANCE(83); - if (lookahead == '0') ADVANCE(144); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '_') ADVANCE(84); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '$') ADVANCE(77); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '/') ADVANCE(87); + if (lookahead == '0') ADVANCE(148); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '_') ADVANCE(88); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); if (('!' <= lookahead && lookahead <= '@') || lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(85); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(168); + ('|' <= lookahead && lookahead <= '~')) ADVANCE(89); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(173); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(149); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(92); - if (lookahead == 'b') ADVANCE(156); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '$') ADVANCE(76); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '/') ADVANCE(87); + if (lookahead == '0') ADVANCE(148); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '_') ADVANCE(88); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (('!' <= lookahead && lookahead <= '@') || + lookahead == '^' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(89); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(173); END_STATE(); case 15: - if (lookahead == '#') ADVANCE(89); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(69); - if (lookahead == '<') ADVANCE(98); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '}') ADVANCE(65); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '/') ADVANCE(25); + if (lookahead == ':') ADVANCE(73); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(96); + if (lookahead == 'b') ADVANCE(161); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(15) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 16: - if (lookahead == '\'') ADVANCE(151); + if (lookahead == '#') ADVANCE(93); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(25); + if (lookahead == ':') ADVANCE(73); + if (lookahead == '<') ADVANCE(102); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '}') ADVANCE(69); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(16) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 17: - if (lookahead == '\'') ADVANCE(151); - if (lookahead == '\\') ADVANCE(37); - if (lookahead != 0) ADVANCE(16); + if (lookahead == '\'') ADVANCE(155); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(80); - if (lookahead == '+') ADVANCE(78); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(33); - if (lookahead == '.') ADVANCE(23); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(69); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(100); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(18) - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (lookahead == '\'') ADVANCE(155); + if (lookahead == '\\') ADVANCE(39); + if (lookahead != 0) ADVANCE(17); END_STATE(); case 19: - if (lookahead == '*') ADVANCE(80); - if (lookahead == '+') ADVANCE(78); - if (lookahead == '/') ADVANCE(76); - if (lookahead == '?') ADVANCE(82); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(84); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(35); + if (lookahead == '.') ADVANCE(24); + if (lookahead == '/') ADVANCE(25); + if (lookahead == ':') ADVANCE(73); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(110); + if (lookahead == '=') ADVANCE(99); + if (lookahead == '>') ADVANCE(104); + if (lookahead == ']') ADVANCE(72); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(121); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(75); - if (lookahead != 0) ADVANCE(77); + lookahead == ' ') SKIP(19) + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(105); - if (lookahead == '=') ADVANCE(110); + if (lookahead == '*') ADVANCE(84); + if (lookahead == '+') ADVANCE(82); + if (lookahead == '/') ADVANCE(80); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(79); + if (lookahead != 0) ADVANCE(81); END_STATE(); case 21: - if (lookahead == '.') ADVANCE(107); + if (lookahead == '.') ADVANCE(109); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 22: - if (lookahead == '.') ADVANCE(108); + if (lookahead == '.') ADVANCE(111); END_STATE(); case 23: - if (lookahead == '.') ADVANCE(20); + if (lookahead == '.') ADVANCE(112); END_STATE(); case 24: - if (lookahead == '/') ADVANCE(153); + if (lookahead == '.') ADVANCE(21); END_STATE(); case 25: - if (lookahead == '1') ADVANCE(27); - if (lookahead == '3') ADVANCE(26); - if (lookahead == '6') ADVANCE(29); - if (lookahead == '8') ADVANCE(140); - if (lookahead == 's') ADVANCE(35); + if (lookahead == '/') ADVANCE(158); END_STATE(); case 26: - if (lookahead == '2') ADVANCE(140); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '{') ADVANCE(68); + if (lookahead == '}') ADVANCE(45); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) END_STATE(); case 27: - if (lookahead == '2') ADVANCE(30); - if (lookahead == '6') ADVANCE(140); + if (lookahead == '1') ADVANCE(29); + if (lookahead == '3') ADVANCE(28); + if (lookahead == '6') ADVANCE(31); + if (lookahead == '8') ADVANCE(144); + if (lookahead == 's') ADVANCE(37); END_STATE(); case 28: - if (lookahead == '3') ADVANCE(26); - if (lookahead == '6') ADVANCE(29); + if (lookahead == '2') ADVANCE(144); END_STATE(); case 29: - if (lookahead == '4') ADVANCE(140); + if (lookahead == '2') ADVANCE(32); + if (lookahead == '6') ADVANCE(144); END_STATE(); case 30: - if (lookahead == '8') ADVANCE(140); + if (lookahead == '3') ADVANCE(28); + if (lookahead == '6') ADVANCE(31); END_STATE(); case 31: - if (lookahead == ':') ADVANCE(102); + if (lookahead == '4') ADVANCE(144); END_STATE(); case 32: - if (lookahead == '=') ADVANCE(121); + if (lookahead == '8') ADVANCE(144); END_STATE(); case 33: - if (lookahead == '>') ADVANCE(97); + if (lookahead == ':') ADVANCE(106); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(38); + if (lookahead == '>') ADVANCE(101); END_STATE(); case 36: - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(50); - if (lookahead != 0) ADVANCE(152); + if (lookahead == 'e') ADVANCE(144); END_STATE(); case 37: - if (lookahead == 'u') ADVANCE(40); - if (lookahead == 'x') ADVANCE(51); - if (lookahead != 0) ADVANCE(16); + if (lookahead == 'i') ADVANCE(40); END_STATE(); case 38: - if (lookahead == 'z') ADVANCE(34); + if (lookahead == 'u') ADVANCE(41); + if (lookahead == 'x') ADVANCE(53); + if (lookahead != 0) ADVANCE(156); END_STATE(); case 39: - if (lookahead == '{') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + if (lookahead == 'u') ADVANCE(42); + if (lookahead == 'x') ADVANCE(54); + if (lookahead != 0) ADVANCE(17); END_STATE(); case 40: - if (lookahead == '{') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(52); + if (lookahead == 'z') ADVANCE(36); END_STATE(); case 41: - if (lookahead == '}') ADVANCE(16); + if (lookahead == '{') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 42: - if (lookahead == '}') ADVANCE(152); + if (lookahead == '{') ADVANCE(52); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 43: - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(145); + if (lookahead == '}') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 44: - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(146); - END_STATE(); - case 45: + if (lookahead == '}') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(16); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + END_STATE(); + case 45: + if (lookahead == '}') ADVANCE(176); END_STATE(); case 46: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(149); END_STATE(); case 47: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(152); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(150); END_STATE(); case 48: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(17); END_STATE(); case 49: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); case 50: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(156); END_STATE(); case 51: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 52: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(51); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 53: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 54: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); END_STATE(); case 55: - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 56: - if (eof) ADVANCE(59); - if (lookahead == '!') ADVANCE(91); - if (lookahead == '"') ADVANCE(149); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(73); - if (lookahead == '%') ADVANCE(127); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '+') ADVANCE(79); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(113); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(70); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(106); - if (lookahead == '=') ADVANCE(94); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '@') ADVANCE(139); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == '^') ADVANCE(119); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(152); + END_STATE(); + case 57: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); + END_STATE(); + case 58: + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); + END_STATE(); + case 59: + if (eof) ADVANCE(62); + if (lookahead == '!') ADVANCE(95); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(77); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '+') ADVANCE(83); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '/') ADVANCE(130); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(74); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(110); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '@') ADVANCE(143); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == '^') ADVANCE(123); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(68); + if (lookahead == '|') ADVANCE(122); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(56) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + lookahead == ' ') SKIP(59) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); - case 57: - if (eof) ADVANCE(59); - if (lookahead == '!') ADVANCE(91); - if (lookahead == '"') ADVANCE(149); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '%') ADVANCE(127); - if (lookahead == '&') ADVANCE(104); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == '*') ADVANCE(81); - if (lookahead == '+') ADVANCE(79); - if (lookahead == '-') ADVANCE(112); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(31); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(99); - if (lookahead == '=') ADVANCE(93); - if (lookahead == '>') ADVANCE(101); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '[') ADVANCE(67); - if (lookahead == '^') ADVANCE(119); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(118); - if (lookahead == '}') ADVANCE(65); + case 60: + if (eof) ADVANCE(62); + if (lookahead == '!') ADVANCE(95); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '%') ADVANCE(131); + if (lookahead == '&') ADVANCE(108); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == '*') ADVANCE(85); + if (lookahead == '+') ADVANCE(83); + if (lookahead == '-') ADVANCE(116); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '/') ADVANCE(130); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(105); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '[') ADVANCE(71); + if (lookahead == '^') ADVANCE(123); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(122); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(57) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + lookahead == ' ') SKIP(60) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); - case 58: - if (eof) ADVANCE(59); - if (lookahead == '!') ADVANCE(90); - if (lookahead == '"') ADVANCE(149); - if (lookahead == '#') ADVANCE(89); - if (lookahead == '$') ADVANCE(54); - if (lookahead == '&') ADVANCE(103); - if (lookahead == '\'') ADVANCE(88); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(63); - if (lookahead == '*') ADVANCE(80); - if (lookahead == '+') ADVANCE(78); - if (lookahead == ',') ADVANCE(96); - if (lookahead == '-') ADVANCE(114); - if (lookahead == '.') ADVANCE(21); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(144); - if (lookahead == ':') ADVANCE(31); - if (lookahead == ';') ADVANCE(60); - if (lookahead == '<') ADVANCE(98); - if (lookahead == '=') ADVANCE(92); - if (lookahead == '>') ADVANCE(100); - if (lookahead == '?') ADVANCE(82); - if (lookahead == '[') ADVANCE(67); - if (lookahead == ']') ADVANCE(68); - if (lookahead == 'b') ADVANCE(155); - if (lookahead == 'm') ADVANCE(159); - if (lookahead == 'r') ADVANCE(157); - if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(117); - if (lookahead == '}') ADVANCE(65); + case 61: + if (eof) ADVANCE(62); + if (lookahead == '!') ADVANCE(94); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '&') ADVANCE(107); + if (lookahead == '\'') ADVANCE(92); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(66); + if (lookahead == '*') ADVANCE(84); + if (lookahead == '+') ADVANCE(82); + if (lookahead == ',') ADVANCE(100); + if (lookahead == '-') ADVANCE(118); + if (lookahead == '.') ADVANCE(22); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(148); + if (lookahead == ':') ADVANCE(33); + if (lookahead == ';') ADVANCE(63); + if (lookahead == '<') ADVANCE(102); + if (lookahead == '=') ADVANCE(96); + if (lookahead == '>') ADVANCE(104); + if (lookahead == '?') ADVANCE(86); + if (lookahead == '[') ADVANCE(71); + if (lookahead == ']') ADVANCE(72); + if (lookahead == 'b') ADVANCE(160); + if (lookahead == 'm') ADVANCE(164); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == '{') ADVANCE(67); + if (lookahead == '|') ADVANCE(121); + if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(58) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(168); + lookahead == ' ') SKIP(61) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(151); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(173); END_STATE(); - case 59: + case 62: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 60: + case 63: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 61: + case 64: ACCEPT_TOKEN(anon_sym_macro_rules_BANG); END_STATE(); - case 62: + case 65: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 63: + case 66: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 64: + case 67: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 65: + case 68: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '{') ADVANCE(175); + END_STATE(); + case 69: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 66: + case 70: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 67: + case 71: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 68: + case 72: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 69: + case 73: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 70: + case 74: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(102); + if (lookahead == ':') ADVANCE(106); END_STATE(); - case 71: + case 75: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '!' || lookahead == '#' || @@ -13415,72 +10906,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(85); + lookahead == '~') ADVANCE(89); END_STATE(); - case 72: + case 76: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 73: + case 77: ACCEPT_TOKEN(anon_sym_DOLLAR); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); END_STATE(); - case 74: + case 78: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '\n') ADVANCE(77); + if (lookahead == '\n') ADVANCE(81); if (lookahead == '*' || lookahead == '+' || - lookahead == '?') ADVANCE(153); - if (lookahead != 0) ADVANCE(74); + lookahead == '?') ADVANCE(158); + if (lookahead != 0) ADVANCE(78); END_STATE(); - case 75: + case 79: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(76); + if (lookahead == '/') ADVANCE(80); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(75); + lookahead == ' ') ADVANCE(79); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(77); + lookahead != '?') ADVANCE(81); END_STATE(); - case 76: + case 80: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); - if (lookahead == '/') ADVANCE(74); + if (lookahead == '/') ADVANCE(78); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(77); + lookahead != '?') ADVANCE(81); END_STATE(); - case 77: + case 81: ACCEPT_TOKEN(aux_sym_token_repetition_pattern_token1); if (lookahead != 0 && lookahead != '*' && lookahead != '+' && - lookahead != '?') ADVANCE(77); + lookahead != '?') ADVANCE(81); END_STATE(); - case 78: + case 82: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 79: + case 83: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(128); + if (lookahead == '=') ADVANCE(132); END_STATE(); - case 80: + case 84: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 81: + case 85: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(130); + if (lookahead == '=') ADVANCE(134); END_STATE(); - case 82: + case 86: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 83: + case 87: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '/') ADVANCE(86); + if (lookahead == '/') ADVANCE(90); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -13490,11 +10981,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(85); + lookahead == '~') ADVANCE(89); END_STATE(); - case 84: + case 88: ACCEPT_TOKEN(aux_sym__non_special_token_token1); - if (lookahead == '_') ADVANCE(84); + if (lookahead == '_') ADVANCE(88); if (lookahead == '!' || lookahead == '#' || lookahead == '%' || @@ -13503,10 +10994,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (':' <= lookahead && lookahead <= '@') || lookahead == '^' || lookahead == '|' || - lookahead == '~') ADVANCE(85); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(168); + lookahead == '~') ADVANCE(89); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(173); END_STATE(); - case 85: + case 89: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -13517,9 +11008,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(85); + lookahead == '~') ADVANCE(89); END_STATE(); - case 86: + case 90: ACCEPT_TOKEN(aux_sym__non_special_token_token1); if (lookahead == '!' || lookahead == '#' || @@ -13530,380 +11021,419 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '^' || lookahead == '_' || lookahead == '|' || - lookahead == '~') ADVANCE(86); + lookahead == '~') ADVANCE(90); if (lookahead != 0 && - lookahead != '\n') ADVANCE(153); + lookahead != '\n') ADVANCE(158); END_STATE(); - case 87: + case 91: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 88: + case 92: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(151); - if (lookahead == '\\') ADVANCE(37); - if (lookahead != 0) ADVANCE(16); + if (lookahead == '\'') ADVANCE(155); + if (lookahead == '\\') ADVANCE(39); + if (lookahead != 0) ADVANCE(17); END_STATE(); - case 89: + case 93: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 90: + case 94: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 91: + case 95: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(121); + if (lookahead == '=') ADVANCE(125); END_STATE(); - case 92: + case 96: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 93: + case 97: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(124); END_STATE(); - case 94: + case 98: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(120); - if (lookahead == '>') ADVANCE(66); + if (lookahead == '=') ADVANCE(124); + if (lookahead == '>') ADVANCE(70); END_STATE(); - case 95: + case 99: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(66); + if (lookahead == '>') ADVANCE(70); END_STATE(); - case 96: + case 100: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 97: + case 101: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 98: + case 102: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 99: + case 103: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(124); - if (lookahead == '=') ADVANCE(122); + if (lookahead == '<') ADVANCE(128); + if (lookahead == '=') ADVANCE(126); END_STATE(); - case 100: + case 104: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 101: + case 105: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(123); - if (lookahead == '>') ADVANCE(125); + if (lookahead == '=') ADVANCE(127); + if (lookahead == '>') ADVANCE(129); END_STATE(); - case 102: + case 106: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 103: + case 107: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 104: + case 108: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(115); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '&') ADVANCE(119); + if (lookahead == '=') ADVANCE(137); END_STATE(); - case 105: + case 109: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 106: + case 110: ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); - case 107: + case 111: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 108: + case 112: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(105); + if (lookahead == '.') ADVANCE(109); END_STATE(); - case 109: + case 113: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(105); - if (lookahead == '=') ADVANCE(110); + if (lookahead == '.') ADVANCE(109); + if (lookahead == '=') ADVANCE(114); END_STATE(); - case 110: + case 114: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); - case 111: + case 115: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 112: + case 116: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(129); + if (lookahead == '=') ADVANCE(133); END_STATE(); - case 113: + case 117: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(129); - if (lookahead == '>') ADVANCE(97); + if (lookahead == '=') ADVANCE(133); + if (lookahead == '>') ADVANCE(101); END_STATE(); - case 114: + case 118: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(97); + if (lookahead == '>') ADVANCE(101); END_STATE(); - case 115: + case 119: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 116: + case 120: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 117: + case 121: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 118: + case 122: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '|') ADVANCE(116); + if (lookahead == '=') ADVANCE(138); + if (lookahead == '|') ADVANCE(120); END_STATE(); - case 119: + case 123: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(135); + if (lookahead == '=') ADVANCE(139); END_STATE(); - case 120: + case 124: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 121: + case 125: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 122: + case 126: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 123: + case 127: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 124: + case 128: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(136); + if (lookahead == '=') ADVANCE(140); END_STATE(); - case 125: + case 129: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(137); + if (lookahead == '=') ADVANCE(141); END_STATE(); - case 126: + case 130: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(153); - if (lookahead == '=') ADVANCE(131); + if (lookahead == '/') ADVANCE(158); + if (lookahead == '=') ADVANCE(135); END_STATE(); - case 127: + case 131: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(132); + if (lookahead == '=') ADVANCE(136); END_STATE(); - case 128: + case 132: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 129: + case 133: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 130: + case 134: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 131: + case 135: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 132: + case 136: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 133: + case 137: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 134: + case 138: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 135: + case 139: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 136: + case 140: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 137: + case 141: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 138: + case 142: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(109); + if (lookahead == '.') ADVANCE(113); END_STATE(); - case 139: + case 143: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 140: + case 144: ACCEPT_TOKEN(sym_integer_literal); END_STATE(); - case 141: + case 145: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '2') ADVANCE(148); - if (lookahead == 'f') ADVANCE(142); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == '2') ADVANCE(152); + if (lookahead == 'f') ADVANCE(146); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(152); END_STATE(); - case 142: + case 146: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '3') ADVANCE(141); - if (lookahead == '6') ADVANCE(143); - if (lookahead == 'f') ADVANCE(142); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == '3') ADVANCE(145); + if (lookahead == '6') ADVANCE(147); + if (lookahead == 'f') ADVANCE(146); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(152); END_STATE(); - case 143: + case 147: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '4') ADVANCE(148); - if (lookahead == 'f') ADVANCE(142); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == '4') ADVANCE(152); + if (lookahead == 'f') ADVANCE(146); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(152); END_STATE(); - case 144: + case 148: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'b') ADVANCE(43); - if (lookahead == 'f') ADVANCE(28); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'o') ADVANCE(44); - if (lookahead == 'u') ADVANCE(25); - if (lookahead == 'x') ADVANCE(53); + if (lookahead == 'b') ADVANCE(46); + if (lookahead == 'f') ADVANCE(30); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'o') ADVANCE(47); + if (lookahead == 'u') ADVANCE(27); + if (lookahead == 'x') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(147); + lookahead == '_') ADVANCE(151); END_STATE(); - case 145: + case 149: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(28); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'f') ADVANCE(30); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(145); + lookahead == '_') ADVANCE(149); END_STATE(); - case 146: + case 150: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(28); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'f') ADVANCE(30); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(146); + lookahead == '_') ADVANCE(150); END_STATE(); - case 147: + case 151: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(28); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'f') ADVANCE(30); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(147); + lookahead == '_') ADVANCE(151); END_STATE(); - case 148: + case 152: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'f') ADVANCE(142); - if (lookahead == 'i') ADVANCE(25); - if (lookahead == 'u') ADVANCE(25); + if (lookahead == 'f') ADVANCE(146); + if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(27); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(152); END_STATE(); - case 149: + case 153: ACCEPT_TOKEN(aux_sym_string_literal_token1); END_STATE(); - case 150: + case 154: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 151: + case 155: ACCEPT_TOKEN(sym_char_literal); END_STATE(); - case 152: + case 156: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 153: + case 157: ACCEPT_TOKEN(sym_line_comment); + if (lookahead == '{' || + lookahead == '}') ADVANCE(158); if (lookahead != 0 && - lookahead != '\n') ADVANCE(153); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(61); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(149); - if (lookahead == '\'') ADVANCE(17); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(149); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '#') ADVANCE(55); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + lookahead != '\n') ADVANCE(157); END_STATE(); case 158: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(165); - if (sym_identifier_character_set_6(lookahead)) ADVANCE(168); + ACCEPT_TOKEN(sym_line_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(158); END_STATE(); case 159: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(160); - if (sym_identifier_character_set_7(lookahead)) ADVANCE(168); + if (lookahead == '!') ADVANCE(64); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 160: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(164); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '\'') ADVANCE(18); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 161: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(166); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == '"') ADVANCE(153); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 162: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(161); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == '#') ADVANCE(58); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 163: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(158); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == '_') ADVANCE(170); + if (sym_identifier_character_set_6(lookahead)) ADVANCE(173); END_STATE(); case 164: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(163); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == 'a') ADVANCE(165); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(173); END_STATE(); case 165: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(167); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == 'c') ADVANCE(169); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 166: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(154); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == 'e') ADVANCE(171); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 167: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(162); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == 'l') ADVANCE(166); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 168: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(168); + if (lookahead == 'o') ADVANCE(163); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); END_STATE(); case 169: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(168); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); + END_STATE(); + case 170: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(172); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); + END_STATE(); + case 171: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(159); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); + END_STATE(); + case 172: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(167); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); + END_STATE(); + case 173: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(173); + END_STATE(); + case 174: ACCEPT_TOKEN(sym_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(174); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); + END_STATE(); + case 177: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == '/') ADVANCE(178); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(177); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(179); + END_STATE(); + case 178: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == '/') ADVANCE(157); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(179); + END_STATE(); + case 179: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(179); END_STATE(); default: return false; @@ -14640,43 +12170,43 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 58, .external_lex_state = 2}, - [2] = {.lex_state = 58, .external_lex_state = 2}, - [3] = {.lex_state = 58, .external_lex_state = 2}, - [4] = {.lex_state = 58, .external_lex_state = 2}, - [5] = {.lex_state = 58, .external_lex_state = 2}, - [6] = {.lex_state = 58, .external_lex_state = 2}, - [7] = {.lex_state = 58, .external_lex_state = 2}, - [8] = {.lex_state = 58, .external_lex_state = 2}, - [9] = {.lex_state = 58, .external_lex_state = 2}, - [10] = {.lex_state = 58, .external_lex_state = 2}, - [11] = {.lex_state = 58, .external_lex_state = 2}, - [12] = {.lex_state = 58, .external_lex_state = 2}, - [13] = {.lex_state = 58, .external_lex_state = 2}, - [14] = {.lex_state = 58, .external_lex_state = 2}, - [15] = {.lex_state = 58, .external_lex_state = 2}, - [16] = {.lex_state = 58, .external_lex_state = 2}, - [17] = {.lex_state = 1, .external_lex_state = 2}, - [18] = {.lex_state = 1, .external_lex_state = 2}, - [19] = {.lex_state = 1, .external_lex_state = 2}, - [20] = {.lex_state = 1, .external_lex_state = 2}, - [21] = {.lex_state = 1, .external_lex_state = 2}, - [22] = {.lex_state = 1, .external_lex_state = 2}, - [23] = {.lex_state = 1, .external_lex_state = 2}, - [24] = {.lex_state = 1, .external_lex_state = 2}, - [25] = {.lex_state = 1, .external_lex_state = 2}, - [26] = {.lex_state = 1, .external_lex_state = 2}, - [27] = {.lex_state = 1, .external_lex_state = 2}, - [28] = {.lex_state = 1, .external_lex_state = 2}, - [29] = {.lex_state = 1, .external_lex_state = 2}, - [30] = {.lex_state = 1, .external_lex_state = 2}, - [31] = {.lex_state = 1, .external_lex_state = 2}, - [32] = {.lex_state = 1, .external_lex_state = 2}, + [1] = {.lex_state = 61, .external_lex_state = 2}, + [2] = {.lex_state = 61, .external_lex_state = 2}, + [3] = {.lex_state = 61, .external_lex_state = 2}, + [4] = {.lex_state = 61, .external_lex_state = 2}, + [5] = {.lex_state = 61, .external_lex_state = 2}, + [6] = {.lex_state = 61, .external_lex_state = 2}, + [7] = {.lex_state = 61, .external_lex_state = 2}, + [8] = {.lex_state = 61, .external_lex_state = 2}, + [9] = {.lex_state = 61, .external_lex_state = 2}, + [10] = {.lex_state = 61, .external_lex_state = 2}, + [11] = {.lex_state = 61, .external_lex_state = 2}, + [12] = {.lex_state = 61, .external_lex_state = 2}, + [13] = {.lex_state = 61, .external_lex_state = 2}, + [14] = {.lex_state = 61, .external_lex_state = 2}, + [15] = {.lex_state = 61, .external_lex_state = 2}, + [16] = {.lex_state = 61, .external_lex_state = 2}, + [17] = {.lex_state = 2, .external_lex_state = 2}, + [18] = {.lex_state = 2, .external_lex_state = 2}, + [19] = {.lex_state = 2, .external_lex_state = 2}, + [20] = {.lex_state = 2, .external_lex_state = 2}, + [21] = {.lex_state = 2, .external_lex_state = 2}, + [22] = {.lex_state = 2, .external_lex_state = 2}, + [23] = {.lex_state = 2, .external_lex_state = 2}, + [24] = {.lex_state = 2, .external_lex_state = 2}, + [25] = {.lex_state = 2, .external_lex_state = 2}, + [26] = {.lex_state = 2, .external_lex_state = 2}, + [27] = {.lex_state = 2, .external_lex_state = 2}, + [28] = {.lex_state = 2, .external_lex_state = 2}, + [29] = {.lex_state = 2, .external_lex_state = 2}, + [30] = {.lex_state = 2, .external_lex_state = 2}, + [31] = {.lex_state = 2, .external_lex_state = 2}, + [32] = {.lex_state = 2, .external_lex_state = 2}, [33] = {.lex_state = 5, .external_lex_state = 2}, [34] = {.lex_state = 5, .external_lex_state = 2}, [35] = {.lex_state = 5, .external_lex_state = 2}, [36] = {.lex_state = 5, .external_lex_state = 2}, - [37] = {.lex_state = 5, .external_lex_state = 2}, + [37] = {.lex_state = 60, .external_lex_state = 2}, [38] = {.lex_state = 5, .external_lex_state = 2}, [39] = {.lex_state = 5, .external_lex_state = 2}, [40] = {.lex_state = 5, .external_lex_state = 2}, @@ -14687,55 +12217,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 57, .external_lex_state = 2}, + [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, - [51] = {.lex_state = 5, .external_lex_state = 2}, + [51] = {.lex_state = 60, .external_lex_state = 2}, [52] = {.lex_state = 5, .external_lex_state = 2}, - [53] = {.lex_state = 57, .external_lex_state = 2}, - [54] = {.lex_state = 57, .external_lex_state = 2}, + [53] = {.lex_state = 60, .external_lex_state = 2}, + [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, - [56] = {.lex_state = 57, .external_lex_state = 2}, + [56] = {.lex_state = 60, .external_lex_state = 2}, [57] = {.lex_state = 5, .external_lex_state = 2}, [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 57, .external_lex_state = 2}, - [61] = {.lex_state = 57, .external_lex_state = 2}, - [62] = {.lex_state = 57, .external_lex_state = 2}, - [63] = {.lex_state = 57, .external_lex_state = 2}, - [64] = {.lex_state = 57, .external_lex_state = 2}, - [65] = {.lex_state = 57, .external_lex_state = 2}, - [66] = {.lex_state = 57, .external_lex_state = 2}, - [67] = {.lex_state = 57, .external_lex_state = 2}, - [68] = {.lex_state = 57, .external_lex_state = 2}, - [69] = {.lex_state = 57, .external_lex_state = 2}, - [70] = {.lex_state = 57, .external_lex_state = 2}, - [71] = {.lex_state = 5, .external_lex_state = 2}, - [72] = {.lex_state = 57, .external_lex_state = 2}, - [73] = {.lex_state = 57, .external_lex_state = 2}, - [74] = {.lex_state = 57, .external_lex_state = 2}, - [75] = {.lex_state = 57, .external_lex_state = 2}, - [76] = {.lex_state = 57, .external_lex_state = 2}, - [77] = {.lex_state = 57, .external_lex_state = 2}, - [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 57, .external_lex_state = 2}, + [59] = {.lex_state = 60, .external_lex_state = 2}, + [60] = {.lex_state = 60, .external_lex_state = 2}, + [61] = {.lex_state = 60, .external_lex_state = 2}, + [62] = {.lex_state = 5, .external_lex_state = 2}, + [63] = {.lex_state = 60, .external_lex_state = 2}, + [64] = {.lex_state = 60, .external_lex_state = 2}, + [65] = {.lex_state = 60, .external_lex_state = 2}, + [66] = {.lex_state = 5, .external_lex_state = 2}, + [67] = {.lex_state = 5, .external_lex_state = 2}, + [68] = {.lex_state = 60, .external_lex_state = 2}, + [69] = {.lex_state = 60, .external_lex_state = 2}, + [70] = {.lex_state = 60, .external_lex_state = 2}, + [71] = {.lex_state = 60, .external_lex_state = 2}, + [72] = {.lex_state = 60, .external_lex_state = 2}, + [73] = {.lex_state = 60, .external_lex_state = 2}, + [74] = {.lex_state = 60, .external_lex_state = 2}, + [75] = {.lex_state = 60, .external_lex_state = 2}, + [76] = {.lex_state = 5, .external_lex_state = 2}, + [77] = {.lex_state = 60, .external_lex_state = 2}, + [78] = {.lex_state = 60, .external_lex_state = 2}, + [79] = {.lex_state = 60, .external_lex_state = 2}, + [80] = {.lex_state = 60, .external_lex_state = 2}, + [81] = {.lex_state = 60, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 57, .external_lex_state = 2}, - [84] = {.lex_state = 57, .external_lex_state = 2}, - [85] = {.lex_state = 57, .external_lex_state = 2}, + [83] = {.lex_state = 5, .external_lex_state = 2}, + [84] = {.lex_state = 5, .external_lex_state = 2}, + [85] = {.lex_state = 60, .external_lex_state = 2}, [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 5, .external_lex_state = 2}, - [88] = {.lex_state = 57, .external_lex_state = 2}, + [87] = {.lex_state = 60, .external_lex_state = 2}, + [88] = {.lex_state = 60, .external_lex_state = 2}, [89] = {.lex_state = 5, .external_lex_state = 2}, [90] = {.lex_state = 5, .external_lex_state = 2}, [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, + [92] = {.lex_state = 60, .external_lex_state = 2}, [93] = {.lex_state = 5, .external_lex_state = 2}, [94] = {.lex_state = 5, .external_lex_state = 2}, [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 57, .external_lex_state = 2}, + [96] = {.lex_state = 5, .external_lex_state = 2}, [97] = {.lex_state = 5, .external_lex_state = 2}, [98] = {.lex_state = 5, .external_lex_state = 2}, [99] = {.lex_state = 5, .external_lex_state = 2}, @@ -14837,7 +12367,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 5, .external_lex_state = 2}, [196] = {.lex_state = 5, .external_lex_state = 2}, [197] = {.lex_state = 5, .external_lex_state = 2}, - [198] = {.lex_state = 1, .external_lex_state = 2}, + [198] = {.lex_state = 2, .external_lex_state = 2}, [199] = {.lex_state = 5, .external_lex_state = 2}, [200] = {.lex_state = 5, .external_lex_state = 2}, [201] = {.lex_state = 5, .external_lex_state = 2}, @@ -14849,343 +12379,343 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [207] = {.lex_state = 5, .external_lex_state = 2}, [208] = {.lex_state = 5, .external_lex_state = 2}, [209] = {.lex_state = 5, .external_lex_state = 2}, - [210] = {.lex_state = 1, .external_lex_state = 2}, - [211] = {.lex_state = 1, .external_lex_state = 2}, - [212] = {.lex_state = 1, .external_lex_state = 2}, - [213] = {.lex_state = 1, .external_lex_state = 2}, - [214] = {.lex_state = 1, .external_lex_state = 2}, - [215] = {.lex_state = 1, .external_lex_state = 2}, - [216] = {.lex_state = 1, .external_lex_state = 2}, - [217] = {.lex_state = 1, .external_lex_state = 2}, - [218] = {.lex_state = 1, .external_lex_state = 2}, - [219] = {.lex_state = 1, .external_lex_state = 2}, - [220] = {.lex_state = 1, .external_lex_state = 2}, - [221] = {.lex_state = 1, .external_lex_state = 2}, - [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 1, .external_lex_state = 2}, - [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 1, .external_lex_state = 2}, - [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 1, .external_lex_state = 2}, - [228] = {.lex_state = 1, .external_lex_state = 2}, - [229] = {.lex_state = 1, .external_lex_state = 2}, - [230] = {.lex_state = 5, .external_lex_state = 2}, + [210] = {.lex_state = 2, .external_lex_state = 2}, + [211] = {.lex_state = 2, .external_lex_state = 2}, + [212] = {.lex_state = 2, .external_lex_state = 2}, + [213] = {.lex_state = 2, .external_lex_state = 2}, + [214] = {.lex_state = 5, .external_lex_state = 2}, + [215] = {.lex_state = 2, .external_lex_state = 2}, + [216] = {.lex_state = 2, .external_lex_state = 2}, + [217] = {.lex_state = 2, .external_lex_state = 2}, + [218] = {.lex_state = 2, .external_lex_state = 2}, + [219] = {.lex_state = 2, .external_lex_state = 2}, + [220] = {.lex_state = 5, .external_lex_state = 2}, + [221] = {.lex_state = 2, .external_lex_state = 2}, + [222] = {.lex_state = 2, .external_lex_state = 2}, + [223] = {.lex_state = 2, .external_lex_state = 2}, + [224] = {.lex_state = 2, .external_lex_state = 2}, + [225] = {.lex_state = 2, .external_lex_state = 2}, + [226] = {.lex_state = 2, .external_lex_state = 2}, + [227] = {.lex_state = 2, .external_lex_state = 2}, + [228] = {.lex_state = 2, .external_lex_state = 2}, + [229] = {.lex_state = 5, .external_lex_state = 2}, + [230] = {.lex_state = 2, .external_lex_state = 2}, [231] = {.lex_state = 5, .external_lex_state = 2}, - [232] = {.lex_state = 5, .external_lex_state = 2}, - [233] = {.lex_state = 1, .external_lex_state = 2}, - [234] = {.lex_state = 1, .external_lex_state = 2}, - [235] = {.lex_state = 5, .external_lex_state = 2}, + [232] = {.lex_state = 2, .external_lex_state = 2}, + [233] = {.lex_state = 2, .external_lex_state = 2}, + [234] = {.lex_state = 2, .external_lex_state = 2}, + [235] = {.lex_state = 2, .external_lex_state = 2}, [236] = {.lex_state = 5, .external_lex_state = 2}, [237] = {.lex_state = 5, .external_lex_state = 2}, [238] = {.lex_state = 5, .external_lex_state = 2}, - [239] = {.lex_state = 12, .external_lex_state = 2}, - [240] = {.lex_state = 4, .external_lex_state = 3}, - [241] = {.lex_state = 4, .external_lex_state = 3}, - [242] = {.lex_state = 4, .external_lex_state = 3}, - [243] = {.lex_state = 4, .external_lex_state = 3}, - [244] = {.lex_state = 4, .external_lex_state = 3}, - [245] = {.lex_state = 58, .external_lex_state = 2}, - [246] = {.lex_state = 58, .external_lex_state = 2}, - [247] = {.lex_state = 58, .external_lex_state = 2}, - [248] = {.lex_state = 58, .external_lex_state = 2}, - [249] = {.lex_state = 58, .external_lex_state = 2}, - [250] = {.lex_state = 58, .external_lex_state = 2}, - [251] = {.lex_state = 58, .external_lex_state = 2}, - [252] = {.lex_state = 58, .external_lex_state = 2}, - [253] = {.lex_state = 58, .external_lex_state = 2}, - [254] = {.lex_state = 58, .external_lex_state = 2}, - [255] = {.lex_state = 58, .external_lex_state = 2}, - [256] = {.lex_state = 58, .external_lex_state = 2}, - [257] = {.lex_state = 58, .external_lex_state = 2}, - [258] = {.lex_state = 58, .external_lex_state = 2}, - [259] = {.lex_state = 58, .external_lex_state = 2}, - [260] = {.lex_state = 58, .external_lex_state = 2}, - [261] = {.lex_state = 58, .external_lex_state = 2}, - [262] = {.lex_state = 58, .external_lex_state = 2}, - [263] = {.lex_state = 58, .external_lex_state = 2}, - [264] = {.lex_state = 58, .external_lex_state = 2}, - [265] = {.lex_state = 58, .external_lex_state = 2}, - [266] = {.lex_state = 58, .external_lex_state = 2}, - [267] = {.lex_state = 58, .external_lex_state = 2}, - [268] = {.lex_state = 58, .external_lex_state = 2}, - [269] = {.lex_state = 58, .external_lex_state = 2}, - [270] = {.lex_state = 58, .external_lex_state = 2}, - [271] = {.lex_state = 58, .external_lex_state = 2}, - [272] = {.lex_state = 58, .external_lex_state = 2}, - [273] = {.lex_state = 58, .external_lex_state = 2}, - [274] = {.lex_state = 58, .external_lex_state = 2}, - [275] = {.lex_state = 58, .external_lex_state = 2}, - [276] = {.lex_state = 58, .external_lex_state = 2}, - [277] = {.lex_state = 58, .external_lex_state = 2}, - [278] = {.lex_state = 58, .external_lex_state = 2}, - [279] = {.lex_state = 58, .external_lex_state = 2}, - [280] = {.lex_state = 58, .external_lex_state = 2}, - [281] = {.lex_state = 58, .external_lex_state = 2}, - [282] = {.lex_state = 58, .external_lex_state = 2}, - [283] = {.lex_state = 58, .external_lex_state = 2}, - [284] = {.lex_state = 58, .external_lex_state = 2}, - [285] = {.lex_state = 58, .external_lex_state = 2}, - [286] = {.lex_state = 58, .external_lex_state = 2}, - [287] = {.lex_state = 58, .external_lex_state = 2}, - [288] = {.lex_state = 58, .external_lex_state = 2}, - [289] = {.lex_state = 58, .external_lex_state = 2}, - [290] = {.lex_state = 58, .external_lex_state = 2}, - [291] = {.lex_state = 58, .external_lex_state = 2}, - [292] = {.lex_state = 58, .external_lex_state = 2}, - [293] = {.lex_state = 58, .external_lex_state = 2}, - [294] = {.lex_state = 58, .external_lex_state = 2}, - [295] = {.lex_state = 58, .external_lex_state = 2}, - [296] = {.lex_state = 58, .external_lex_state = 2}, - [297] = {.lex_state = 58, .external_lex_state = 2}, - [298] = {.lex_state = 58, .external_lex_state = 2}, - [299] = {.lex_state = 58, .external_lex_state = 2}, - [300] = {.lex_state = 58, .external_lex_state = 2}, - [301] = {.lex_state = 58, .external_lex_state = 2}, - [302] = {.lex_state = 58, .external_lex_state = 2}, - [303] = {.lex_state = 58, .external_lex_state = 2}, - [304] = {.lex_state = 58, .external_lex_state = 2}, - [305] = {.lex_state = 58, .external_lex_state = 2}, - [306] = {.lex_state = 58, .external_lex_state = 2}, - [307] = {.lex_state = 58, .external_lex_state = 2}, - [308] = {.lex_state = 58, .external_lex_state = 2}, - [309] = {.lex_state = 58, .external_lex_state = 2}, - [310] = {.lex_state = 58, .external_lex_state = 2}, - [311] = {.lex_state = 58, .external_lex_state = 2}, - [312] = {.lex_state = 58, .external_lex_state = 2}, - [313] = {.lex_state = 58, .external_lex_state = 2}, - [314] = {.lex_state = 58, .external_lex_state = 2}, - [315] = {.lex_state = 58, .external_lex_state = 2}, - [316] = {.lex_state = 58, .external_lex_state = 2}, - [317] = {.lex_state = 58, .external_lex_state = 2}, - [318] = {.lex_state = 58, .external_lex_state = 2}, - [319] = {.lex_state = 58, .external_lex_state = 2}, - [320] = {.lex_state = 58, .external_lex_state = 2}, - [321] = {.lex_state = 58, .external_lex_state = 2}, - [322] = {.lex_state = 58, .external_lex_state = 2}, - [323] = {.lex_state = 58, .external_lex_state = 2}, - [324] = {.lex_state = 58, .external_lex_state = 2}, - [325] = {.lex_state = 58, .external_lex_state = 2}, - [326] = {.lex_state = 58, .external_lex_state = 2}, - [327] = {.lex_state = 58, .external_lex_state = 2}, - [328] = {.lex_state = 58, .external_lex_state = 2}, - [329] = {.lex_state = 58, .external_lex_state = 2}, - [330] = {.lex_state = 58, .external_lex_state = 2}, - [331] = {.lex_state = 58, .external_lex_state = 2}, - [332] = {.lex_state = 58, .external_lex_state = 2}, - [333] = {.lex_state = 58, .external_lex_state = 2}, - [334] = {.lex_state = 58, .external_lex_state = 2}, - [335] = {.lex_state = 58, .external_lex_state = 2}, - [336] = {.lex_state = 58, .external_lex_state = 2}, - [337] = {.lex_state = 58, .external_lex_state = 2}, - [338] = {.lex_state = 58, .external_lex_state = 2}, - [339] = {.lex_state = 58, .external_lex_state = 2}, - [340] = {.lex_state = 58, .external_lex_state = 2}, - [341] = {.lex_state = 58, .external_lex_state = 2}, - [342] = {.lex_state = 58, .external_lex_state = 2}, - [343] = {.lex_state = 58, .external_lex_state = 2}, - [344] = {.lex_state = 58, .external_lex_state = 2}, - [345] = {.lex_state = 58, .external_lex_state = 2}, - [346] = {.lex_state = 58, .external_lex_state = 2}, - [347] = {.lex_state = 58, .external_lex_state = 2}, - [348] = {.lex_state = 58, .external_lex_state = 2}, - [349] = {.lex_state = 58, .external_lex_state = 2}, - [350] = {.lex_state = 58, .external_lex_state = 2}, - [351] = {.lex_state = 58, .external_lex_state = 2}, - [352] = {.lex_state = 58, .external_lex_state = 2}, - [353] = {.lex_state = 58, .external_lex_state = 2}, - [354] = {.lex_state = 58, .external_lex_state = 2}, - [355] = {.lex_state = 58, .external_lex_state = 2}, - [356] = {.lex_state = 58, .external_lex_state = 2}, - [357] = {.lex_state = 58, .external_lex_state = 2}, - [358] = {.lex_state = 58, .external_lex_state = 2}, - [359] = {.lex_state = 58, .external_lex_state = 2}, - [360] = {.lex_state = 58, .external_lex_state = 2}, - [361] = {.lex_state = 58, .external_lex_state = 2}, - [362] = {.lex_state = 58, .external_lex_state = 2}, - [363] = {.lex_state = 58, .external_lex_state = 2}, - [364] = {.lex_state = 58, .external_lex_state = 2}, - [365] = {.lex_state = 5, .external_lex_state = 2}, - [366] = {.lex_state = 58, .external_lex_state = 2}, - [367] = {.lex_state = 58, .external_lex_state = 2}, - [368] = {.lex_state = 58, .external_lex_state = 2}, - [369] = {.lex_state = 58, .external_lex_state = 2}, - [370] = {.lex_state = 58, .external_lex_state = 2}, - [371] = {.lex_state = 58, .external_lex_state = 2}, - [372] = {.lex_state = 58, .external_lex_state = 2}, - [373] = {.lex_state = 58, .external_lex_state = 2}, - [374] = {.lex_state = 58, .external_lex_state = 2}, - [375] = {.lex_state = 58, .external_lex_state = 2}, - [376] = {.lex_state = 58, .external_lex_state = 2}, - [377] = {.lex_state = 58, .external_lex_state = 2}, - [378] = {.lex_state = 58, .external_lex_state = 2}, - [379] = {.lex_state = 58, .external_lex_state = 2}, - [380] = {.lex_state = 58, .external_lex_state = 2}, - [381] = {.lex_state = 58, .external_lex_state = 2}, - [382] = {.lex_state = 58, .external_lex_state = 2}, - [383] = {.lex_state = 58, .external_lex_state = 2}, - [384] = {.lex_state = 58, .external_lex_state = 2}, - [385] = {.lex_state = 58, .external_lex_state = 2}, - [386] = {.lex_state = 58, .external_lex_state = 2}, - [387] = {.lex_state = 58, .external_lex_state = 2}, - [388] = {.lex_state = 58, .external_lex_state = 2}, - [389] = {.lex_state = 58, .external_lex_state = 2}, - [390] = {.lex_state = 58, .external_lex_state = 2}, - [391] = {.lex_state = 5, .external_lex_state = 2}, - [392] = {.lex_state = 58, .external_lex_state = 2}, - [393] = {.lex_state = 58, .external_lex_state = 2}, - [394] = {.lex_state = 58, .external_lex_state = 2}, - [395] = {.lex_state = 58, .external_lex_state = 2}, - [396] = {.lex_state = 58, .external_lex_state = 2}, - [397] = {.lex_state = 58, .external_lex_state = 2}, - [398] = {.lex_state = 58, .external_lex_state = 2}, - [399] = {.lex_state = 58, .external_lex_state = 2}, - [400] = {.lex_state = 58, .external_lex_state = 2}, - [401] = {.lex_state = 58, .external_lex_state = 2}, - [402] = {.lex_state = 58, .external_lex_state = 2}, - [403] = {.lex_state = 58, .external_lex_state = 2}, - [404] = {.lex_state = 58, .external_lex_state = 2}, - [405] = {.lex_state = 58, .external_lex_state = 2}, - [406] = {.lex_state = 58, .external_lex_state = 2}, - [407] = {.lex_state = 58, .external_lex_state = 2}, - [408] = {.lex_state = 58, .external_lex_state = 2}, - [409] = {.lex_state = 58, .external_lex_state = 2}, - [410] = {.lex_state = 58, .external_lex_state = 2}, - [411] = {.lex_state = 58, .external_lex_state = 2}, - [412] = {.lex_state = 58, .external_lex_state = 2}, - [413] = {.lex_state = 58, .external_lex_state = 2}, - [414] = {.lex_state = 58, .external_lex_state = 2}, - [415] = {.lex_state = 58, .external_lex_state = 2}, - [416] = {.lex_state = 58, .external_lex_state = 2}, - [417] = {.lex_state = 58, .external_lex_state = 2}, - [418] = {.lex_state = 58, .external_lex_state = 2}, - [419] = {.lex_state = 58, .external_lex_state = 2}, - [420] = {.lex_state = 58, .external_lex_state = 2}, - [421] = {.lex_state = 58, .external_lex_state = 2}, - [422] = {.lex_state = 58, .external_lex_state = 2}, - [423] = {.lex_state = 58, .external_lex_state = 2}, - [424] = {.lex_state = 58, .external_lex_state = 2}, - [425] = {.lex_state = 58, .external_lex_state = 2}, - [426] = {.lex_state = 58, .external_lex_state = 2}, - [427] = {.lex_state = 58, .external_lex_state = 2}, - [428] = {.lex_state = 58, .external_lex_state = 2}, - [429] = {.lex_state = 58, .external_lex_state = 2}, - [430] = {.lex_state = 58, .external_lex_state = 2}, - [431] = {.lex_state = 58, .external_lex_state = 2}, - [432] = {.lex_state = 58, .external_lex_state = 2}, - [433] = {.lex_state = 58, .external_lex_state = 2}, - [434] = {.lex_state = 58, .external_lex_state = 2}, - [435] = {.lex_state = 58, .external_lex_state = 2}, - [436] = {.lex_state = 58, .external_lex_state = 2}, - [437] = {.lex_state = 58, .external_lex_state = 2}, - [438] = {.lex_state = 58, .external_lex_state = 2}, - [439] = {.lex_state = 58, .external_lex_state = 2}, - [440] = {.lex_state = 58, .external_lex_state = 2}, - [441] = {.lex_state = 58, .external_lex_state = 2}, - [442] = {.lex_state = 58, .external_lex_state = 2}, - [443] = {.lex_state = 58, .external_lex_state = 2}, - [444] = {.lex_state = 58, .external_lex_state = 2}, - [445] = {.lex_state = 58, .external_lex_state = 2}, - [446] = {.lex_state = 58, .external_lex_state = 2}, - [447] = {.lex_state = 58, .external_lex_state = 2}, - [448] = {.lex_state = 58, .external_lex_state = 2}, - [449] = {.lex_state = 58, .external_lex_state = 2}, - [450] = {.lex_state = 58, .external_lex_state = 2}, - [451] = {.lex_state = 58, .external_lex_state = 2}, - [452] = {.lex_state = 58, .external_lex_state = 2}, - [453] = {.lex_state = 58, .external_lex_state = 2}, - [454] = {.lex_state = 58, .external_lex_state = 2}, - [455] = {.lex_state = 58, .external_lex_state = 2}, - [456] = {.lex_state = 58, .external_lex_state = 2}, - [457] = {.lex_state = 58, .external_lex_state = 2}, - [458] = {.lex_state = 58, .external_lex_state = 2}, - [459] = {.lex_state = 58, .external_lex_state = 2}, - [460] = {.lex_state = 58, .external_lex_state = 2}, - [461] = {.lex_state = 58, .external_lex_state = 2}, - [462] = {.lex_state = 58, .external_lex_state = 2}, - [463] = {.lex_state = 58, .external_lex_state = 2}, - [464] = {.lex_state = 58, .external_lex_state = 2}, - [465] = {.lex_state = 58, .external_lex_state = 2}, - [466] = {.lex_state = 58, .external_lex_state = 2}, - [467] = {.lex_state = 58, .external_lex_state = 2}, - [468] = {.lex_state = 58, .external_lex_state = 2}, - [469] = {.lex_state = 5, .external_lex_state = 2}, - [470] = {.lex_state = 58, .external_lex_state = 2}, - [471] = {.lex_state = 58, .external_lex_state = 2}, - [472] = {.lex_state = 58, .external_lex_state = 2}, - [473] = {.lex_state = 58, .external_lex_state = 2}, - [474] = {.lex_state = 58, .external_lex_state = 2}, - [475] = {.lex_state = 58, .external_lex_state = 2}, - [476] = {.lex_state = 58, .external_lex_state = 2}, - [477] = {.lex_state = 58, .external_lex_state = 2}, - [478] = {.lex_state = 58, .external_lex_state = 2}, - [479] = {.lex_state = 58, .external_lex_state = 2}, - [480] = {.lex_state = 58, .external_lex_state = 2}, - [481] = {.lex_state = 12, .external_lex_state = 2}, - [482] = {.lex_state = 12, .external_lex_state = 2}, - [483] = {.lex_state = 13, .external_lex_state = 2}, - [484] = {.lex_state = 5, .external_lex_state = 2}, - [485] = {.lex_state = 12, .external_lex_state = 2}, - [486] = {.lex_state = 5, .external_lex_state = 2}, - [487] = {.lex_state = 12, .external_lex_state = 2}, - [488] = {.lex_state = 12, .external_lex_state = 2}, - [489] = {.lex_state = 12, .external_lex_state = 2}, - [490] = {.lex_state = 5, .external_lex_state = 2}, - [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 12, .external_lex_state = 2}, - [493] = {.lex_state = 12, .external_lex_state = 2}, - [494] = {.lex_state = 12, .external_lex_state = 2}, - [495] = {.lex_state = 12, .external_lex_state = 2}, - [496] = {.lex_state = 12, .external_lex_state = 2}, - [497] = {.lex_state = 12, .external_lex_state = 2}, - [498] = {.lex_state = 12, .external_lex_state = 2}, - [499] = {.lex_state = 12, .external_lex_state = 2}, + [239] = {.lex_state = 13, .external_lex_state = 2}, + [240] = {.lex_state = 8, .external_lex_state = 3}, + [241] = {.lex_state = 8, .external_lex_state = 3}, + [242] = {.lex_state = 8, .external_lex_state = 3}, + [243] = {.lex_state = 8, .external_lex_state = 3}, + [244] = {.lex_state = 8, .external_lex_state = 3}, + [245] = {.lex_state = 61, .external_lex_state = 2}, + [246] = {.lex_state = 61, .external_lex_state = 2}, + [247] = {.lex_state = 61, .external_lex_state = 2}, + [248] = {.lex_state = 61, .external_lex_state = 2}, + [249] = {.lex_state = 61, .external_lex_state = 2}, + [250] = {.lex_state = 61, .external_lex_state = 2}, + [251] = {.lex_state = 61, .external_lex_state = 2}, + [252] = {.lex_state = 61, .external_lex_state = 2}, + [253] = {.lex_state = 61, .external_lex_state = 2}, + [254] = {.lex_state = 61, .external_lex_state = 2}, + [255] = {.lex_state = 61, .external_lex_state = 2}, + [256] = {.lex_state = 61, .external_lex_state = 2}, + [257] = {.lex_state = 61, .external_lex_state = 2}, + [258] = {.lex_state = 61, .external_lex_state = 2}, + [259] = {.lex_state = 61, .external_lex_state = 2}, + [260] = {.lex_state = 61, .external_lex_state = 2}, + [261] = {.lex_state = 61, .external_lex_state = 2}, + [262] = {.lex_state = 61, .external_lex_state = 2}, + [263] = {.lex_state = 61, .external_lex_state = 2}, + [264] = {.lex_state = 61, .external_lex_state = 2}, + [265] = {.lex_state = 61, .external_lex_state = 2}, + [266] = {.lex_state = 61, .external_lex_state = 2}, + [267] = {.lex_state = 61, .external_lex_state = 2}, + [268] = {.lex_state = 61, .external_lex_state = 2}, + [269] = {.lex_state = 61, .external_lex_state = 2}, + [270] = {.lex_state = 61, .external_lex_state = 2}, + [271] = {.lex_state = 61, .external_lex_state = 2}, + [272] = {.lex_state = 61, .external_lex_state = 2}, + [273] = {.lex_state = 61, .external_lex_state = 2}, + [274] = {.lex_state = 61, .external_lex_state = 2}, + [275] = {.lex_state = 61, .external_lex_state = 2}, + [276] = {.lex_state = 61, .external_lex_state = 2}, + [277] = {.lex_state = 61, .external_lex_state = 2}, + [278] = {.lex_state = 61, .external_lex_state = 2}, + [279] = {.lex_state = 61, .external_lex_state = 2}, + [280] = {.lex_state = 61, .external_lex_state = 2}, + [281] = {.lex_state = 61, .external_lex_state = 2}, + [282] = {.lex_state = 61, .external_lex_state = 2}, + [283] = {.lex_state = 61, .external_lex_state = 2}, + [284] = {.lex_state = 61, .external_lex_state = 2}, + [285] = {.lex_state = 61, .external_lex_state = 2}, + [286] = {.lex_state = 61, .external_lex_state = 2}, + [287] = {.lex_state = 5, .external_lex_state = 2}, + [288] = {.lex_state = 61, .external_lex_state = 2}, + [289] = {.lex_state = 61, .external_lex_state = 2}, + [290] = {.lex_state = 61, .external_lex_state = 2}, + [291] = {.lex_state = 61, .external_lex_state = 2}, + [292] = {.lex_state = 61, .external_lex_state = 2}, + [293] = {.lex_state = 61, .external_lex_state = 2}, + [294] = {.lex_state = 61, .external_lex_state = 2}, + [295] = {.lex_state = 61, .external_lex_state = 2}, + [296] = {.lex_state = 61, .external_lex_state = 2}, + [297] = {.lex_state = 61, .external_lex_state = 2}, + [298] = {.lex_state = 61, .external_lex_state = 2}, + [299] = {.lex_state = 61, .external_lex_state = 2}, + [300] = {.lex_state = 61, .external_lex_state = 2}, + [301] = {.lex_state = 61, .external_lex_state = 2}, + [302] = {.lex_state = 61, .external_lex_state = 2}, + [303] = {.lex_state = 61, .external_lex_state = 2}, + [304] = {.lex_state = 61, .external_lex_state = 2}, + [305] = {.lex_state = 61, .external_lex_state = 2}, + [306] = {.lex_state = 61, .external_lex_state = 2}, + [307] = {.lex_state = 61, .external_lex_state = 2}, + [308] = {.lex_state = 61, .external_lex_state = 2}, + [309] = {.lex_state = 61, .external_lex_state = 2}, + [310] = {.lex_state = 61, .external_lex_state = 2}, + [311] = {.lex_state = 61, .external_lex_state = 2}, + [312] = {.lex_state = 61, .external_lex_state = 2}, + [313] = {.lex_state = 61, .external_lex_state = 2}, + [314] = {.lex_state = 61, .external_lex_state = 2}, + [315] = {.lex_state = 61, .external_lex_state = 2}, + [316] = {.lex_state = 61, .external_lex_state = 2}, + [317] = {.lex_state = 61, .external_lex_state = 2}, + [318] = {.lex_state = 61, .external_lex_state = 2}, + [319] = {.lex_state = 61, .external_lex_state = 2}, + [320] = {.lex_state = 61, .external_lex_state = 2}, + [321] = {.lex_state = 61, .external_lex_state = 2}, + [322] = {.lex_state = 61, .external_lex_state = 2}, + [323] = {.lex_state = 61, .external_lex_state = 2}, + [324] = {.lex_state = 61, .external_lex_state = 2}, + [325] = {.lex_state = 61, .external_lex_state = 2}, + [326] = {.lex_state = 61, .external_lex_state = 2}, + [327] = {.lex_state = 61, .external_lex_state = 2}, + [328] = {.lex_state = 61, .external_lex_state = 2}, + [329] = {.lex_state = 61, .external_lex_state = 2}, + [330] = {.lex_state = 61, .external_lex_state = 2}, + [331] = {.lex_state = 61, .external_lex_state = 2}, + [332] = {.lex_state = 61, .external_lex_state = 2}, + [333] = {.lex_state = 61, .external_lex_state = 2}, + [334] = {.lex_state = 61, .external_lex_state = 2}, + [335] = {.lex_state = 61, .external_lex_state = 2}, + [336] = {.lex_state = 61, .external_lex_state = 2}, + [337] = {.lex_state = 61, .external_lex_state = 2}, + [338] = {.lex_state = 61, .external_lex_state = 2}, + [339] = {.lex_state = 61, .external_lex_state = 2}, + [340] = {.lex_state = 61, .external_lex_state = 2}, + [341] = {.lex_state = 61, .external_lex_state = 2}, + [342] = {.lex_state = 61, .external_lex_state = 2}, + [343] = {.lex_state = 61, .external_lex_state = 2}, + [344] = {.lex_state = 61, .external_lex_state = 2}, + [345] = {.lex_state = 61, .external_lex_state = 2}, + [346] = {.lex_state = 61, .external_lex_state = 2}, + [347] = {.lex_state = 61, .external_lex_state = 2}, + [348] = {.lex_state = 61, .external_lex_state = 2}, + [349] = {.lex_state = 61, .external_lex_state = 2}, + [350] = {.lex_state = 61, .external_lex_state = 2}, + [351] = {.lex_state = 61, .external_lex_state = 2}, + [352] = {.lex_state = 61, .external_lex_state = 2}, + [353] = {.lex_state = 61, .external_lex_state = 2}, + [354] = {.lex_state = 61, .external_lex_state = 2}, + [355] = {.lex_state = 61, .external_lex_state = 2}, + [356] = {.lex_state = 61, .external_lex_state = 2}, + [357] = {.lex_state = 61, .external_lex_state = 2}, + [358] = {.lex_state = 61, .external_lex_state = 2}, + [359] = {.lex_state = 61, .external_lex_state = 2}, + [360] = {.lex_state = 61, .external_lex_state = 2}, + [361] = {.lex_state = 61, .external_lex_state = 2}, + [362] = {.lex_state = 61, .external_lex_state = 2}, + [363] = {.lex_state = 61, .external_lex_state = 2}, + [364] = {.lex_state = 61, .external_lex_state = 2}, + [365] = {.lex_state = 61, .external_lex_state = 2}, + [366] = {.lex_state = 5, .external_lex_state = 2}, + [367] = {.lex_state = 61, .external_lex_state = 2}, + [368] = {.lex_state = 61, .external_lex_state = 2}, + [369] = {.lex_state = 61, .external_lex_state = 2}, + [370] = {.lex_state = 61, .external_lex_state = 2}, + [371] = {.lex_state = 61, .external_lex_state = 2}, + [372] = {.lex_state = 61, .external_lex_state = 2}, + [373] = {.lex_state = 61, .external_lex_state = 2}, + [374] = {.lex_state = 61, .external_lex_state = 2}, + [375] = {.lex_state = 61, .external_lex_state = 2}, + [376] = {.lex_state = 61, .external_lex_state = 2}, + [377] = {.lex_state = 61, .external_lex_state = 2}, + [378] = {.lex_state = 61, .external_lex_state = 2}, + [379] = {.lex_state = 5, .external_lex_state = 2}, + [380] = {.lex_state = 61, .external_lex_state = 2}, + [381] = {.lex_state = 61, .external_lex_state = 2}, + [382] = {.lex_state = 61, .external_lex_state = 2}, + [383] = {.lex_state = 61, .external_lex_state = 2}, + [384] = {.lex_state = 61, .external_lex_state = 2}, + [385] = {.lex_state = 61, .external_lex_state = 2}, + [386] = {.lex_state = 61, .external_lex_state = 2}, + [387] = {.lex_state = 61, .external_lex_state = 2}, + [388] = {.lex_state = 61, .external_lex_state = 2}, + [389] = {.lex_state = 61, .external_lex_state = 2}, + [390] = {.lex_state = 61, .external_lex_state = 2}, + [391] = {.lex_state = 61, .external_lex_state = 2}, + [392] = {.lex_state = 61, .external_lex_state = 2}, + [393] = {.lex_state = 61, .external_lex_state = 2}, + [394] = {.lex_state = 61, .external_lex_state = 2}, + [395] = {.lex_state = 61, .external_lex_state = 2}, + [396] = {.lex_state = 61, .external_lex_state = 2}, + [397] = {.lex_state = 61, .external_lex_state = 2}, + [398] = {.lex_state = 61, .external_lex_state = 2}, + [399] = {.lex_state = 61, .external_lex_state = 2}, + [400] = {.lex_state = 61, .external_lex_state = 2}, + [401] = {.lex_state = 61, .external_lex_state = 2}, + [402] = {.lex_state = 61, .external_lex_state = 2}, + [403] = {.lex_state = 61, .external_lex_state = 2}, + [404] = {.lex_state = 61, .external_lex_state = 2}, + [405] = {.lex_state = 61, .external_lex_state = 2}, + [406] = {.lex_state = 61, .external_lex_state = 2}, + [407] = {.lex_state = 61, .external_lex_state = 2}, + [408] = {.lex_state = 61, .external_lex_state = 2}, + [409] = {.lex_state = 61, .external_lex_state = 2}, + [410] = {.lex_state = 61, .external_lex_state = 2}, + [411] = {.lex_state = 61, .external_lex_state = 2}, + [412] = {.lex_state = 61, .external_lex_state = 2}, + [413] = {.lex_state = 61, .external_lex_state = 2}, + [414] = {.lex_state = 61, .external_lex_state = 2}, + [415] = {.lex_state = 61, .external_lex_state = 2}, + [416] = {.lex_state = 61, .external_lex_state = 2}, + [417] = {.lex_state = 61, .external_lex_state = 2}, + [418] = {.lex_state = 61, .external_lex_state = 2}, + [419] = {.lex_state = 61, .external_lex_state = 2}, + [420] = {.lex_state = 61, .external_lex_state = 2}, + [421] = {.lex_state = 61, .external_lex_state = 2}, + [422] = {.lex_state = 61, .external_lex_state = 2}, + [423] = {.lex_state = 61, .external_lex_state = 2}, + [424] = {.lex_state = 61, .external_lex_state = 2}, + [425] = {.lex_state = 61, .external_lex_state = 2}, + [426] = {.lex_state = 61, .external_lex_state = 2}, + [427] = {.lex_state = 61, .external_lex_state = 2}, + [428] = {.lex_state = 61, .external_lex_state = 2}, + [429] = {.lex_state = 61, .external_lex_state = 2}, + [430] = {.lex_state = 61, .external_lex_state = 2}, + [431] = {.lex_state = 61, .external_lex_state = 2}, + [432] = {.lex_state = 61, .external_lex_state = 2}, + [433] = {.lex_state = 61, .external_lex_state = 2}, + [434] = {.lex_state = 61, .external_lex_state = 2}, + [435] = {.lex_state = 61, .external_lex_state = 2}, + [436] = {.lex_state = 61, .external_lex_state = 2}, + [437] = {.lex_state = 61, .external_lex_state = 2}, + [438] = {.lex_state = 61, .external_lex_state = 2}, + [439] = {.lex_state = 61, .external_lex_state = 2}, + [440] = {.lex_state = 61, .external_lex_state = 2}, + [441] = {.lex_state = 61, .external_lex_state = 2}, + [442] = {.lex_state = 61, .external_lex_state = 2}, + [443] = {.lex_state = 61, .external_lex_state = 2}, + [444] = {.lex_state = 61, .external_lex_state = 2}, + [445] = {.lex_state = 61, .external_lex_state = 2}, + [446] = {.lex_state = 61, .external_lex_state = 2}, + [447] = {.lex_state = 61, .external_lex_state = 2}, + [448] = {.lex_state = 61, .external_lex_state = 2}, + [449] = {.lex_state = 61, .external_lex_state = 2}, + [450] = {.lex_state = 61, .external_lex_state = 2}, + [451] = {.lex_state = 61, .external_lex_state = 2}, + [452] = {.lex_state = 61, .external_lex_state = 2}, + [453] = {.lex_state = 61, .external_lex_state = 2}, + [454] = {.lex_state = 61, .external_lex_state = 2}, + [455] = {.lex_state = 61, .external_lex_state = 2}, + [456] = {.lex_state = 61, .external_lex_state = 2}, + [457] = {.lex_state = 61, .external_lex_state = 2}, + [458] = {.lex_state = 61, .external_lex_state = 2}, + [459] = {.lex_state = 61, .external_lex_state = 2}, + [460] = {.lex_state = 61, .external_lex_state = 2}, + [461] = {.lex_state = 61, .external_lex_state = 2}, + [462] = {.lex_state = 61, .external_lex_state = 2}, + [463] = {.lex_state = 61, .external_lex_state = 2}, + [464] = {.lex_state = 61, .external_lex_state = 2}, + [465] = {.lex_state = 61, .external_lex_state = 2}, + [466] = {.lex_state = 61, .external_lex_state = 2}, + [467] = {.lex_state = 61, .external_lex_state = 2}, + [468] = {.lex_state = 61, .external_lex_state = 2}, + [469] = {.lex_state = 61, .external_lex_state = 2}, + [470] = {.lex_state = 61, .external_lex_state = 2}, + [471] = {.lex_state = 61, .external_lex_state = 2}, + [472] = {.lex_state = 61, .external_lex_state = 2}, + [473] = {.lex_state = 61, .external_lex_state = 2}, + [474] = {.lex_state = 61, .external_lex_state = 2}, + [475] = {.lex_state = 61, .external_lex_state = 2}, + [476] = {.lex_state = 61, .external_lex_state = 2}, + [477] = {.lex_state = 61, .external_lex_state = 2}, + [478] = {.lex_state = 61, .external_lex_state = 2}, + [479] = {.lex_state = 61, .external_lex_state = 2}, + [480] = {.lex_state = 61, .external_lex_state = 2}, + [481] = {.lex_state = 13, .external_lex_state = 2}, + [482] = {.lex_state = 5, .external_lex_state = 2}, + [483] = {.lex_state = 14, .external_lex_state = 2}, + [484] = {.lex_state = 13, .external_lex_state = 2}, + [485] = {.lex_state = 13, .external_lex_state = 2}, + [486] = {.lex_state = 13, .external_lex_state = 2}, + [487] = {.lex_state = 13, .external_lex_state = 2}, + [488] = {.lex_state = 5, .external_lex_state = 2}, + [489] = {.lex_state = 13, .external_lex_state = 2}, + [490] = {.lex_state = 13, .external_lex_state = 2}, + [491] = {.lex_state = 13, .external_lex_state = 2}, + [492] = {.lex_state = 13, .external_lex_state = 2}, + [493] = {.lex_state = 13, .external_lex_state = 2}, + [494] = {.lex_state = 5, .external_lex_state = 2}, + [495] = {.lex_state = 13, .external_lex_state = 2}, + [496] = {.lex_state = 13, .external_lex_state = 2}, + [497] = {.lex_state = 13, .external_lex_state = 2}, + [498] = {.lex_state = 13, .external_lex_state = 2}, + [499] = {.lex_state = 13, .external_lex_state = 2}, [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 13, .external_lex_state = 2}, - [502] = {.lex_state = 13, .external_lex_state = 2}, - [503] = {.lex_state = 12, .external_lex_state = 2}, + [501] = {.lex_state = 14, .external_lex_state = 2}, + [502] = {.lex_state = 14, .external_lex_state = 2}, + [503] = {.lex_state = 13, .external_lex_state = 2}, [504] = {.lex_state = 13, .external_lex_state = 2}, [505] = {.lex_state = 13, .external_lex_state = 2}, - [506] = {.lex_state = 12, .external_lex_state = 2}, - [507] = {.lex_state = 13, .external_lex_state = 2}, + [506] = {.lex_state = 14, .external_lex_state = 2}, + [507] = {.lex_state = 14, .external_lex_state = 2}, [508] = {.lex_state = 13, .external_lex_state = 2}, - [509] = {.lex_state = 13, .external_lex_state = 2}, - [510] = {.lex_state = 13, .external_lex_state = 2}, - [511] = {.lex_state = 13, .external_lex_state = 2}, + [509] = {.lex_state = 14, .external_lex_state = 2}, + [510] = {.lex_state = 14, .external_lex_state = 2}, + [511] = {.lex_state = 14, .external_lex_state = 2}, [512] = {.lex_state = 13, .external_lex_state = 2}, - [513] = {.lex_state = 13, .external_lex_state = 2}, - [514] = {.lex_state = 12, .external_lex_state = 2}, - [515] = {.lex_state = 12, .external_lex_state = 2}, - [516] = {.lex_state = 12, .external_lex_state = 2}, - [517] = {.lex_state = 13, .external_lex_state = 2}, - [518] = {.lex_state = 12, .external_lex_state = 2}, + [513] = {.lex_state = 14, .external_lex_state = 2}, + [514] = {.lex_state = 14, .external_lex_state = 2}, + [515] = {.lex_state = 14, .external_lex_state = 2}, + [516] = {.lex_state = 14, .external_lex_state = 2}, + [517] = {.lex_state = 14, .external_lex_state = 2}, + [518] = {.lex_state = 13, .external_lex_state = 2}, [519] = {.lex_state = 13, .external_lex_state = 2}, - [520] = {.lex_state = 13, .external_lex_state = 2}, - [521] = {.lex_state = 13, .external_lex_state = 2}, - [522] = {.lex_state = 13, .external_lex_state = 2}, - [523] = {.lex_state = 13, .external_lex_state = 2}, + [520] = {.lex_state = 14, .external_lex_state = 2}, + [521] = {.lex_state = 14, .external_lex_state = 2}, + [522] = {.lex_state = 14, .external_lex_state = 2}, + [523] = {.lex_state = 14, .external_lex_state = 2}, [524] = {.lex_state = 13, .external_lex_state = 2}, - [525] = {.lex_state = 12, .external_lex_state = 2}, - [526] = {.lex_state = 13, .external_lex_state = 2}, - [527] = {.lex_state = 13, .external_lex_state = 2}, - [528] = {.lex_state = 13, .external_lex_state = 2}, - [529] = {.lex_state = 13, .external_lex_state = 2}, + [525] = {.lex_state = 14, .external_lex_state = 2}, + [526] = {.lex_state = 14, .external_lex_state = 2}, + [527] = {.lex_state = 14, .external_lex_state = 2}, + [528] = {.lex_state = 14, .external_lex_state = 2}, + [529] = {.lex_state = 14, .external_lex_state = 2}, [530] = {.lex_state = 13, .external_lex_state = 2}, [531] = {.lex_state = 13, .external_lex_state = 2}, [532] = {.lex_state = 13, .external_lex_state = 2}, - [533] = {.lex_state = 12, .external_lex_state = 2}, - [534] = {.lex_state = 13, .external_lex_state = 2}, - [535] = {.lex_state = 12, .external_lex_state = 2}, + [533] = {.lex_state = 14, .external_lex_state = 2}, + [534] = {.lex_state = 14, .external_lex_state = 2}, + [535] = {.lex_state = 14, .external_lex_state = 2}, [536] = {.lex_state = 13, .external_lex_state = 2}, - [537] = {.lex_state = 12, .external_lex_state = 2}, - [538] = {.lex_state = 12, .external_lex_state = 2}, - [539] = {.lex_state = 12, .external_lex_state = 2}, - [540] = {.lex_state = 13, .external_lex_state = 2}, - [541] = {.lex_state = 12, .external_lex_state = 2}, - [542] = {.lex_state = 13, .external_lex_state = 2}, + [537] = {.lex_state = 14, .external_lex_state = 2}, + [538] = {.lex_state = 14, .external_lex_state = 2}, + [539] = {.lex_state = 14, .external_lex_state = 2}, + [540] = {.lex_state = 14, .external_lex_state = 2}, + [541] = {.lex_state = 13, .external_lex_state = 2}, + [542] = {.lex_state = 14, .external_lex_state = 2}, [543] = {.lex_state = 13, .external_lex_state = 2}, - [544] = {.lex_state = 12, .external_lex_state = 2}, - [545] = {.lex_state = 7, .external_lex_state = 3}, - [546] = {.lex_state = 5, .external_lex_state = 2}, + [544] = {.lex_state = 14, .external_lex_state = 2}, + [545] = {.lex_state = 5, .external_lex_state = 2}, + [546] = {.lex_state = 7, .external_lex_state = 3}, [547] = {.lex_state = 5, .external_lex_state = 2}, [548] = {.lex_state = 7, .external_lex_state = 3}, [549] = {.lex_state = 7, .external_lex_state = 3}, @@ -15193,76 +12723,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [551] = {.lex_state = 7, .external_lex_state = 3}, [552] = {.lex_state = 7, .external_lex_state = 3}, [553] = {.lex_state = 7, .external_lex_state = 3}, - [554] = {.lex_state = 7, .external_lex_state = 3}, - [555] = {.lex_state = 7, .external_lex_state = 3}, + [554] = {.lex_state = 5, .external_lex_state = 2}, + [555] = {.lex_state = 5, .external_lex_state = 2}, [556] = {.lex_state = 5, .external_lex_state = 2}, [557] = {.lex_state = 7, .external_lex_state = 3}, - [558] = {.lex_state = 11, .external_lex_state = 2}, - [559] = {.lex_state = 5, .external_lex_state = 2}, + [558] = {.lex_state = 7, .external_lex_state = 3}, + [559] = {.lex_state = 7, .external_lex_state = 3}, [560] = {.lex_state = 5, .external_lex_state = 2}, - [561] = {.lex_state = 5, .external_lex_state = 2}, - [562] = {.lex_state = 5, .external_lex_state = 2}, - [563] = {.lex_state = 12, .external_lex_state = 2}, - [564] = {.lex_state = 12, .external_lex_state = 2}, - [565] = {.lex_state = 12, .external_lex_state = 2}, + [561] = {.lex_state = 12, .external_lex_state = 2}, + [562] = {.lex_state = 13, .external_lex_state = 2}, + [563] = {.lex_state = 13, .external_lex_state = 2}, + [564] = {.lex_state = 13, .external_lex_state = 2}, + [565] = {.lex_state = 5, .external_lex_state = 2}, [566] = {.lex_state = 5, .external_lex_state = 2}, - [567] = {.lex_state = 12, .external_lex_state = 2}, - [568] = {.lex_state = 12, .external_lex_state = 2}, - [569] = {.lex_state = 7, .external_lex_state = 3}, - [570] = {.lex_state = 5, .external_lex_state = 2}, - [571] = {.lex_state = 12, .external_lex_state = 2}, - [572] = {.lex_state = 12, .external_lex_state = 2}, - [573] = {.lex_state = 5, .external_lex_state = 2}, - [574] = {.lex_state = 12, .external_lex_state = 2}, - [575] = {.lex_state = 12, .external_lex_state = 2}, - [576] = {.lex_state = 5, .external_lex_state = 2}, - [577] = {.lex_state = 12, .external_lex_state = 2}, - [578] = {.lex_state = 12, .external_lex_state = 2}, - [579] = {.lex_state = 12, .external_lex_state = 2}, - [580] = {.lex_state = 5, .external_lex_state = 2}, + [567] = {.lex_state = 5, .external_lex_state = 2}, + [568] = {.lex_state = 13, .external_lex_state = 2}, + [569] = {.lex_state = 13, .external_lex_state = 2}, + [570] = {.lex_state = 13, .external_lex_state = 2}, + [571] = {.lex_state = 13, .external_lex_state = 2}, + [572] = {.lex_state = 7, .external_lex_state = 3}, + [573] = {.lex_state = 13, .external_lex_state = 2}, + [574] = {.lex_state = 13, .external_lex_state = 2}, + [575] = {.lex_state = 13, .external_lex_state = 2}, + [576] = {.lex_state = 13, .external_lex_state = 2}, + [577] = {.lex_state = 13, .external_lex_state = 2}, + [578] = {.lex_state = 5, .external_lex_state = 2}, + [579] = {.lex_state = 13, .external_lex_state = 2}, + [580] = {.lex_state = 13, .external_lex_state = 2}, [581] = {.lex_state = 5, .external_lex_state = 2}, - [582] = {.lex_state = 12, .external_lex_state = 2}, - [583] = {.lex_state = 12, .external_lex_state = 2}, - [584] = {.lex_state = 12, .external_lex_state = 2}, - [585] = {.lex_state = 12, .external_lex_state = 2}, + [582] = {.lex_state = 13, .external_lex_state = 2}, + [583] = {.lex_state = 5, .external_lex_state = 2}, + [584] = {.lex_state = 13, .external_lex_state = 2}, + [585] = {.lex_state = 5, .external_lex_state = 2}, [586] = {.lex_state = 5, .external_lex_state = 2}, - [587] = {.lex_state = 5, .external_lex_state = 2}, + [587] = {.lex_state = 14, .external_lex_state = 2}, [588] = {.lex_state = 5, .external_lex_state = 2}, - [589] = {.lex_state = 13, .external_lex_state = 2}, - [590] = {.lex_state = 5, .external_lex_state = 2}, + [589] = {.lex_state = 5, .external_lex_state = 2}, + [590] = {.lex_state = 7, .external_lex_state = 3}, [591] = {.lex_state = 5, .external_lex_state = 2}, - [592] = {.lex_state = 13, .external_lex_state = 2}, + [592] = {.lex_state = 5, .external_lex_state = 2}, [593] = {.lex_state = 5, .external_lex_state = 2}, [594] = {.lex_state = 7, .external_lex_state = 3}, - [595] = {.lex_state = 7, .external_lex_state = 3}, - [596] = {.lex_state = 7, .external_lex_state = 3}, - [597] = {.lex_state = 5, .external_lex_state = 2}, + [595] = {.lex_state = 5, .external_lex_state = 2}, + [596] = {.lex_state = 5, .external_lex_state = 2}, + [597] = {.lex_state = 7, .external_lex_state = 3}, [598] = {.lex_state = 5, .external_lex_state = 2}, [599] = {.lex_state = 5, .external_lex_state = 2}, [600] = {.lex_state = 5, .external_lex_state = 2}, - [601] = {.lex_state = 13, .external_lex_state = 2}, + [601] = {.lex_state = 5, .external_lex_state = 2}, [602] = {.lex_state = 5, .external_lex_state = 2}, [603] = {.lex_state = 5, .external_lex_state = 2}, [604] = {.lex_state = 5, .external_lex_state = 2}, - [605] = {.lex_state = 13, .external_lex_state = 2}, + [605] = {.lex_state = 5, .external_lex_state = 2}, [606] = {.lex_state = 5, .external_lex_state = 2}, [607] = {.lex_state = 5, .external_lex_state = 2}, - [608] = {.lex_state = 5, .external_lex_state = 2}, + [608] = {.lex_state = 14, .external_lex_state = 2}, [609] = {.lex_state = 5, .external_lex_state = 2}, - [610] = {.lex_state = 7, .external_lex_state = 3}, - [611] = {.lex_state = 5, .external_lex_state = 2}, - [612] = {.lex_state = 5, .external_lex_state = 2}, + [610] = {.lex_state = 5, .external_lex_state = 2}, + [611] = {.lex_state = 7, .external_lex_state = 3}, + [612] = {.lex_state = 14, .external_lex_state = 2}, [613] = {.lex_state = 5, .external_lex_state = 2}, - [614] = {.lex_state = 13, .external_lex_state = 2}, - [615] = {.lex_state = 13, .external_lex_state = 2}, - [616] = {.lex_state = 5, .external_lex_state = 2}, + [614] = {.lex_state = 14, .external_lex_state = 2}, + [615] = {.lex_state = 14, .external_lex_state = 2}, + [616] = {.lex_state = 14, .external_lex_state = 2}, [617] = {.lex_state = 5, .external_lex_state = 2}, [618] = {.lex_state = 5, .external_lex_state = 2}, [619] = {.lex_state = 5, .external_lex_state = 2}, [620] = {.lex_state = 7, .external_lex_state = 3}, - [621] = {.lex_state = 5, .external_lex_state = 2}, + [621] = {.lex_state = 7, .external_lex_state = 3}, [622] = {.lex_state = 7, .external_lex_state = 3}, - [623] = {.lex_state = 7, .external_lex_state = 3}, + [623] = {.lex_state = 5, .external_lex_state = 2}, [624] = {.lex_state = 7, .external_lex_state = 3}, [625] = {.lex_state = 7, .external_lex_state = 3}, [626] = {.lex_state = 7, .external_lex_state = 3}, @@ -15323,7 +12853,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [681] = {.lex_state = 7, .external_lex_state = 3}, [682] = {.lex_state = 7, .external_lex_state = 3}, [683] = {.lex_state = 7, .external_lex_state = 3}, - [684] = {.lex_state = 7, .external_lex_state = 3}, + [684] = {.lex_state = 5, .external_lex_state = 2}, [685] = {.lex_state = 7, .external_lex_state = 3}, [686] = {.lex_state = 7, .external_lex_state = 3}, [687] = {.lex_state = 7, .external_lex_state = 3}, @@ -15371,7 +12901,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [729] = {.lex_state = 7, .external_lex_state = 3}, [730] = {.lex_state = 7, .external_lex_state = 3}, [731] = {.lex_state = 7, .external_lex_state = 3}, - [732] = {.lex_state = 5, .external_lex_state = 2}, + [732] = {.lex_state = 7, .external_lex_state = 3}, [733] = {.lex_state = 7, .external_lex_state = 3}, [734] = {.lex_state = 7, .external_lex_state = 3}, [735] = {.lex_state = 7, .external_lex_state = 3}, @@ -15391,550 +12921,550 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [749] = {.lex_state = 5, .external_lex_state = 2}, [750] = {.lex_state = 5, .external_lex_state = 2}, [751] = {.lex_state = 6, .external_lex_state = 2}, - [752] = {.lex_state = 3, .external_lex_state = 3}, - [753] = {.lex_state = 3, .external_lex_state = 3}, - [754] = {.lex_state = 3, .external_lex_state = 3}, + [752] = {.lex_state = 4, .external_lex_state = 3}, + [753] = {.lex_state = 4, .external_lex_state = 3}, + [754] = {.lex_state = 4, .external_lex_state = 3}, [755] = {.lex_state = 3, .external_lex_state = 3}, - [756] = {.lex_state = 3, .external_lex_state = 3}, - [757] = {.lex_state = 3, .external_lex_state = 3}, - [758] = {.lex_state = 2, .external_lex_state = 3}, - [759] = {.lex_state = 3, .external_lex_state = 3}, - [760] = {.lex_state = 3, .external_lex_state = 3}, - [761] = {.lex_state = 3, .external_lex_state = 3}, - [762] = {.lex_state = 3, .external_lex_state = 3}, - [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 2, .external_lex_state = 3}, - [765] = {.lex_state = 2, .external_lex_state = 3}, - [766] = {.lex_state = 2, .external_lex_state = 3}, - [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 4, .external_lex_state = 3}, - [769] = {.lex_state = 2, .external_lex_state = 3}, - [770] = {.lex_state = 2, .external_lex_state = 3}, - [771] = {.lex_state = 2, .external_lex_state = 3}, - [772] = {.lex_state = 2, .external_lex_state = 3}, - [773] = {.lex_state = 4, .external_lex_state = 3}, - [774] = {.lex_state = 4, .external_lex_state = 3}, - [775] = {.lex_state = 2, .external_lex_state = 3}, - [776] = {.lex_state = 2, .external_lex_state = 3}, - [777] = {.lex_state = 2, .external_lex_state = 3}, - [778] = {.lex_state = 2, .external_lex_state = 3}, - [779] = {.lex_state = 2, .external_lex_state = 3}, - [780] = {.lex_state = 2, .external_lex_state = 3}, - [781] = {.lex_state = 2, .external_lex_state = 3}, - [782] = {.lex_state = 2, .external_lex_state = 3}, - [783] = {.lex_state = 2, .external_lex_state = 3}, - [784] = {.lex_state = 10, .external_lex_state = 3}, - [785] = {.lex_state = 2, .external_lex_state = 3}, - [786] = {.lex_state = 2, .external_lex_state = 3}, - [787] = {.lex_state = 2, .external_lex_state = 3}, - [788] = {.lex_state = 2, .external_lex_state = 3}, + [756] = {.lex_state = 4, .external_lex_state = 3}, + [757] = {.lex_state = 4, .external_lex_state = 3}, + [758] = {.lex_state = 4, .external_lex_state = 3}, + [759] = {.lex_state = 4, .external_lex_state = 3}, + [760] = {.lex_state = 4, .external_lex_state = 3}, + [761] = {.lex_state = 4, .external_lex_state = 3}, + [762] = {.lex_state = 4, .external_lex_state = 3}, + [763] = {.lex_state = 3, .external_lex_state = 3}, + [764] = {.lex_state = 8, .external_lex_state = 3}, + [765] = {.lex_state = 8, .external_lex_state = 3}, + [766] = {.lex_state = 3, .external_lex_state = 3}, + [767] = {.lex_state = 8, .external_lex_state = 3}, + [768] = {.lex_state = 3, .external_lex_state = 3}, + [769] = {.lex_state = 3, .external_lex_state = 3}, + [770] = {.lex_state = 3, .external_lex_state = 3}, + [771] = {.lex_state = 8, .external_lex_state = 3}, + [772] = {.lex_state = 3, .external_lex_state = 3}, + [773] = {.lex_state = 3, .external_lex_state = 3}, + [774] = {.lex_state = 8, .external_lex_state = 3}, + [775] = {.lex_state = 3, .external_lex_state = 3}, + [776] = {.lex_state = 3, .external_lex_state = 3}, + [777] = {.lex_state = 3, .external_lex_state = 3}, + [778] = {.lex_state = 3, .external_lex_state = 3}, + [779] = {.lex_state = 3, .external_lex_state = 3}, + [780] = {.lex_state = 3, .external_lex_state = 3}, + [781] = {.lex_state = 3, .external_lex_state = 3}, + [782] = {.lex_state = 10, .external_lex_state = 3}, + [783] = {.lex_state = 3, .external_lex_state = 3}, + [784] = {.lex_state = 3, .external_lex_state = 3}, + [785] = {.lex_state = 3, .external_lex_state = 3}, + [786] = {.lex_state = 3, .external_lex_state = 3}, + [787] = {.lex_state = 3, .external_lex_state = 3}, + [788] = {.lex_state = 3, .external_lex_state = 3}, [789] = {.lex_state = 3, .external_lex_state = 3}, - [790] = {.lex_state = 2, .external_lex_state = 3}, - [791] = {.lex_state = 2, .external_lex_state = 3}, - [792] = {.lex_state = 2, .external_lex_state = 3}, - [793] = {.lex_state = 2, .external_lex_state = 3}, - [794] = {.lex_state = 2, .external_lex_state = 3}, - [795] = {.lex_state = 2, .external_lex_state = 3}, - [796] = {.lex_state = 2, .external_lex_state = 3}, - [797] = {.lex_state = 2, .external_lex_state = 3}, - [798] = {.lex_state = 2, .external_lex_state = 3}, - [799] = {.lex_state = 2, .external_lex_state = 3}, - [800] = {.lex_state = 2, .external_lex_state = 3}, - [801] = {.lex_state = 2, .external_lex_state = 3}, - [802] = {.lex_state = 2, .external_lex_state = 3}, - [803] = {.lex_state = 2, .external_lex_state = 3}, - [804] = {.lex_state = 2, .external_lex_state = 3}, - [805] = {.lex_state = 2, .external_lex_state = 3}, - [806] = {.lex_state = 2, .external_lex_state = 3}, - [807] = {.lex_state = 2, .external_lex_state = 3}, - [808] = {.lex_state = 4, .external_lex_state = 3}, - [809] = {.lex_state = 4, .external_lex_state = 3}, - [810] = {.lex_state = 4, .external_lex_state = 3}, - [811] = {.lex_state = 4, .external_lex_state = 3}, - [812] = {.lex_state = 4, .external_lex_state = 3}, - [813] = {.lex_state = 2, .external_lex_state = 3}, - [814] = {.lex_state = 4, .external_lex_state = 3}, - [815] = {.lex_state = 2, .external_lex_state = 3}, - [816] = {.lex_state = 2, .external_lex_state = 3}, - [817] = {.lex_state = 2, .external_lex_state = 3}, - [818] = {.lex_state = 2, .external_lex_state = 3}, - [819] = {.lex_state = 4, .external_lex_state = 3}, - [820] = {.lex_state = 4, .external_lex_state = 3}, - [821] = {.lex_state = 4, .external_lex_state = 3}, - [822] = {.lex_state = 4, .external_lex_state = 3}, - [823] = {.lex_state = 4, .external_lex_state = 3}, - [824] = {.lex_state = 4, .external_lex_state = 3}, - [825] = {.lex_state = 4, .external_lex_state = 3}, - [826] = {.lex_state = 4, .external_lex_state = 3}, - [827] = {.lex_state = 4, .external_lex_state = 3}, - [828] = {.lex_state = 4, .external_lex_state = 3}, - [829] = {.lex_state = 4, .external_lex_state = 3}, - [830] = {.lex_state = 4, .external_lex_state = 3}, - [831] = {.lex_state = 4, .external_lex_state = 3}, - [832] = {.lex_state = 4, .external_lex_state = 3}, - [833] = {.lex_state = 4, .external_lex_state = 3}, - [834] = {.lex_state = 4, .external_lex_state = 3}, - [835] = {.lex_state = 4, .external_lex_state = 3}, - [836] = {.lex_state = 4, .external_lex_state = 3}, - [837] = {.lex_state = 4, .external_lex_state = 3}, - [838] = {.lex_state = 2, .external_lex_state = 3}, - [839] = {.lex_state = 4, .external_lex_state = 3}, - [840] = {.lex_state = 4, .external_lex_state = 3}, - [841] = {.lex_state = 4, .external_lex_state = 3}, - [842] = {.lex_state = 2, .external_lex_state = 3}, - [843] = {.lex_state = 2, .external_lex_state = 3}, - [844] = {.lex_state = 4, .external_lex_state = 3}, - [845] = {.lex_state = 4, .external_lex_state = 3}, - [846] = {.lex_state = 4, .external_lex_state = 3}, - [847] = {.lex_state = 4, .external_lex_state = 3}, - [848] = {.lex_state = 4, .external_lex_state = 3}, - [849] = {.lex_state = 4, .external_lex_state = 3}, - [850] = {.lex_state = 4, .external_lex_state = 3}, - [851] = {.lex_state = 4, .external_lex_state = 3}, - [852] = {.lex_state = 2, .external_lex_state = 3}, - [853] = {.lex_state = 4, .external_lex_state = 3}, - [854] = {.lex_state = 4, .external_lex_state = 3}, - [855] = {.lex_state = 4, .external_lex_state = 3}, - [856] = {.lex_state = 2, .external_lex_state = 3}, - [857] = {.lex_state = 4, .external_lex_state = 3}, - [858] = {.lex_state = 4, .external_lex_state = 3}, - [859] = {.lex_state = 4, .external_lex_state = 3}, - [860] = {.lex_state = 4, .external_lex_state = 3}, - [861] = {.lex_state = 4, .external_lex_state = 3}, - [862] = {.lex_state = 2, .external_lex_state = 3}, - [863] = {.lex_state = 4, .external_lex_state = 3}, - [864] = {.lex_state = 4, .external_lex_state = 3}, - [865] = {.lex_state = 2, .external_lex_state = 3}, - [866] = {.lex_state = 2, .external_lex_state = 3}, - [867] = {.lex_state = 2, .external_lex_state = 3}, - [868] = {.lex_state = 2, .external_lex_state = 3}, - [869] = {.lex_state = 2, .external_lex_state = 3}, - [870] = {.lex_state = 2, .external_lex_state = 3}, - [871] = {.lex_state = 2, .external_lex_state = 3}, - [872] = {.lex_state = 2, .external_lex_state = 3}, - [873] = {.lex_state = 4, .external_lex_state = 3}, - [874] = {.lex_state = 4, .external_lex_state = 3}, - [875] = {.lex_state = 4, .external_lex_state = 3}, - [876] = {.lex_state = 4, .external_lex_state = 3}, - [877] = {.lex_state = 4, .external_lex_state = 3}, - [878] = {.lex_state = 4, .external_lex_state = 3}, - [879] = {.lex_state = 2, .external_lex_state = 3}, - [880] = {.lex_state = 4, .external_lex_state = 3}, - [881] = {.lex_state = 4, .external_lex_state = 3}, - [882] = {.lex_state = 4, .external_lex_state = 3}, - [883] = {.lex_state = 2, .external_lex_state = 3}, - [884] = {.lex_state = 4, .external_lex_state = 3}, - [885] = {.lex_state = 4, .external_lex_state = 3}, - [886] = {.lex_state = 4, .external_lex_state = 3}, - [887] = {.lex_state = 4, .external_lex_state = 3}, - [888] = {.lex_state = 4, .external_lex_state = 3}, - [889] = {.lex_state = 4, .external_lex_state = 3}, - [890] = {.lex_state = 4, .external_lex_state = 3}, - [891] = {.lex_state = 2, .external_lex_state = 3}, - [892] = {.lex_state = 4, .external_lex_state = 3}, - [893] = {.lex_state = 4, .external_lex_state = 3}, - [894] = {.lex_state = 4, .external_lex_state = 3}, - [895] = {.lex_state = 4, .external_lex_state = 3}, - [896] = {.lex_state = 4, .external_lex_state = 3}, - [897] = {.lex_state = 4, .external_lex_state = 3}, - [898] = {.lex_state = 2, .external_lex_state = 3}, - [899] = {.lex_state = 4, .external_lex_state = 3}, - [900] = {.lex_state = 4, .external_lex_state = 3}, - [901] = {.lex_state = 4, .external_lex_state = 3}, - [902] = {.lex_state = 4, .external_lex_state = 3}, - [903] = {.lex_state = 4, .external_lex_state = 3}, - [904] = {.lex_state = 4, .external_lex_state = 3}, - [905] = {.lex_state = 2, .external_lex_state = 3}, - [906] = {.lex_state = 4, .external_lex_state = 3}, - [907] = {.lex_state = 4, .external_lex_state = 3}, - [908] = {.lex_state = 4, .external_lex_state = 3}, - [909] = {.lex_state = 4, .external_lex_state = 3}, - [910] = {.lex_state = 4, .external_lex_state = 3}, - [911] = {.lex_state = 4, .external_lex_state = 3}, - [912] = {.lex_state = 4, .external_lex_state = 3}, - [913] = {.lex_state = 4, .external_lex_state = 3}, - [914] = {.lex_state = 4, .external_lex_state = 3}, - [915] = {.lex_state = 2, .external_lex_state = 3}, - [916] = {.lex_state = 4, .external_lex_state = 3}, - [917] = {.lex_state = 4, .external_lex_state = 3}, - [918] = {.lex_state = 4, .external_lex_state = 3}, - [919] = {.lex_state = 4, .external_lex_state = 3}, - [920] = {.lex_state = 4, .external_lex_state = 3}, - [921] = {.lex_state = 4, .external_lex_state = 3}, - [922] = {.lex_state = 2, .external_lex_state = 3}, - [923] = {.lex_state = 4, .external_lex_state = 3}, - [924] = {.lex_state = 2, .external_lex_state = 3}, - [925] = {.lex_state = 4, .external_lex_state = 3}, - [926] = {.lex_state = 4, .external_lex_state = 3}, - [927] = {.lex_state = 4, .external_lex_state = 3}, - [928] = {.lex_state = 4, .external_lex_state = 3}, - [929] = {.lex_state = 4, .external_lex_state = 3}, - [930] = {.lex_state = 4, .external_lex_state = 3}, - [931] = {.lex_state = 2, .external_lex_state = 3}, - [932] = {.lex_state = 2, .external_lex_state = 3}, - [933] = {.lex_state = 4, .external_lex_state = 3}, - [934] = {.lex_state = 4, .external_lex_state = 3}, - [935] = {.lex_state = 2, .external_lex_state = 3}, - [936] = {.lex_state = 4, .external_lex_state = 3}, - [937] = {.lex_state = 4, .external_lex_state = 3}, - [938] = {.lex_state = 4, .external_lex_state = 3}, - [939] = {.lex_state = 4, .external_lex_state = 3}, - [940] = {.lex_state = 4, .external_lex_state = 3}, - [941] = {.lex_state = 2, .external_lex_state = 3}, - [942] = {.lex_state = 2, .external_lex_state = 3}, - [943] = {.lex_state = 4, .external_lex_state = 3}, - [944] = {.lex_state = 4, .external_lex_state = 3}, - [945] = {.lex_state = 4, .external_lex_state = 3}, - [946] = {.lex_state = 2, .external_lex_state = 3}, - [947] = {.lex_state = 4, .external_lex_state = 3}, - [948] = {.lex_state = 2, .external_lex_state = 3}, - [949] = {.lex_state = 2, .external_lex_state = 3}, - [950] = {.lex_state = 2, .external_lex_state = 3}, - [951] = {.lex_state = 2, .external_lex_state = 3}, - [952] = {.lex_state = 2, .external_lex_state = 3}, - [953] = {.lex_state = 2, .external_lex_state = 3}, - [954] = {.lex_state = 4, .external_lex_state = 3}, - [955] = {.lex_state = 4, .external_lex_state = 3}, - [956] = {.lex_state = 4, .external_lex_state = 3}, - [957] = {.lex_state = 4, .external_lex_state = 3}, - [958] = {.lex_state = 4, .external_lex_state = 3}, - [959] = {.lex_state = 4, .external_lex_state = 3}, - [960] = {.lex_state = 4, .external_lex_state = 3}, - [961] = {.lex_state = 2, .external_lex_state = 3}, - [962] = {.lex_state = 4, .external_lex_state = 3}, - [963] = {.lex_state = 4, .external_lex_state = 3}, - [964] = {.lex_state = 4, .external_lex_state = 3}, - [965] = {.lex_state = 4, .external_lex_state = 3}, - [966] = {.lex_state = 2, .external_lex_state = 3}, - [967] = {.lex_state = 2, .external_lex_state = 3}, - [968] = {.lex_state = 4, .external_lex_state = 3}, - [969] = {.lex_state = 4, .external_lex_state = 3}, - [970] = {.lex_state = 4, .external_lex_state = 3}, - [971] = {.lex_state = 4, .external_lex_state = 3}, - [972] = {.lex_state = 4, .external_lex_state = 3}, - [973] = {.lex_state = 2, .external_lex_state = 3}, - [974] = {.lex_state = 2, .external_lex_state = 3}, - [975] = {.lex_state = 4, .external_lex_state = 3}, - [976] = {.lex_state = 4, .external_lex_state = 3}, - [977] = {.lex_state = 4, .external_lex_state = 3}, - [978] = {.lex_state = 4, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, - [980] = {.lex_state = 4, .external_lex_state = 3}, - [981] = {.lex_state = 4, .external_lex_state = 3}, - [982] = {.lex_state = 4, .external_lex_state = 3}, - [983] = {.lex_state = 4, .external_lex_state = 3}, - [984] = {.lex_state = 4, .external_lex_state = 3}, - [985] = {.lex_state = 2, .external_lex_state = 3}, - [986] = {.lex_state = 4, .external_lex_state = 3}, - [987] = {.lex_state = 2, .external_lex_state = 3}, - [988] = {.lex_state = 4, .external_lex_state = 3}, - [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 4, .external_lex_state = 3}, - [991] = {.lex_state = 4, .external_lex_state = 3}, - [992] = {.lex_state = 4, .external_lex_state = 3}, - [993] = {.lex_state = 4, .external_lex_state = 3}, - [994] = {.lex_state = 4, .external_lex_state = 3}, - [995] = {.lex_state = 4, .external_lex_state = 3}, - [996] = {.lex_state = 4, .external_lex_state = 3}, - [997] = {.lex_state = 4, .external_lex_state = 3}, - [998] = {.lex_state = 4, .external_lex_state = 3}, - [999] = {.lex_state = 4, .external_lex_state = 3}, - [1000] = {.lex_state = 4, .external_lex_state = 3}, - [1001] = {.lex_state = 4, .external_lex_state = 3}, - [1002] = {.lex_state = 2, .external_lex_state = 3}, - [1003] = {.lex_state = 4, .external_lex_state = 3}, - [1004] = {.lex_state = 4, .external_lex_state = 3}, - [1005] = {.lex_state = 2, .external_lex_state = 3}, - [1006] = {.lex_state = 4, .external_lex_state = 3}, - [1007] = {.lex_state = 4, .external_lex_state = 3}, - [1008] = {.lex_state = 4, .external_lex_state = 3}, - [1009] = {.lex_state = 2, .external_lex_state = 3}, - [1010] = {.lex_state = 4, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, - [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 4, .external_lex_state = 3}, - [1014] = {.lex_state = 4, .external_lex_state = 3}, - [1015] = {.lex_state = 2, .external_lex_state = 3}, - [1016] = {.lex_state = 4, .external_lex_state = 3}, - [1017] = {.lex_state = 2, .external_lex_state = 3}, - [1018] = {.lex_state = 4, .external_lex_state = 3}, - [1019] = {.lex_state = 4, .external_lex_state = 3}, - [1020] = {.lex_state = 4, .external_lex_state = 3}, - [1021] = {.lex_state = 4, .external_lex_state = 3}, - [1022] = {.lex_state = 4, .external_lex_state = 3}, - [1023] = {.lex_state = 2, .external_lex_state = 3}, - [1024] = {.lex_state = 2, .external_lex_state = 3}, - [1025] = {.lex_state = 2, .external_lex_state = 3}, - [1026] = {.lex_state = 4, .external_lex_state = 3}, - [1027] = {.lex_state = 4, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, - [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 4, .external_lex_state = 3}, - [1031] = {.lex_state = 2, .external_lex_state = 3}, - [1032] = {.lex_state = 4, .external_lex_state = 3}, - [1033] = {.lex_state = 4, .external_lex_state = 3}, - [1034] = {.lex_state = 4, .external_lex_state = 3}, - [1035] = {.lex_state = 4, .external_lex_state = 3}, - [1036] = {.lex_state = 4, .external_lex_state = 3}, - [1037] = {.lex_state = 4, .external_lex_state = 3}, - [1038] = {.lex_state = 2, .external_lex_state = 3}, - [1039] = {.lex_state = 2, .external_lex_state = 3}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, - [1041] = {.lex_state = 4, .external_lex_state = 3}, - [1042] = {.lex_state = 2, .external_lex_state = 3}, - [1043] = {.lex_state = 4, .external_lex_state = 3}, - [1044] = {.lex_state = 4, .external_lex_state = 3}, - [1045] = {.lex_state = 2, .external_lex_state = 3}, - [1046] = {.lex_state = 2, .external_lex_state = 3}, - [1047] = {.lex_state = 2, .external_lex_state = 3}, - [1048] = {.lex_state = 4, .external_lex_state = 3}, - [1049] = {.lex_state = 2, .external_lex_state = 3}, - [1050] = {.lex_state = 4, .external_lex_state = 3}, - [1051] = {.lex_state = 2, .external_lex_state = 3}, - [1052] = {.lex_state = 2, .external_lex_state = 3}, - [1053] = {.lex_state = 4, .external_lex_state = 3}, - [1054] = {.lex_state = 2, .external_lex_state = 3}, - [1055] = {.lex_state = 4, .external_lex_state = 3}, - [1056] = {.lex_state = 4, .external_lex_state = 3}, - [1057] = {.lex_state = 4, .external_lex_state = 3}, - [1058] = {.lex_state = 4, .external_lex_state = 3}, - [1059] = {.lex_state = 4, .external_lex_state = 3}, - [1060] = {.lex_state = 2, .external_lex_state = 3}, - [1061] = {.lex_state = 2, .external_lex_state = 3}, - [1062] = {.lex_state = 4, .external_lex_state = 3}, - [1063] = {.lex_state = 4, .external_lex_state = 3}, - [1064] = {.lex_state = 4, .external_lex_state = 3}, - [1065] = {.lex_state = 4, .external_lex_state = 3}, - [1066] = {.lex_state = 4, .external_lex_state = 3}, - [1067] = {.lex_state = 2, .external_lex_state = 3}, - [1068] = {.lex_state = 4, .external_lex_state = 3}, - [1069] = {.lex_state = 2, .external_lex_state = 3}, - [1070] = {.lex_state = 2, .external_lex_state = 3}, - [1071] = {.lex_state = 2, .external_lex_state = 3}, - [1072] = {.lex_state = 4, .external_lex_state = 3}, - [1073] = {.lex_state = 2, .external_lex_state = 3}, - [1074] = {.lex_state = 4, .external_lex_state = 3}, - [1075] = {.lex_state = 4, .external_lex_state = 3}, - [1076] = {.lex_state = 4, .external_lex_state = 3}, - [1077] = {.lex_state = 4, .external_lex_state = 3}, - [1078] = {.lex_state = 4, .external_lex_state = 3}, - [1079] = {.lex_state = 2, .external_lex_state = 3}, - [1080] = {.lex_state = 4, .external_lex_state = 3}, - [1081] = {.lex_state = 2, .external_lex_state = 3}, - [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 2, .external_lex_state = 3}, - [1084] = {.lex_state = 4, .external_lex_state = 3}, - [1085] = {.lex_state = 4, .external_lex_state = 3}, - [1086] = {.lex_state = 4, .external_lex_state = 3}, - [1087] = {.lex_state = 2, .external_lex_state = 3}, - [1088] = {.lex_state = 4, .external_lex_state = 3}, - [1089] = {.lex_state = 4, .external_lex_state = 3}, - [1090] = {.lex_state = 4, .external_lex_state = 3}, - [1091] = {.lex_state = 4, .external_lex_state = 3}, - [1092] = {.lex_state = 4, .external_lex_state = 3}, - [1093] = {.lex_state = 4, .external_lex_state = 3}, - [1094] = {.lex_state = 4, .external_lex_state = 3}, - [1095] = {.lex_state = 4, .external_lex_state = 3}, - [1096] = {.lex_state = 4, .external_lex_state = 3}, - [1097] = {.lex_state = 4, .external_lex_state = 3}, - [1098] = {.lex_state = 4, .external_lex_state = 3}, - [1099] = {.lex_state = 4, .external_lex_state = 3}, - [1100] = {.lex_state = 4, .external_lex_state = 3}, - [1101] = {.lex_state = 4, .external_lex_state = 3}, - [1102] = {.lex_state = 4, .external_lex_state = 3}, - [1103] = {.lex_state = 4, .external_lex_state = 3}, - [1104] = {.lex_state = 4, .external_lex_state = 3}, - [1105] = {.lex_state = 4, .external_lex_state = 3}, - [1106] = {.lex_state = 4, .external_lex_state = 3}, - [1107] = {.lex_state = 4, .external_lex_state = 3}, - [1108] = {.lex_state = 4, .external_lex_state = 3}, - [1109] = {.lex_state = 4, .external_lex_state = 3}, - [1110] = {.lex_state = 4, .external_lex_state = 3}, - [1111] = {.lex_state = 2, .external_lex_state = 3}, - [1112] = {.lex_state = 4, .external_lex_state = 3}, - [1113] = {.lex_state = 4, .external_lex_state = 3}, - [1114] = {.lex_state = 4, .external_lex_state = 3}, - [1115] = {.lex_state = 4, .external_lex_state = 3}, - [1116] = {.lex_state = 4, .external_lex_state = 3}, - [1117] = {.lex_state = 4, .external_lex_state = 3}, - [1118] = {.lex_state = 2, .external_lex_state = 3}, - [1119] = {.lex_state = 2, .external_lex_state = 3}, - [1120] = {.lex_state = 4, .external_lex_state = 3}, - [1121] = {.lex_state = 2, .external_lex_state = 3}, - [1122] = {.lex_state = 4, .external_lex_state = 3}, - [1123] = {.lex_state = 4, .external_lex_state = 3}, - [1124] = {.lex_state = 4, .external_lex_state = 3}, - [1125] = {.lex_state = 4, .external_lex_state = 3}, - [1126] = {.lex_state = 4, .external_lex_state = 3}, - [1127] = {.lex_state = 2, .external_lex_state = 3}, - [1128] = {.lex_state = 2, .external_lex_state = 3}, - [1129] = {.lex_state = 2, .external_lex_state = 3}, - [1130] = {.lex_state = 2, .external_lex_state = 3}, - [1131] = {.lex_state = 7, .external_lex_state = 3}, - [1132] = {.lex_state = 2, .external_lex_state = 3}, + [790] = {.lex_state = 3, .external_lex_state = 3}, + [791] = {.lex_state = 3, .external_lex_state = 3}, + [792] = {.lex_state = 3, .external_lex_state = 3}, + [793] = {.lex_state = 3, .external_lex_state = 3}, + [794] = {.lex_state = 3, .external_lex_state = 3}, + [795] = {.lex_state = 3, .external_lex_state = 3}, + [796] = {.lex_state = 3, .external_lex_state = 3}, + [797] = {.lex_state = 3, .external_lex_state = 3}, + [798] = {.lex_state = 3, .external_lex_state = 3}, + [799] = {.lex_state = 3, .external_lex_state = 3}, + [800] = {.lex_state = 3, .external_lex_state = 3}, + [801] = {.lex_state = 3, .external_lex_state = 3}, + [802] = {.lex_state = 3, .external_lex_state = 3}, + [803] = {.lex_state = 3, .external_lex_state = 3}, + [804] = {.lex_state = 4, .external_lex_state = 3}, + [805] = {.lex_state = 3, .external_lex_state = 3}, + [806] = {.lex_state = 3, .external_lex_state = 3}, + [807] = {.lex_state = 3, .external_lex_state = 3}, + [808] = {.lex_state = 8, .external_lex_state = 3}, + [809] = {.lex_state = 8, .external_lex_state = 3}, + [810] = {.lex_state = 8, .external_lex_state = 3}, + [811] = {.lex_state = 8, .external_lex_state = 3}, + [812] = {.lex_state = 3, .external_lex_state = 3}, + [813] = {.lex_state = 3, .external_lex_state = 3}, + [814] = {.lex_state = 3, .external_lex_state = 3}, + [815] = {.lex_state = 3, .external_lex_state = 3}, + [816] = {.lex_state = 8, .external_lex_state = 3}, + [817] = {.lex_state = 8, .external_lex_state = 3}, + [818] = {.lex_state = 3, .external_lex_state = 3}, + [819] = {.lex_state = 3, .external_lex_state = 3}, + [820] = {.lex_state = 8, .external_lex_state = 3}, + [821] = {.lex_state = 3, .external_lex_state = 3}, + [822] = {.lex_state = 3, .external_lex_state = 3}, + [823] = {.lex_state = 3, .external_lex_state = 3}, + [824] = {.lex_state = 3, .external_lex_state = 3}, + [825] = {.lex_state = 3, .external_lex_state = 3}, + [826] = {.lex_state = 8, .external_lex_state = 3}, + [827] = {.lex_state = 8, .external_lex_state = 3}, + [828] = {.lex_state = 8, .external_lex_state = 3}, + [829] = {.lex_state = 8, .external_lex_state = 3}, + [830] = {.lex_state = 3, .external_lex_state = 3}, + [831] = {.lex_state = 3, .external_lex_state = 3}, + [832] = {.lex_state = 3, .external_lex_state = 3}, + [833] = {.lex_state = 3, .external_lex_state = 3}, + [834] = {.lex_state = 3, .external_lex_state = 3}, + [835] = {.lex_state = 3, .external_lex_state = 3}, + [836] = {.lex_state = 3, .external_lex_state = 3}, + [837] = {.lex_state = 3, .external_lex_state = 3}, + [838] = {.lex_state = 3, .external_lex_state = 3}, + [839] = {.lex_state = 8, .external_lex_state = 3}, + [840] = {.lex_state = 8, .external_lex_state = 3}, + [841] = {.lex_state = 3, .external_lex_state = 3}, + [842] = {.lex_state = 3, .external_lex_state = 3}, + [843] = {.lex_state = 3, .external_lex_state = 3}, + [844] = {.lex_state = 3, .external_lex_state = 3}, + [845] = {.lex_state = 8, .external_lex_state = 3}, + [846] = {.lex_state = 8, .external_lex_state = 3}, + [847] = {.lex_state = 8, .external_lex_state = 3}, + [848] = {.lex_state = 3, .external_lex_state = 3}, + [849] = {.lex_state = 8, .external_lex_state = 3}, + [850] = {.lex_state = 3, .external_lex_state = 3}, + [851] = {.lex_state = 3, .external_lex_state = 3}, + [852] = {.lex_state = 3, .external_lex_state = 3}, + [853] = {.lex_state = 3, .external_lex_state = 3}, + [854] = {.lex_state = 8, .external_lex_state = 3}, + [855] = {.lex_state = 3, .external_lex_state = 3}, + [856] = {.lex_state = 8, .external_lex_state = 3}, + [857] = {.lex_state = 8, .external_lex_state = 3}, + [858] = {.lex_state = 8, .external_lex_state = 3}, + [859] = {.lex_state = 8, .external_lex_state = 3}, + [860] = {.lex_state = 8, .external_lex_state = 3}, + [861] = {.lex_state = 8, .external_lex_state = 3}, + [862] = {.lex_state = 8, .external_lex_state = 3}, + [863] = {.lex_state = 8, .external_lex_state = 3}, + [864] = {.lex_state = 8, .external_lex_state = 3}, + [865] = {.lex_state = 8, .external_lex_state = 3}, + [866] = {.lex_state = 8, .external_lex_state = 3}, + [867] = {.lex_state = 3, .external_lex_state = 3}, + [868] = {.lex_state = 8, .external_lex_state = 3}, + [869] = {.lex_state = 8, .external_lex_state = 3}, + [870] = {.lex_state = 8, .external_lex_state = 3}, + [871] = {.lex_state = 8, .external_lex_state = 3}, + [872] = {.lex_state = 8, .external_lex_state = 3}, + [873] = {.lex_state = 8, .external_lex_state = 3}, + [874] = {.lex_state = 8, .external_lex_state = 3}, + [875] = {.lex_state = 8, .external_lex_state = 3}, + [876] = {.lex_state = 8, .external_lex_state = 3}, + [877] = {.lex_state = 8, .external_lex_state = 3}, + [878] = {.lex_state = 8, .external_lex_state = 3}, + [879] = {.lex_state = 8, .external_lex_state = 3}, + [880] = {.lex_state = 8, .external_lex_state = 3}, + [881] = {.lex_state = 8, .external_lex_state = 3}, + [882] = {.lex_state = 8, .external_lex_state = 3}, + [883] = {.lex_state = 3, .external_lex_state = 3}, + [884] = {.lex_state = 8, .external_lex_state = 3}, + [885] = {.lex_state = 8, .external_lex_state = 3}, + [886] = {.lex_state = 8, .external_lex_state = 3}, + [887] = {.lex_state = 3, .external_lex_state = 3}, + [888] = {.lex_state = 3, .external_lex_state = 3}, + [889] = {.lex_state = 8, .external_lex_state = 3}, + [890] = {.lex_state = 8, .external_lex_state = 3}, + [891] = {.lex_state = 3, .external_lex_state = 3}, + [892] = {.lex_state = 3, .external_lex_state = 3}, + [893] = {.lex_state = 3, .external_lex_state = 3}, + [894] = {.lex_state = 8, .external_lex_state = 3}, + [895] = {.lex_state = 8, .external_lex_state = 3}, + [896] = {.lex_state = 8, .external_lex_state = 3}, + [897] = {.lex_state = 3, .external_lex_state = 3}, + [898] = {.lex_state = 3, .external_lex_state = 3}, + [899] = {.lex_state = 3, .external_lex_state = 3}, + [900] = {.lex_state = 8, .external_lex_state = 3}, + [901] = {.lex_state = 8, .external_lex_state = 3}, + [902] = {.lex_state = 3, .external_lex_state = 3}, + [903] = {.lex_state = 3, .external_lex_state = 3}, + [904] = {.lex_state = 3, .external_lex_state = 3}, + [905] = {.lex_state = 3, .external_lex_state = 3}, + [906] = {.lex_state = 3, .external_lex_state = 3}, + [907] = {.lex_state = 3, .external_lex_state = 3}, + [908] = {.lex_state = 3, .external_lex_state = 3}, + [909] = {.lex_state = 3, .external_lex_state = 3}, + [910] = {.lex_state = 3, .external_lex_state = 3}, + [911] = {.lex_state = 8, .external_lex_state = 3}, + [912] = {.lex_state = 8, .external_lex_state = 3}, + [913] = {.lex_state = 3, .external_lex_state = 3}, + [914] = {.lex_state = 8, .external_lex_state = 3}, + [915] = {.lex_state = 3, .external_lex_state = 3}, + [916] = {.lex_state = 3, .external_lex_state = 3}, + [917] = {.lex_state = 8, .external_lex_state = 3}, + [918] = {.lex_state = 8, .external_lex_state = 3}, + [919] = {.lex_state = 8, .external_lex_state = 3}, + [920] = {.lex_state = 8, .external_lex_state = 3}, + [921] = {.lex_state = 8, .external_lex_state = 3}, + [922] = {.lex_state = 3, .external_lex_state = 3}, + [923] = {.lex_state = 3, .external_lex_state = 3}, + [924] = {.lex_state = 8, .external_lex_state = 3}, + [925] = {.lex_state = 8, .external_lex_state = 3}, + [926] = {.lex_state = 8, .external_lex_state = 3}, + [927] = {.lex_state = 3, .external_lex_state = 3}, + [928] = {.lex_state = 3, .external_lex_state = 3}, + [929] = {.lex_state = 3, .external_lex_state = 3}, + [930] = {.lex_state = 3, .external_lex_state = 3}, + [931] = {.lex_state = 8, .external_lex_state = 3}, + [932] = {.lex_state = 8, .external_lex_state = 3}, + [933] = {.lex_state = 8, .external_lex_state = 3}, + [934] = {.lex_state = 8, .external_lex_state = 3}, + [935] = {.lex_state = 8, .external_lex_state = 3}, + [936] = {.lex_state = 8, .external_lex_state = 3}, + [937] = {.lex_state = 8, .external_lex_state = 3}, + [938] = {.lex_state = 8, .external_lex_state = 3}, + [939] = {.lex_state = 8, .external_lex_state = 3}, + [940] = {.lex_state = 8, .external_lex_state = 3}, + [941] = {.lex_state = 8, .external_lex_state = 3}, + [942] = {.lex_state = 8, .external_lex_state = 3}, + [943] = {.lex_state = 8, .external_lex_state = 3}, + [944] = {.lex_state = 8, .external_lex_state = 3}, + [945] = {.lex_state = 8, .external_lex_state = 3}, + [946] = {.lex_state = 8, .external_lex_state = 3}, + [947] = {.lex_state = 8, .external_lex_state = 3}, + [948] = {.lex_state = 8, .external_lex_state = 3}, + [949] = {.lex_state = 8, .external_lex_state = 3}, + [950] = {.lex_state = 8, .external_lex_state = 3}, + [951] = {.lex_state = 8, .external_lex_state = 3}, + [952] = {.lex_state = 8, .external_lex_state = 3}, + [953] = {.lex_state = 8, .external_lex_state = 3}, + [954] = {.lex_state = 8, .external_lex_state = 3}, + [955] = {.lex_state = 8, .external_lex_state = 3}, + [956] = {.lex_state = 8, .external_lex_state = 3}, + [957] = {.lex_state = 8, .external_lex_state = 3}, + [958] = {.lex_state = 8, .external_lex_state = 3}, + [959] = {.lex_state = 8, .external_lex_state = 3}, + [960] = {.lex_state = 8, .external_lex_state = 3}, + [961] = {.lex_state = 8, .external_lex_state = 3}, + [962] = {.lex_state = 3, .external_lex_state = 3}, + [963] = {.lex_state = 8, .external_lex_state = 3}, + [964] = {.lex_state = 8, .external_lex_state = 3}, + [965] = {.lex_state = 8, .external_lex_state = 3}, + [966] = {.lex_state = 8, .external_lex_state = 3}, + [967] = {.lex_state = 8, .external_lex_state = 3}, + [968] = {.lex_state = 8, .external_lex_state = 3}, + [969] = {.lex_state = 8, .external_lex_state = 3}, + [970] = {.lex_state = 8, .external_lex_state = 3}, + [971] = {.lex_state = 8, .external_lex_state = 3}, + [972] = {.lex_state = 3, .external_lex_state = 3}, + [973] = {.lex_state = 3, .external_lex_state = 3}, + [974] = {.lex_state = 8, .external_lex_state = 3}, + [975] = {.lex_state = 8, .external_lex_state = 3}, + [976] = {.lex_state = 3, .external_lex_state = 3}, + [977] = {.lex_state = 8, .external_lex_state = 3}, + [978] = {.lex_state = 8, .external_lex_state = 3}, + [979] = {.lex_state = 8, .external_lex_state = 3}, + [980] = {.lex_state = 8, .external_lex_state = 3}, + [981] = {.lex_state = 3, .external_lex_state = 3}, + [982] = {.lex_state = 3, .external_lex_state = 3}, + [983] = {.lex_state = 8, .external_lex_state = 3}, + [984] = {.lex_state = 8, .external_lex_state = 3}, + [985] = {.lex_state = 8, .external_lex_state = 3}, + [986] = {.lex_state = 8, .external_lex_state = 3}, + [987] = {.lex_state = 8, .external_lex_state = 3}, + [988] = {.lex_state = 3, .external_lex_state = 3}, + [989] = {.lex_state = 8, .external_lex_state = 3}, + [990] = {.lex_state = 8, .external_lex_state = 3}, + [991] = {.lex_state = 8, .external_lex_state = 3}, + [992] = {.lex_state = 8, .external_lex_state = 3}, + [993] = {.lex_state = 8, .external_lex_state = 3}, + [994] = {.lex_state = 8, .external_lex_state = 3}, + [995] = {.lex_state = 3, .external_lex_state = 3}, + [996] = {.lex_state = 8, .external_lex_state = 3}, + [997] = {.lex_state = 8, .external_lex_state = 3}, + [998] = {.lex_state = 3, .external_lex_state = 3}, + [999] = {.lex_state = 8, .external_lex_state = 3}, + [1000] = {.lex_state = 8, .external_lex_state = 3}, + [1001] = {.lex_state = 3, .external_lex_state = 3}, + [1002] = {.lex_state = 8, .external_lex_state = 3}, + [1003] = {.lex_state = 8, .external_lex_state = 3}, + [1004] = {.lex_state = 8, .external_lex_state = 3}, + [1005] = {.lex_state = 8, .external_lex_state = 3}, + [1006] = {.lex_state = 8, .external_lex_state = 3}, + [1007] = {.lex_state = 3, .external_lex_state = 3}, + [1008] = {.lex_state = 8, .external_lex_state = 3}, + [1009] = {.lex_state = 8, .external_lex_state = 3}, + [1010] = {.lex_state = 8, .external_lex_state = 3}, + [1011] = {.lex_state = 3, .external_lex_state = 3}, + [1012] = {.lex_state = 8, .external_lex_state = 3}, + [1013] = {.lex_state = 8, .external_lex_state = 3}, + [1014] = {.lex_state = 3, .external_lex_state = 3}, + [1015] = {.lex_state = 8, .external_lex_state = 3}, + [1016] = {.lex_state = 8, .external_lex_state = 3}, + [1017] = {.lex_state = 3, .external_lex_state = 3}, + [1018] = {.lex_state = 3, .external_lex_state = 3}, + [1019] = {.lex_state = 8, .external_lex_state = 3}, + [1020] = {.lex_state = 3, .external_lex_state = 3}, + [1021] = {.lex_state = 3, .external_lex_state = 3}, + [1022] = {.lex_state = 8, .external_lex_state = 3}, + [1023] = {.lex_state = 8, .external_lex_state = 3}, + [1024] = {.lex_state = 8, .external_lex_state = 3}, + [1025] = {.lex_state = 8, .external_lex_state = 3}, + [1026] = {.lex_state = 8, .external_lex_state = 3}, + [1027] = {.lex_state = 3, .external_lex_state = 3}, + [1028] = {.lex_state = 8, .external_lex_state = 3}, + [1029] = {.lex_state = 8, .external_lex_state = 3}, + [1030] = {.lex_state = 8, .external_lex_state = 3}, + [1031] = {.lex_state = 3, .external_lex_state = 3}, + [1032] = {.lex_state = 3, .external_lex_state = 3}, + [1033] = {.lex_state = 8, .external_lex_state = 3}, + [1034] = {.lex_state = 8, .external_lex_state = 3}, + [1035] = {.lex_state = 8, .external_lex_state = 3}, + [1036] = {.lex_state = 8, .external_lex_state = 3}, + [1037] = {.lex_state = 3, .external_lex_state = 3}, + [1038] = {.lex_state = 8, .external_lex_state = 3}, + [1039] = {.lex_state = 8, .external_lex_state = 3}, + [1040] = {.lex_state = 8, .external_lex_state = 3}, + [1041] = {.lex_state = 8, .external_lex_state = 3}, + [1042] = {.lex_state = 8, .external_lex_state = 3}, + [1043] = {.lex_state = 8, .external_lex_state = 3}, + [1044] = {.lex_state = 8, .external_lex_state = 3}, + [1045] = {.lex_state = 8, .external_lex_state = 3}, + [1046] = {.lex_state = 8, .external_lex_state = 3}, + [1047] = {.lex_state = 8, .external_lex_state = 3}, + [1048] = {.lex_state = 8, .external_lex_state = 3}, + [1049] = {.lex_state = 8, .external_lex_state = 3}, + [1050] = {.lex_state = 8, .external_lex_state = 3}, + [1051] = {.lex_state = 8, .external_lex_state = 3}, + [1052] = {.lex_state = 8, .external_lex_state = 3}, + [1053] = {.lex_state = 8, .external_lex_state = 3}, + [1054] = {.lex_state = 8, .external_lex_state = 3}, + [1055] = {.lex_state = 8, .external_lex_state = 3}, + [1056] = {.lex_state = 3, .external_lex_state = 3}, + [1057] = {.lex_state = 8, .external_lex_state = 3}, + [1058] = {.lex_state = 3, .external_lex_state = 3}, + [1059] = {.lex_state = 8, .external_lex_state = 3}, + [1060] = {.lex_state = 8, .external_lex_state = 3}, + [1061] = {.lex_state = 8, .external_lex_state = 3}, + [1062] = {.lex_state = 3, .external_lex_state = 3}, + [1063] = {.lex_state = 3, .external_lex_state = 3}, + [1064] = {.lex_state = 8, .external_lex_state = 3}, + [1065] = {.lex_state = 3, .external_lex_state = 3}, + [1066] = {.lex_state = 8, .external_lex_state = 3}, + [1067] = {.lex_state = 8, .external_lex_state = 3}, + [1068] = {.lex_state = 8, .external_lex_state = 3}, + [1069] = {.lex_state = 8, .external_lex_state = 3}, + [1070] = {.lex_state = 8, .external_lex_state = 3}, + [1071] = {.lex_state = 8, .external_lex_state = 3}, + [1072] = {.lex_state = 8, .external_lex_state = 3}, + [1073] = {.lex_state = 8, .external_lex_state = 3}, + [1074] = {.lex_state = 8, .external_lex_state = 3}, + [1075] = {.lex_state = 8, .external_lex_state = 3}, + [1076] = {.lex_state = 8, .external_lex_state = 3}, + [1077] = {.lex_state = 3, .external_lex_state = 3}, + [1078] = {.lex_state = 8, .external_lex_state = 3}, + [1079] = {.lex_state = 8, .external_lex_state = 3}, + [1080] = {.lex_state = 3, .external_lex_state = 3}, + [1081] = {.lex_state = 3, .external_lex_state = 3}, + [1082] = {.lex_state = 8, .external_lex_state = 3}, + [1083] = {.lex_state = 8, .external_lex_state = 3}, + [1084] = {.lex_state = 8, .external_lex_state = 3}, + [1085] = {.lex_state = 8, .external_lex_state = 3}, + [1086] = {.lex_state = 8, .external_lex_state = 3}, + [1087] = {.lex_state = 8, .external_lex_state = 3}, + [1088] = {.lex_state = 8, .external_lex_state = 3}, + [1089] = {.lex_state = 8, .external_lex_state = 3}, + [1090] = {.lex_state = 8, .external_lex_state = 3}, + [1091] = {.lex_state = 8, .external_lex_state = 3}, + [1092] = {.lex_state = 8, .external_lex_state = 3}, + [1093] = {.lex_state = 8, .external_lex_state = 3}, + [1094] = {.lex_state = 8, .external_lex_state = 3}, + [1095] = {.lex_state = 8, .external_lex_state = 3}, + [1096] = {.lex_state = 8, .external_lex_state = 3}, + [1097] = {.lex_state = 8, .external_lex_state = 3}, + [1098] = {.lex_state = 8, .external_lex_state = 3}, + [1099] = {.lex_state = 8, .external_lex_state = 3}, + [1100] = {.lex_state = 8, .external_lex_state = 3}, + [1101] = {.lex_state = 3, .external_lex_state = 3}, + [1102] = {.lex_state = 8, .external_lex_state = 3}, + [1103] = {.lex_state = 8, .external_lex_state = 3}, + [1104] = {.lex_state = 8, .external_lex_state = 3}, + [1105] = {.lex_state = 8, .external_lex_state = 3}, + [1106] = {.lex_state = 8, .external_lex_state = 3}, + [1107] = {.lex_state = 8, .external_lex_state = 3}, + [1108] = {.lex_state = 8, .external_lex_state = 3}, + [1109] = {.lex_state = 8, .external_lex_state = 3}, + [1110] = {.lex_state = 8, .external_lex_state = 3}, + [1111] = {.lex_state = 8, .external_lex_state = 3}, + [1112] = {.lex_state = 8, .external_lex_state = 3}, + [1113] = {.lex_state = 8, .external_lex_state = 3}, + [1114] = {.lex_state = 8, .external_lex_state = 3}, + [1115] = {.lex_state = 8, .external_lex_state = 3}, + [1116] = {.lex_state = 8, .external_lex_state = 3}, + [1117] = {.lex_state = 8, .external_lex_state = 3}, + [1118] = {.lex_state = 8, .external_lex_state = 3}, + [1119] = {.lex_state = 8, .external_lex_state = 3}, + [1120] = {.lex_state = 8, .external_lex_state = 3}, + [1121] = {.lex_state = 3, .external_lex_state = 3}, + [1122] = {.lex_state = 8, .external_lex_state = 3}, + [1123] = {.lex_state = 8, .external_lex_state = 3}, + [1124] = {.lex_state = 8, .external_lex_state = 3}, + [1125] = {.lex_state = 8, .external_lex_state = 3}, + [1126] = {.lex_state = 8, .external_lex_state = 3}, + [1127] = {.lex_state = 8, .external_lex_state = 3}, + [1128] = {.lex_state = 3, .external_lex_state = 3}, + [1129] = {.lex_state = 3, .external_lex_state = 3}, + [1130] = {.lex_state = 5, .external_lex_state = 2}, + [1131] = {.lex_state = 3, .external_lex_state = 3}, + [1132] = {.lex_state = 7, .external_lex_state = 3}, [1133] = {.lex_state = 7, .external_lex_state = 3}, - [1134] = {.lex_state = 7, .external_lex_state = 3}, - [1135] = {.lex_state = 7, .external_lex_state = 3}, - [1136] = {.lex_state = 2, .external_lex_state = 3}, - [1137] = {.lex_state = 5, .external_lex_state = 2}, - [1138] = {.lex_state = 2, .external_lex_state = 3}, - [1139] = {.lex_state = 7, .external_lex_state = 3}, - [1140] = {.lex_state = 2, .external_lex_state = 3}, + [1134] = {.lex_state = 3, .external_lex_state = 3}, + [1135] = {.lex_state = 3, .external_lex_state = 3}, + [1136] = {.lex_state = 3, .external_lex_state = 3}, + [1137] = {.lex_state = 3, .external_lex_state = 3}, + [1138] = {.lex_state = 3, .external_lex_state = 3}, + [1139] = {.lex_state = 3, .external_lex_state = 3}, + [1140] = {.lex_state = 3, .external_lex_state = 3}, [1141] = {.lex_state = 7, .external_lex_state = 3}, - [1142] = {.lex_state = 2, .external_lex_state = 3}, - [1143] = {.lex_state = 2, .external_lex_state = 3}, - [1144] = {.lex_state = 2, .external_lex_state = 3}, - [1145] = {.lex_state = 2, .external_lex_state = 3}, - [1146] = {.lex_state = 2, .external_lex_state = 3}, - [1147] = {.lex_state = 2, .external_lex_state = 3}, - [1148] = {.lex_state = 2, .external_lex_state = 3}, - [1149] = {.lex_state = 5, .external_lex_state = 2}, - [1150] = {.lex_state = 7, .external_lex_state = 3}, + [1142] = {.lex_state = 3, .external_lex_state = 3}, + [1143] = {.lex_state = 7, .external_lex_state = 3}, + [1144] = {.lex_state = 3, .external_lex_state = 3}, + [1145] = {.lex_state = 3, .external_lex_state = 3}, + [1146] = {.lex_state = 3, .external_lex_state = 3}, + [1147] = {.lex_state = 3, .external_lex_state = 3}, + [1148] = {.lex_state = 3, .external_lex_state = 3}, + [1149] = {.lex_state = 7, .external_lex_state = 3}, + [1150] = {.lex_state = 3, .external_lex_state = 3}, [1151] = {.lex_state = 7, .external_lex_state = 3}, - [1152] = {.lex_state = 2, .external_lex_state = 3}, - [1153] = {.lex_state = 7, .external_lex_state = 3}, - [1154] = {.lex_state = 2, .external_lex_state = 3}, - [1155] = {.lex_state = 2, .external_lex_state = 3}, - [1156] = {.lex_state = 2, .external_lex_state = 3}, - [1157] = {.lex_state = 2, .external_lex_state = 3}, - [1158] = {.lex_state = 2, .external_lex_state = 3}, + [1152] = {.lex_state = 3, .external_lex_state = 3}, + [1153] = {.lex_state = 5, .external_lex_state = 2}, + [1154] = {.lex_state = 7, .external_lex_state = 3}, + [1155] = {.lex_state = 7, .external_lex_state = 3}, + [1156] = {.lex_state = 3, .external_lex_state = 3}, + [1157] = {.lex_state = 7, .external_lex_state = 3}, + [1158] = {.lex_state = 3, .external_lex_state = 3}, [1159] = {.lex_state = 5, .external_lex_state = 2}, - [1160] = {.lex_state = 5, .external_lex_state = 2}, - [1161] = {.lex_state = 2, .external_lex_state = 3}, + [1160] = {.lex_state = 3, .external_lex_state = 3}, + [1161] = {.lex_state = 5, .external_lex_state = 2}, [1162] = {.lex_state = 7, .external_lex_state = 3}, [1163] = {.lex_state = 7, .external_lex_state = 3}, [1164] = {.lex_state = 7, .external_lex_state = 3}, [1165] = {.lex_state = 7, .external_lex_state = 3}, - [1166] = {.lex_state = 2, .external_lex_state = 3}, + [1166] = {.lex_state = 7, .external_lex_state = 3}, [1167] = {.lex_state = 7, .external_lex_state = 3}, [1168] = {.lex_state = 7, .external_lex_state = 3}, - [1169] = {.lex_state = 7, .external_lex_state = 3}, + [1169] = {.lex_state = 3, .external_lex_state = 3}, [1170] = {.lex_state = 7, .external_lex_state = 3}, - [1171] = {.lex_state = 2, .external_lex_state = 3}, - [1172] = {.lex_state = 2, .external_lex_state = 3}, + [1171] = {.lex_state = 3, .external_lex_state = 3}, + [1172] = {.lex_state = 5, .external_lex_state = 2}, [1173] = {.lex_state = 5, .external_lex_state = 2}, - [1174] = {.lex_state = 5, .external_lex_state = 2}, - [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, - [1177] = {.lex_state = 2, .external_lex_state = 3}, - [1178] = {.lex_state = 7, .external_lex_state = 3}, - [1179] = {.lex_state = 7, .external_lex_state = 3}, + [1174] = {.lex_state = 3, .external_lex_state = 3}, + [1175] = {.lex_state = 7, .external_lex_state = 3}, + [1176] = {.lex_state = 7, .external_lex_state = 3}, + [1177] = {.lex_state = 3, .external_lex_state = 3}, + [1178] = {.lex_state = 3, .external_lex_state = 3}, + [1179] = {.lex_state = 3, .external_lex_state = 3}, [1180] = {.lex_state = 7, .external_lex_state = 3}, - [1181] = {.lex_state = 2, .external_lex_state = 3}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 7, .external_lex_state = 3}, + [1181] = {.lex_state = 3, .external_lex_state = 3}, + [1182] = {.lex_state = 3, .external_lex_state = 3}, + [1183] = {.lex_state = 3, .external_lex_state = 3}, [1184] = {.lex_state = 7, .external_lex_state = 3}, - [1185] = {.lex_state = 7, .external_lex_state = 3}, - [1186] = {.lex_state = 2, .external_lex_state = 3}, - [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 7, .external_lex_state = 3}, - [1189] = {.lex_state = 2, .external_lex_state = 3}, - [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 2, .external_lex_state = 3}, - [1192] = {.lex_state = 2, .external_lex_state = 3}, - [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 2, .external_lex_state = 3}, - [1195] = {.lex_state = 7, .external_lex_state = 3}, + [1185] = {.lex_state = 3, .external_lex_state = 3}, + [1186] = {.lex_state = 7, .external_lex_state = 3}, + [1187] = {.lex_state = 7, .external_lex_state = 3}, + [1188] = {.lex_state = 3, .external_lex_state = 3}, + [1189] = {.lex_state = 7, .external_lex_state = 3}, + [1190] = {.lex_state = 3, .external_lex_state = 3}, + [1191] = {.lex_state = 3, .external_lex_state = 3}, + [1192] = {.lex_state = 3, .external_lex_state = 3}, + [1193] = {.lex_state = 3, .external_lex_state = 3}, + [1194] = {.lex_state = 3, .external_lex_state = 3}, + [1195] = {.lex_state = 3, .external_lex_state = 3}, [1196] = {.lex_state = 7, .external_lex_state = 3}, - [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, - [1199] = {.lex_state = 2, .external_lex_state = 3}, - [1200] = {.lex_state = 2, .external_lex_state = 3}, - [1201] = {.lex_state = 2, .external_lex_state = 3}, - [1202] = {.lex_state = 2, .external_lex_state = 3}, - [1203] = {.lex_state = 2, .external_lex_state = 3}, - [1204] = {.lex_state = 2, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 3}, - [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 7, .external_lex_state = 3}, - [1208] = {.lex_state = 2, .external_lex_state = 3}, - [1209] = {.lex_state = 2, .external_lex_state = 3}, - [1210] = {.lex_state = 2, .external_lex_state = 3}, - [1211] = {.lex_state = 2, .external_lex_state = 3}, - [1212] = {.lex_state = 2, .external_lex_state = 3}, - [1213] = {.lex_state = 2, .external_lex_state = 3}, - [1214] = {.lex_state = 2, .external_lex_state = 3}, - [1215] = {.lex_state = 2, .external_lex_state = 3}, - [1216] = {.lex_state = 2, .external_lex_state = 3}, - [1217] = {.lex_state = 2, .external_lex_state = 3}, - [1218] = {.lex_state = 2, .external_lex_state = 3}, - [1219] = {.lex_state = 2, .external_lex_state = 3}, - [1220] = {.lex_state = 2, .external_lex_state = 3}, - [1221] = {.lex_state = 2, .external_lex_state = 3}, - [1222] = {.lex_state = 2, .external_lex_state = 3}, - [1223] = {.lex_state = 2, .external_lex_state = 3}, - [1224] = {.lex_state = 2, .external_lex_state = 3}, - [1225] = {.lex_state = 2, .external_lex_state = 3}, - [1226] = {.lex_state = 2, .external_lex_state = 3}, - [1227] = {.lex_state = 2, .external_lex_state = 3}, - [1228] = {.lex_state = 2, .external_lex_state = 3}, - [1229] = {.lex_state = 2, .external_lex_state = 3}, - [1230] = {.lex_state = 2, .external_lex_state = 3}, - [1231] = {.lex_state = 2, .external_lex_state = 3}, - [1232] = {.lex_state = 2, .external_lex_state = 3}, - [1233] = {.lex_state = 2, .external_lex_state = 3}, - [1234] = {.lex_state = 2, .external_lex_state = 3}, - [1235] = {.lex_state = 2, .external_lex_state = 3}, - [1236] = {.lex_state = 2, .external_lex_state = 3}, - [1237] = {.lex_state = 2, .external_lex_state = 3}, - [1238] = {.lex_state = 2, .external_lex_state = 3}, - [1239] = {.lex_state = 2, .external_lex_state = 3}, - [1240] = {.lex_state = 2, .external_lex_state = 3}, - [1241] = {.lex_state = 2, .external_lex_state = 3}, - [1242] = {.lex_state = 2, .external_lex_state = 3}, - [1243] = {.lex_state = 2, .external_lex_state = 3}, - [1244] = {.lex_state = 2, .external_lex_state = 3}, - [1245] = {.lex_state = 2, .external_lex_state = 3}, - [1246] = {.lex_state = 2, .external_lex_state = 3}, - [1247] = {.lex_state = 2, .external_lex_state = 3}, - [1248] = {.lex_state = 2, .external_lex_state = 3}, - [1249] = {.lex_state = 2, .external_lex_state = 3}, - [1250] = {.lex_state = 2, .external_lex_state = 3}, - [1251] = {.lex_state = 2, .external_lex_state = 3}, - [1252] = {.lex_state = 2, .external_lex_state = 3}, - [1253] = {.lex_state = 2, .external_lex_state = 3}, - [1254] = {.lex_state = 2, .external_lex_state = 3}, - [1255] = {.lex_state = 2, .external_lex_state = 3}, - [1256] = {.lex_state = 2, .external_lex_state = 3}, - [1257] = {.lex_state = 2, .external_lex_state = 3}, - [1258] = {.lex_state = 2, .external_lex_state = 3}, - [1259] = {.lex_state = 2, .external_lex_state = 3}, - [1260] = {.lex_state = 2, .external_lex_state = 3}, - [1261] = {.lex_state = 2, .external_lex_state = 3}, - [1262] = {.lex_state = 2, .external_lex_state = 3}, - [1263] = {.lex_state = 2, .external_lex_state = 3}, - [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 2, .external_lex_state = 3}, - [1266] = {.lex_state = 2, .external_lex_state = 3}, - [1267] = {.lex_state = 2, .external_lex_state = 3}, - [1268] = {.lex_state = 2, .external_lex_state = 3}, - [1269] = {.lex_state = 2, .external_lex_state = 3}, - [1270] = {.lex_state = 2, .external_lex_state = 3}, - [1271] = {.lex_state = 2, .external_lex_state = 3}, - [1272] = {.lex_state = 2, .external_lex_state = 3}, - [1273] = {.lex_state = 2, .external_lex_state = 3}, - [1274] = {.lex_state = 2, .external_lex_state = 3}, - [1275] = {.lex_state = 2, .external_lex_state = 3}, - [1276] = {.lex_state = 2, .external_lex_state = 3}, - [1277] = {.lex_state = 2, .external_lex_state = 3}, - [1278] = {.lex_state = 2, .external_lex_state = 3}, - [1279] = {.lex_state = 2, .external_lex_state = 3}, - [1280] = {.lex_state = 2, .external_lex_state = 3}, - [1281] = {.lex_state = 2, .external_lex_state = 3}, - [1282] = {.lex_state = 2, .external_lex_state = 3}, - [1283] = {.lex_state = 2, .external_lex_state = 3}, - [1284] = {.lex_state = 2, .external_lex_state = 3}, - [1285] = {.lex_state = 2, .external_lex_state = 3}, - [1286] = {.lex_state = 2, .external_lex_state = 3}, - [1287] = {.lex_state = 2, .external_lex_state = 3}, - [1288] = {.lex_state = 2, .external_lex_state = 3}, - [1289] = {.lex_state = 7, .external_lex_state = 3}, - [1290] = {.lex_state = 2, .external_lex_state = 3}, - [1291] = {.lex_state = 2, .external_lex_state = 3}, - [1292] = {.lex_state = 2, .external_lex_state = 3}, - [1293] = {.lex_state = 2, .external_lex_state = 3}, - [1294] = {.lex_state = 2, .external_lex_state = 3}, - [1295] = {.lex_state = 7, .external_lex_state = 3}, + [1197] = {.lex_state = 7, .external_lex_state = 3}, + [1198] = {.lex_state = 3, .external_lex_state = 3}, + [1199] = {.lex_state = 3, .external_lex_state = 3}, + [1200] = {.lex_state = 3, .external_lex_state = 3}, + [1201] = {.lex_state = 3, .external_lex_state = 3}, + [1202] = {.lex_state = 3, .external_lex_state = 3}, + [1203] = {.lex_state = 3, .external_lex_state = 3}, + [1204] = {.lex_state = 3, .external_lex_state = 3}, + [1205] = {.lex_state = 3, .external_lex_state = 3}, + [1206] = {.lex_state = 3, .external_lex_state = 3}, + [1207] = {.lex_state = 3, .external_lex_state = 3}, + [1208] = {.lex_state = 3, .external_lex_state = 3}, + [1209] = {.lex_state = 3, .external_lex_state = 3}, + [1210] = {.lex_state = 3, .external_lex_state = 3}, + [1211] = {.lex_state = 3, .external_lex_state = 3}, + [1212] = {.lex_state = 3, .external_lex_state = 3}, + [1213] = {.lex_state = 3, .external_lex_state = 3}, + [1214] = {.lex_state = 3, .external_lex_state = 3}, + [1215] = {.lex_state = 3, .external_lex_state = 3}, + [1216] = {.lex_state = 3, .external_lex_state = 3}, + [1217] = {.lex_state = 3, .external_lex_state = 3}, + [1218] = {.lex_state = 3, .external_lex_state = 3}, + [1219] = {.lex_state = 3, .external_lex_state = 3}, + [1220] = {.lex_state = 3, .external_lex_state = 3}, + [1221] = {.lex_state = 3, .external_lex_state = 3}, + [1222] = {.lex_state = 3, .external_lex_state = 3}, + [1223] = {.lex_state = 3, .external_lex_state = 3}, + [1224] = {.lex_state = 3, .external_lex_state = 3}, + [1225] = {.lex_state = 3, .external_lex_state = 3}, + [1226] = {.lex_state = 3, .external_lex_state = 3}, + [1227] = {.lex_state = 3, .external_lex_state = 3}, + [1228] = {.lex_state = 3, .external_lex_state = 3}, + [1229] = {.lex_state = 3, .external_lex_state = 3}, + [1230] = {.lex_state = 3, .external_lex_state = 3}, + [1231] = {.lex_state = 3, .external_lex_state = 3}, + [1232] = {.lex_state = 3, .external_lex_state = 3}, + [1233] = {.lex_state = 3, .external_lex_state = 3}, + [1234] = {.lex_state = 3, .external_lex_state = 3}, + [1235] = {.lex_state = 3, .external_lex_state = 3}, + [1236] = {.lex_state = 3, .external_lex_state = 3}, + [1237] = {.lex_state = 3, .external_lex_state = 3}, + [1238] = {.lex_state = 3, .external_lex_state = 3}, + [1239] = {.lex_state = 3, .external_lex_state = 3}, + [1240] = {.lex_state = 3, .external_lex_state = 3}, + [1241] = {.lex_state = 3, .external_lex_state = 3}, + [1242] = {.lex_state = 3, .external_lex_state = 3}, + [1243] = {.lex_state = 3, .external_lex_state = 3}, + [1244] = {.lex_state = 3, .external_lex_state = 3}, + [1245] = {.lex_state = 7, .external_lex_state = 3}, + [1246] = {.lex_state = 3, .external_lex_state = 3}, + [1247] = {.lex_state = 3, .external_lex_state = 3}, + [1248] = {.lex_state = 3, .external_lex_state = 3}, + [1249] = {.lex_state = 3, .external_lex_state = 3}, + [1250] = {.lex_state = 3, .external_lex_state = 3}, + [1251] = {.lex_state = 3, .external_lex_state = 3}, + [1252] = {.lex_state = 3, .external_lex_state = 3}, + [1253] = {.lex_state = 3, .external_lex_state = 3}, + [1254] = {.lex_state = 3, .external_lex_state = 3}, + [1255] = {.lex_state = 3, .external_lex_state = 3}, + [1256] = {.lex_state = 3, .external_lex_state = 3}, + [1257] = {.lex_state = 3, .external_lex_state = 3}, + [1258] = {.lex_state = 3, .external_lex_state = 3}, + [1259] = {.lex_state = 3, .external_lex_state = 3}, + [1260] = {.lex_state = 3, .external_lex_state = 3}, + [1261] = {.lex_state = 3, .external_lex_state = 3}, + [1262] = {.lex_state = 3, .external_lex_state = 3}, + [1263] = {.lex_state = 3, .external_lex_state = 3}, + [1264] = {.lex_state = 3, .external_lex_state = 3}, + [1265] = {.lex_state = 3, .external_lex_state = 3}, + [1266] = {.lex_state = 3, .external_lex_state = 3}, + [1267] = {.lex_state = 3, .external_lex_state = 3}, + [1268] = {.lex_state = 3, .external_lex_state = 3}, + [1269] = {.lex_state = 3, .external_lex_state = 3}, + [1270] = {.lex_state = 3, .external_lex_state = 3}, + [1271] = {.lex_state = 3, .external_lex_state = 3}, + [1272] = {.lex_state = 3, .external_lex_state = 3}, + [1273] = {.lex_state = 3, .external_lex_state = 3}, + [1274] = {.lex_state = 3, .external_lex_state = 3}, + [1275] = {.lex_state = 3, .external_lex_state = 3}, + [1276] = {.lex_state = 3, .external_lex_state = 3}, + [1277] = {.lex_state = 3, .external_lex_state = 3}, + [1278] = {.lex_state = 3, .external_lex_state = 3}, + [1279] = {.lex_state = 3, .external_lex_state = 3}, + [1280] = {.lex_state = 3, .external_lex_state = 3}, + [1281] = {.lex_state = 7, .external_lex_state = 3}, + [1282] = {.lex_state = 3, .external_lex_state = 3}, + [1283] = {.lex_state = 3, .external_lex_state = 3}, + [1284] = {.lex_state = 3, .external_lex_state = 3}, + [1285] = {.lex_state = 3, .external_lex_state = 3}, + [1286] = {.lex_state = 3, .external_lex_state = 3}, + [1287] = {.lex_state = 3, .external_lex_state = 3}, + [1288] = {.lex_state = 3, .external_lex_state = 3}, + [1289] = {.lex_state = 3, .external_lex_state = 3}, + [1290] = {.lex_state = 7, .external_lex_state = 3}, + [1291] = {.lex_state = 3, .external_lex_state = 3}, + [1292] = {.lex_state = 3, .external_lex_state = 3}, + [1293] = {.lex_state = 3, .external_lex_state = 3}, + [1294] = {.lex_state = 3, .external_lex_state = 3}, + [1295] = {.lex_state = 3, .external_lex_state = 3}, [1296] = {.lex_state = 7, .external_lex_state = 3}, [1297] = {.lex_state = 7, .external_lex_state = 3}, [1298] = {.lex_state = 7, .external_lex_state = 3}, @@ -15952,8 +13482,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1310] = {.lex_state = 7, .external_lex_state = 3}, [1311] = {.lex_state = 7, .external_lex_state = 3}, [1312] = {.lex_state = 7, .external_lex_state = 3}, - [1313] = {.lex_state = 18, .external_lex_state = 3}, - [1314] = {.lex_state = 18, .external_lex_state = 3}, + [1313] = {.lex_state = 19, .external_lex_state = 3}, + [1314] = {.lex_state = 19, .external_lex_state = 3}, [1315] = {.lex_state = 9, .external_lex_state = 3}, [1316] = {.lex_state = 9, .external_lex_state = 3}, [1317] = {.lex_state = 9, .external_lex_state = 3}, @@ -15966,1244 +13496,1254 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1324] = {.lex_state = 9, .external_lex_state = 3}, [1325] = {.lex_state = 9, .external_lex_state = 3}, [1326] = {.lex_state = 9, .external_lex_state = 3}, - [1327] = {.lex_state = 18, .external_lex_state = 3}, - [1328] = {.lex_state = 7, .external_lex_state = 3}, - [1329] = {.lex_state = 18, .external_lex_state = 3}, - [1330] = {.lex_state = 7, .external_lex_state = 3}, - [1331] = {.lex_state = 18, .external_lex_state = 3}, - [1332] = {.lex_state = 7, .external_lex_state = 3}, - [1333] = {.lex_state = 18, .external_lex_state = 3}, + [1327] = {.lex_state = 7, .external_lex_state = 3}, + [1328] = {.lex_state = 19, .external_lex_state = 3}, + [1329] = {.lex_state = 7, .external_lex_state = 3}, + [1330] = {.lex_state = 19, .external_lex_state = 3}, + [1331] = {.lex_state = 7, .external_lex_state = 3}, + [1332] = {.lex_state = 19, .external_lex_state = 3}, + [1333] = {.lex_state = 7, .external_lex_state = 3}, [1334] = {.lex_state = 7, .external_lex_state = 3}, - [1335] = {.lex_state = 18, .external_lex_state = 3}, - [1336] = {.lex_state = 18, .external_lex_state = 3}, - [1337] = {.lex_state = 7, .external_lex_state = 3}, - [1338] = {.lex_state = 18, .external_lex_state = 3}, - [1339] = {.lex_state = 7, .external_lex_state = 3}, - [1340] = {.lex_state = 18, .external_lex_state = 3}, + [1335] = {.lex_state = 7, .external_lex_state = 3}, + [1336] = {.lex_state = 19, .external_lex_state = 3}, + [1337] = {.lex_state = 19, .external_lex_state = 3}, + [1338] = {.lex_state = 19, .external_lex_state = 3}, + [1339] = {.lex_state = 19, .external_lex_state = 3}, + [1340] = {.lex_state = 19, .external_lex_state = 3}, [1341] = {.lex_state = 7, .external_lex_state = 3}, [1342] = {.lex_state = 7, .external_lex_state = 3}, - [1343] = {.lex_state = 18, .external_lex_state = 3}, + [1343] = {.lex_state = 7, .external_lex_state = 3}, [1344] = {.lex_state = 7, .external_lex_state = 3}, [1345] = {.lex_state = 7, .external_lex_state = 3}, - [1346] = {.lex_state = 7, .external_lex_state = 3}, + [1346] = {.lex_state = 19, .external_lex_state = 3}, [1347] = {.lex_state = 7, .external_lex_state = 3}, [1348] = {.lex_state = 7, .external_lex_state = 3}, - [1349] = {.lex_state = 18, .external_lex_state = 3}, - [1350] = {.lex_state = 18, .external_lex_state = 3}, - [1351] = {.lex_state = 7, .external_lex_state = 3}, - [1352] = {.lex_state = 18, .external_lex_state = 3}, - [1353] = {.lex_state = 18, .external_lex_state = 3}, - [1354] = {.lex_state = 18, .external_lex_state = 3}, + [1349] = {.lex_state = 19, .external_lex_state = 3}, + [1350] = {.lex_state = 19, .external_lex_state = 3}, + [1351] = {.lex_state = 19, .external_lex_state = 3}, + [1352] = {.lex_state = 9, .external_lex_state = 3}, + [1353] = {.lex_state = 7, .external_lex_state = 3}, + [1354] = {.lex_state = 19, .external_lex_state = 3}, [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 18, .external_lex_state = 3}, - [1357] = {.lex_state = 18, .external_lex_state = 3}, - [1358] = {.lex_state = 18, .external_lex_state = 3}, - [1359] = {.lex_state = 7, .external_lex_state = 3}, + [1356] = {.lex_state = 7, .external_lex_state = 3}, + [1357] = {.lex_state = 7, .external_lex_state = 3}, + [1358] = {.lex_state = 7, .external_lex_state = 3}, + [1359] = {.lex_state = 19, .external_lex_state = 3}, [1360] = {.lex_state = 7, .external_lex_state = 3}, - [1361] = {.lex_state = 18, .external_lex_state = 3}, + [1361] = {.lex_state = 19, .external_lex_state = 3}, [1362] = {.lex_state = 7, .external_lex_state = 3}, - [1363] = {.lex_state = 18, .external_lex_state = 3}, - [1364] = {.lex_state = 7, .external_lex_state = 3}, - [1365] = {.lex_state = 18, .external_lex_state = 3}, + [1363] = {.lex_state = 19, .external_lex_state = 3}, + [1364] = {.lex_state = 19, .external_lex_state = 3}, + [1365] = {.lex_state = 7, .external_lex_state = 3}, [1366] = {.lex_state = 7, .external_lex_state = 3}, - [1367] = {.lex_state = 18, .external_lex_state = 3}, + [1367] = {.lex_state = 19, .external_lex_state = 3}, [1368] = {.lex_state = 7, .external_lex_state = 3}, - [1369] = {.lex_state = 9, .external_lex_state = 3}, - [1370] = {.lex_state = 18, .external_lex_state = 3}, - [1371] = {.lex_state = 7, .external_lex_state = 3}, - [1372] = {.lex_state = 7, .external_lex_state = 3}, - [1373] = {.lex_state = 9, .external_lex_state = 3}, - [1374] = {.lex_state = 7, .external_lex_state = 3}, - [1375] = {.lex_state = 9, .external_lex_state = 3}, - [1376] = {.lex_state = 18, .external_lex_state = 3}, - [1377] = {.lex_state = 18, .external_lex_state = 3}, - [1378] = {.lex_state = 18, .external_lex_state = 3}, - [1379] = {.lex_state = 18, .external_lex_state = 3}, - [1380] = {.lex_state = 9, .external_lex_state = 3}, - [1381] = {.lex_state = 18, .external_lex_state = 3}, - [1382] = {.lex_state = 18, .external_lex_state = 3}, - [1383] = {.lex_state = 18, .external_lex_state = 3}, - [1384] = {.lex_state = 18, .external_lex_state = 3}, - [1385] = {.lex_state = 18, .external_lex_state = 3}, - [1386] = {.lex_state = 18, .external_lex_state = 3}, - [1387] = {.lex_state = 18, .external_lex_state = 3}, - [1388] = {.lex_state = 18, .external_lex_state = 3}, - [1389] = {.lex_state = 7, .external_lex_state = 3}, - [1390] = {.lex_state = 18, .external_lex_state = 3}, - [1391] = {.lex_state = 7, .external_lex_state = 3}, - [1392] = {.lex_state = 18, .external_lex_state = 3}, - [1393] = {.lex_state = 18, .external_lex_state = 3}, - [1394] = {.lex_state = 18, .external_lex_state = 3}, + [1369] = {.lex_state = 19, .external_lex_state = 3}, + [1370] = {.lex_state = 19, .external_lex_state = 3}, + [1371] = {.lex_state = 9, .external_lex_state = 3}, + [1372] = {.lex_state = 9, .external_lex_state = 3}, + [1373] = {.lex_state = 19, .external_lex_state = 3}, + [1374] = {.lex_state = 19, .external_lex_state = 3}, + [1375] = {.lex_state = 7, .external_lex_state = 3}, + [1376] = {.lex_state = 19, .external_lex_state = 3}, + [1377] = {.lex_state = 19, .external_lex_state = 3}, + [1378] = {.lex_state = 19, .external_lex_state = 3}, + [1379] = {.lex_state = 19, .external_lex_state = 3}, + [1380] = {.lex_state = 19, .external_lex_state = 3}, + [1381] = {.lex_state = 19, .external_lex_state = 3}, + [1382] = {.lex_state = 19, .external_lex_state = 3}, + [1383] = {.lex_state = 19, .external_lex_state = 3}, + [1384] = {.lex_state = 7, .external_lex_state = 3}, + [1385] = {.lex_state = 19, .external_lex_state = 3}, + [1386] = {.lex_state = 19, .external_lex_state = 3}, + [1387] = {.lex_state = 19, .external_lex_state = 3}, + [1388] = {.lex_state = 19, .external_lex_state = 3}, + [1389] = {.lex_state = 19, .external_lex_state = 3}, + [1390] = {.lex_state = 19, .external_lex_state = 3}, + [1391] = {.lex_state = 19, .external_lex_state = 3}, + [1392] = {.lex_state = 19, .external_lex_state = 3}, + [1393] = {.lex_state = 19, .external_lex_state = 3}, + [1394] = {.lex_state = 19, .external_lex_state = 3}, [1395] = {.lex_state = 7, .external_lex_state = 3}, - [1396] = {.lex_state = 18, .external_lex_state = 3}, - [1397] = {.lex_state = 18, .external_lex_state = 3}, - [1398] = {.lex_state = 18, .external_lex_state = 3}, - [1399] = {.lex_state = 18, .external_lex_state = 3}, - [1400] = {.lex_state = 18, .external_lex_state = 3}, - [1401] = {.lex_state = 18, .external_lex_state = 3}, - [1402] = {.lex_state = 18, .external_lex_state = 3}, - [1403] = {.lex_state = 18, .external_lex_state = 3}, - [1404] = {.lex_state = 18, .external_lex_state = 3}, - [1405] = {.lex_state = 18, .external_lex_state = 3}, + [1396] = {.lex_state = 19, .external_lex_state = 3}, + [1397] = {.lex_state = 9, .external_lex_state = 3}, + [1398] = {.lex_state = 19, .external_lex_state = 3}, + [1399] = {.lex_state = 19, .external_lex_state = 3}, + [1400] = {.lex_state = 19, .external_lex_state = 3}, + [1401] = {.lex_state = 19, .external_lex_state = 3}, + [1402] = {.lex_state = 19, .external_lex_state = 3}, + [1403] = {.lex_state = 19, .external_lex_state = 3}, + [1404] = {.lex_state = 19, .external_lex_state = 3}, + [1405] = {.lex_state = 7, .external_lex_state = 3}, [1406] = {.lex_state = 7, .external_lex_state = 3}, - [1407] = {.lex_state = 18, .external_lex_state = 3}, + [1407] = {.lex_state = 19, .external_lex_state = 3}, [1408] = {.lex_state = 7, .external_lex_state = 3}, - [1409] = {.lex_state = 7, .external_lex_state = 3}, + [1409] = {.lex_state = 19, .external_lex_state = 3}, [1410] = {.lex_state = 7, .external_lex_state = 3}, [1411] = {.lex_state = 7, .external_lex_state = 3}, [1412] = {.lex_state = 7, .external_lex_state = 3}, [1413] = {.lex_state = 7, .external_lex_state = 3}, - [1414] = {.lex_state = 18, .external_lex_state = 3}, - [1415] = {.lex_state = 18, .external_lex_state = 3}, - [1416] = {.lex_state = 7, .external_lex_state = 3}, + [1414] = {.lex_state = 7, .external_lex_state = 3}, + [1415] = {.lex_state = 7, .external_lex_state = 3}, + [1416] = {.lex_state = 19, .external_lex_state = 3}, [1417] = {.lex_state = 7, .external_lex_state = 3}, - [1418] = {.lex_state = 18, .external_lex_state = 3}, - [1419] = {.lex_state = 9, .external_lex_state = 3}, - [1420] = {.lex_state = 18, .external_lex_state = 3}, - [1421] = {.lex_state = 18, .external_lex_state = 3}, - [1422] = {.lex_state = 18, .external_lex_state = 3}, - [1423] = {.lex_state = 9, .external_lex_state = 3}, - [1424] = {.lex_state = 9, .external_lex_state = 3}, - [1425] = {.lex_state = 18, .external_lex_state = 3}, - [1426] = {.lex_state = 18, .external_lex_state = 3}, - [1427] = {.lex_state = 18, .external_lex_state = 3}, - [1428] = {.lex_state = 18, .external_lex_state = 3}, - [1429] = {.lex_state = 18, .external_lex_state = 3}, - [1430] = {.lex_state = 9, .external_lex_state = 3}, - [1431] = {.lex_state = 9, .external_lex_state = 3}, - [1432] = {.lex_state = 18, .external_lex_state = 3}, - [1433] = {.lex_state = 9, .external_lex_state = 3}, - [1434] = {.lex_state = 18, .external_lex_state = 3}, - [1435] = {.lex_state = 9, .external_lex_state = 3}, - [1436] = {.lex_state = 18, .external_lex_state = 3}, - [1437] = {.lex_state = 18, .external_lex_state = 3}, - [1438] = {.lex_state = 18, .external_lex_state = 3}, - [1439] = {.lex_state = 7, .external_lex_state = 3}, - [1440] = {.lex_state = 18, .external_lex_state = 3}, - [1441] = {.lex_state = 18, .external_lex_state = 3}, - [1442] = {.lex_state = 18, .external_lex_state = 3}, - [1443] = {.lex_state = 18, .external_lex_state = 3}, - [1444] = {.lex_state = 18, .external_lex_state = 3}, - [1445] = {.lex_state = 9, .external_lex_state = 3}, - [1446] = {.lex_state = 18, .external_lex_state = 3}, - [1447] = {.lex_state = 18, .external_lex_state = 3}, - [1448] = {.lex_state = 18, .external_lex_state = 3}, - [1449] = {.lex_state = 9, .external_lex_state = 3}, - [1450] = {.lex_state = 18, .external_lex_state = 3}, - [1451] = {.lex_state = 18, .external_lex_state = 3}, - [1452] = {.lex_state = 18, .external_lex_state = 3}, - [1453] = {.lex_state = 18, .external_lex_state = 3}, - [1454] = {.lex_state = 18, .external_lex_state = 3}, - [1455] = {.lex_state = 18, .external_lex_state = 3}, - [1456] = {.lex_state = 18, .external_lex_state = 3}, + [1418] = {.lex_state = 19, .external_lex_state = 3}, + [1419] = {.lex_state = 19, .external_lex_state = 3}, + [1420] = {.lex_state = 19, .external_lex_state = 3}, + [1421] = {.lex_state = 19, .external_lex_state = 3}, + [1422] = {.lex_state = 19, .external_lex_state = 3}, + [1423] = {.lex_state = 19, .external_lex_state = 3}, + [1424] = {.lex_state = 19, .external_lex_state = 3}, + [1425] = {.lex_state = 19, .external_lex_state = 3}, + [1426] = {.lex_state = 19, .external_lex_state = 3}, + [1427] = {.lex_state = 7, .external_lex_state = 3}, + [1428] = {.lex_state = 19, .external_lex_state = 3}, + [1429] = {.lex_state = 19, .external_lex_state = 3}, + [1430] = {.lex_state = 19, .external_lex_state = 3}, + [1431] = {.lex_state = 19, .external_lex_state = 3}, + [1432] = {.lex_state = 19, .external_lex_state = 3}, + [1433] = {.lex_state = 19, .external_lex_state = 3}, + [1434] = {.lex_state = 19, .external_lex_state = 3}, + [1435] = {.lex_state = 19, .external_lex_state = 3}, + [1436] = {.lex_state = 9, .external_lex_state = 3}, + [1437] = {.lex_state = 19, .external_lex_state = 3}, + [1438] = {.lex_state = 19, .external_lex_state = 3}, + [1439] = {.lex_state = 19, .external_lex_state = 3}, + [1440] = {.lex_state = 9, .external_lex_state = 3}, + [1441] = {.lex_state = 9, .external_lex_state = 3}, + [1442] = {.lex_state = 9, .external_lex_state = 3}, + [1443] = {.lex_state = 19, .external_lex_state = 3}, + [1444] = {.lex_state = 9, .external_lex_state = 3}, + [1445] = {.lex_state = 19, .external_lex_state = 3}, + [1446] = {.lex_state = 19, .external_lex_state = 3}, + [1447] = {.lex_state = 9, .external_lex_state = 3}, + [1448] = {.lex_state = 9, .external_lex_state = 3}, + [1449] = {.lex_state = 19, .external_lex_state = 3}, + [1450] = {.lex_state = 19, .external_lex_state = 3}, + [1451] = {.lex_state = 9, .external_lex_state = 3}, + [1452] = {.lex_state = 19, .external_lex_state = 3}, + [1453] = {.lex_state = 19, .external_lex_state = 3}, + [1454] = {.lex_state = 19, .external_lex_state = 3}, + [1455] = {.lex_state = 19, .external_lex_state = 3}, + [1456] = {.lex_state = 9, .external_lex_state = 3}, [1457] = {.lex_state = 9, .external_lex_state = 3}, - [1458] = {.lex_state = 18, .external_lex_state = 3}, + [1458] = {.lex_state = 9, .external_lex_state = 3}, [1459] = {.lex_state = 9, .external_lex_state = 3}, - [1460] = {.lex_state = 18, .external_lex_state = 3}, - [1461] = {.lex_state = 9, .external_lex_state = 3}, + [1460] = {.lex_state = 19, .external_lex_state = 3}, + [1461] = {.lex_state = 19, .external_lex_state = 3}, [1462] = {.lex_state = 9, .external_lex_state = 3}, [1463] = {.lex_state = 9, .external_lex_state = 3}, - [1464] = {.lex_state = 14, .external_lex_state = 3}, + [1464] = {.lex_state = 15, .external_lex_state = 3}, [1465] = {.lex_state = 9, .external_lex_state = 3}, [1466] = {.lex_state = 9, .external_lex_state = 3}, - [1467] = {.lex_state = 14, .external_lex_state = 3}, + [1467] = {.lex_state = 15, .external_lex_state = 3}, [1468] = {.lex_state = 9, .external_lex_state = 3}, [1469] = {.lex_state = 9, .external_lex_state = 3}, - [1470] = {.lex_state = 9, .external_lex_state = 3}, - [1471] = {.lex_state = 14, .external_lex_state = 3}, - [1472] = {.lex_state = 14, .external_lex_state = 3}, - [1473] = {.lex_state = 9, .external_lex_state = 3}, - [1474] = {.lex_state = 18, .external_lex_state = 3}, - [1475] = {.lex_state = 15, .external_lex_state = 3}, + [1470] = {.lex_state = 15, .external_lex_state = 3}, + [1471] = {.lex_state = 9, .external_lex_state = 3}, + [1472] = {.lex_state = 9, .external_lex_state = 3}, + [1473] = {.lex_state = 15, .external_lex_state = 3}, + [1474] = {.lex_state = 7, .external_lex_state = 3}, + [1475] = {.lex_state = 7, .external_lex_state = 3}, [1476] = {.lex_state = 7, .external_lex_state = 3}, - [1477] = {.lex_state = 9, .external_lex_state = 3}, + [1477] = {.lex_state = 7, .external_lex_state = 3}, [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 7, .external_lex_state = 3}, - [1480] = {.lex_state = 7, .external_lex_state = 3}, - [1481] = {.lex_state = 7, .external_lex_state = 3}, - [1482] = {.lex_state = 18, .external_lex_state = 3}, - [1483] = {.lex_state = 18, .external_lex_state = 3}, + [1479] = {.lex_state = 9, .external_lex_state = 3}, + [1480] = {.lex_state = 16, .external_lex_state = 3}, + [1481] = {.lex_state = 19, .external_lex_state = 3}, + [1482] = {.lex_state = 7, .external_lex_state = 3}, + [1483] = {.lex_state = 16, .external_lex_state = 3}, [1484] = {.lex_state = 7, .external_lex_state = 3}, [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 3}, + [1486] = {.lex_state = 19, .external_lex_state = 3}, [1487] = {.lex_state = 7, .external_lex_state = 3}, [1488] = {.lex_state = 7, .external_lex_state = 3}, - [1489] = {.lex_state = 7, .external_lex_state = 3}, + [1489] = {.lex_state = 11, .external_lex_state = 4}, [1490] = {.lex_state = 7, .external_lex_state = 3}, - [1491] = {.lex_state = 18, .external_lex_state = 3}, - [1492] = {.lex_state = 7, .external_lex_state = 3}, - [1493] = {.lex_state = 18, .external_lex_state = 3}, - [1494] = {.lex_state = 7, .external_lex_state = 3}, + [1491] = {.lex_state = 7, .external_lex_state = 3}, + [1492] = {.lex_state = 19, .external_lex_state = 3}, + [1493] = {.lex_state = 7, .external_lex_state = 3}, + [1494] = {.lex_state = 19, .external_lex_state = 3}, [1495] = {.lex_state = 7, .external_lex_state = 3}, [1496] = {.lex_state = 7, .external_lex_state = 3}, - [1497] = {.lex_state = 18, .external_lex_state = 3}, - [1498] = {.lex_state = 7, .external_lex_state = 3}, - [1499] = {.lex_state = 18, .external_lex_state = 3}, + [1497] = {.lex_state = 7, .external_lex_state = 3}, + [1498] = {.lex_state = 8, .external_lex_state = 3}, + [1499] = {.lex_state = 7, .external_lex_state = 3}, [1500] = {.lex_state = 7, .external_lex_state = 3}, [1501] = {.lex_state = 7, .external_lex_state = 3}, [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 15, .external_lex_state = 3}, - [1505] = {.lex_state = 4, .external_lex_state = 3}, - [1506] = {.lex_state = 18, .external_lex_state = 3}, - [1507] = {.lex_state = 18, .external_lex_state = 3}, - [1508] = {.lex_state = 7, .external_lex_state = 3}, + [1503] = {.lex_state = 19, .external_lex_state = 3}, + [1504] = {.lex_state = 7, .external_lex_state = 3}, + [1505] = {.lex_state = 7, .external_lex_state = 3}, + [1506] = {.lex_state = 11, .external_lex_state = 4}, + [1507] = {.lex_state = 11, .external_lex_state = 4}, + [1508] = {.lex_state = 11, .external_lex_state = 4}, [1509] = {.lex_state = 7, .external_lex_state = 3}, [1510] = {.lex_state = 7, .external_lex_state = 3}, [1511] = {.lex_state = 7, .external_lex_state = 3}, [1512] = {.lex_state = 7, .external_lex_state = 3}, [1513] = {.lex_state = 7, .external_lex_state = 3}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, + [1514] = {.lex_state = 19, .external_lex_state = 3}, [1515] = {.lex_state = 7, .external_lex_state = 3}, - [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 7, .external_lex_state = 3}, + [1516] = {.lex_state = 11, .external_lex_state = 4}, + [1517] = {.lex_state = 11, .external_lex_state = 4}, [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 7, .external_lex_state = 3}, + [1519] = {.lex_state = 16, .external_lex_state = 3}, [1520] = {.lex_state = 7, .external_lex_state = 3}, [1521] = {.lex_state = 7, .external_lex_state = 3}, - [1522] = {.lex_state = 15, .external_lex_state = 3}, - [1523] = {.lex_state = 7, .external_lex_state = 3}, - [1524] = {.lex_state = 7, .external_lex_state = 3}, + [1522] = {.lex_state = 7, .external_lex_state = 3}, + [1523] = {.lex_state = 11, .external_lex_state = 4}, + [1524] = {.lex_state = 19, .external_lex_state = 3}, [1525] = {.lex_state = 7, .external_lex_state = 3}, [1526] = {.lex_state = 7, .external_lex_state = 3}, [1527] = {.lex_state = 7, .external_lex_state = 3}, - [1528] = {.lex_state = 4, .external_lex_state = 3}, - [1529] = {.lex_state = 15, .external_lex_state = 3}, + [1528] = {.lex_state = 19, .external_lex_state = 3}, + [1529] = {.lex_state = 11, .external_lex_state = 4}, [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 15, .external_lex_state = 3}, - [1532] = {.lex_state = 15, .external_lex_state = 3}, - [1533] = {.lex_state = 15, .external_lex_state = 3}, - [1534] = {.lex_state = 15, .external_lex_state = 3}, - [1535] = {.lex_state = 7, .external_lex_state = 3}, - [1536] = {.lex_state = 15, .external_lex_state = 3}, + [1531] = {.lex_state = 11, .external_lex_state = 4}, + [1532] = {.lex_state = 19, .external_lex_state = 3}, + [1533] = {.lex_state = 7, .external_lex_state = 3}, + [1534] = {.lex_state = 7, .external_lex_state = 3}, + [1535] = {.lex_state = 16, .external_lex_state = 3}, + [1536] = {.lex_state = 7, .external_lex_state = 3}, [1537] = {.lex_state = 7, .external_lex_state = 3}, - [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, + [1538] = {.lex_state = 16, .external_lex_state = 3}, + [1539] = {.lex_state = 61, .external_lex_state = 3}, [1540] = {.lex_state = 7, .external_lex_state = 3}, [1541] = {.lex_state = 7, .external_lex_state = 3}, - [1542] = {.lex_state = 7, .external_lex_state = 3}, + [1542] = {.lex_state = 8, .external_lex_state = 3}, [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 0, .external_lex_state = 3}, - [1545] = {.lex_state = 4, .external_lex_state = 3}, - [1546] = {.lex_state = 4, .external_lex_state = 3}, + [1544] = {.lex_state = 8, .external_lex_state = 3}, + [1545] = {.lex_state = 7, .external_lex_state = 3}, + [1546] = {.lex_state = 16, .external_lex_state = 3}, [1547] = {.lex_state = 7, .external_lex_state = 3}, - [1548] = {.lex_state = 15, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, + [1548] = {.lex_state = 16, .external_lex_state = 3}, + [1549] = {.lex_state = 16, .external_lex_state = 3}, [1550] = {.lex_state = 7, .external_lex_state = 3}, - [1551] = {.lex_state = 7, .external_lex_state = 3}, - [1552] = {.lex_state = 4, .external_lex_state = 3}, + [1551] = {.lex_state = 8, .external_lex_state = 3}, + [1552] = {.lex_state = 16, .external_lex_state = 3}, [1553] = {.lex_state = 7, .external_lex_state = 3}, [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 15, .external_lex_state = 3}, - [1556] = {.lex_state = 7, .external_lex_state = 3}, - [1557] = {.lex_state = 4, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, + [1555] = {.lex_state = 7, .external_lex_state = 3}, + [1556] = {.lex_state = 8, .external_lex_state = 3}, + [1557] = {.lex_state = 7, .external_lex_state = 3}, + [1558] = {.lex_state = 15, .external_lex_state = 3}, [1559] = {.lex_state = 7, .external_lex_state = 3}, - [1560] = {.lex_state = 7, .external_lex_state = 3}, - [1561] = {.lex_state = 14, .external_lex_state = 3}, + [1560] = {.lex_state = 16, .external_lex_state = 3}, + [1561] = {.lex_state = 7, .external_lex_state = 3}, [1562] = {.lex_state = 7, .external_lex_state = 3}, - [1563] = {.lex_state = 15, .external_lex_state = 3}, + [1563] = {.lex_state = 7, .external_lex_state = 3}, [1564] = {.lex_state = 7, .external_lex_state = 3}, - [1565] = {.lex_state = 4, .external_lex_state = 3}, - [1566] = {.lex_state = 0, .external_lex_state = 3}, - [1567] = {.lex_state = 7, .external_lex_state = 3}, + [1565] = {.lex_state = 16, .external_lex_state = 3}, + [1566] = {.lex_state = 16, .external_lex_state = 3}, + [1567] = {.lex_state = 8, .external_lex_state = 3}, [1568] = {.lex_state = 7, .external_lex_state = 3}, [1569] = {.lex_state = 7, .external_lex_state = 3}, [1570] = {.lex_state = 7, .external_lex_state = 3}, [1571] = {.lex_state = 7, .external_lex_state = 3}, [1572] = {.lex_state = 7, .external_lex_state = 3}, [1573] = {.lex_state = 7, .external_lex_state = 3}, - [1574] = {.lex_state = 15, .external_lex_state = 3}, + [1574] = {.lex_state = 61, .external_lex_state = 3}, [1575] = {.lex_state = 7, .external_lex_state = 3}, - [1576] = {.lex_state = 0, .external_lex_state = 3}, + [1576] = {.lex_state = 7, .external_lex_state = 3}, [1577] = {.lex_state = 7, .external_lex_state = 3}, - [1578] = {.lex_state = 0, .external_lex_state = 3}, - [1579] = {.lex_state = 0, .external_lex_state = 3}, - [1580] = {.lex_state = 0, .external_lex_state = 3}, - [1581] = {.lex_state = 0, .external_lex_state = 3}, - [1582] = {.lex_state = 0, .external_lex_state = 3}, - [1583] = {.lex_state = 7, .external_lex_state = 3}, - [1584] = {.lex_state = 0, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, + [1578] = {.lex_state = 61, .external_lex_state = 3}, + [1579] = {.lex_state = 61, .external_lex_state = 3}, + [1580] = {.lex_state = 61, .external_lex_state = 3}, + [1581] = {.lex_state = 7, .external_lex_state = 3}, + [1582] = {.lex_state = 7, .external_lex_state = 3}, + [1583] = {.lex_state = 61, .external_lex_state = 3}, + [1584] = {.lex_state = 61, .external_lex_state = 3}, + [1585] = {.lex_state = 61, .external_lex_state = 3}, [1586] = {.lex_state = 7, .external_lex_state = 3}, - [1587] = {.lex_state = 0, .external_lex_state = 3}, + [1587] = {.lex_state = 61, .external_lex_state = 3}, [1588] = {.lex_state = 7, .external_lex_state = 3}, - [1589] = {.lex_state = 15, .external_lex_state = 3}, - [1590] = {.lex_state = 0, .external_lex_state = 3}, - [1591] = {.lex_state = 7, .external_lex_state = 3}, - [1592] = {.lex_state = 0, .external_lex_state = 3}, - [1593] = {.lex_state = 7, .external_lex_state = 3}, - [1594] = {.lex_state = 0, .external_lex_state = 3}, - [1595] = {.lex_state = 7, .external_lex_state = 3}, - [1596] = {.lex_state = 4, .external_lex_state = 3}, - [1597] = {.lex_state = 0, .external_lex_state = 3}, - [1598] = {.lex_state = 0, .external_lex_state = 3}, - [1599] = {.lex_state = 0, .external_lex_state = 3}, - [1600] = {.lex_state = 7, .external_lex_state = 3}, - [1601] = {.lex_state = 0, .external_lex_state = 3}, - [1602] = {.lex_state = 0, .external_lex_state = 3}, - [1603] = {.lex_state = 0, .external_lex_state = 3}, - [1604] = {.lex_state = 15, .external_lex_state = 3}, - [1605] = {.lex_state = 0, .external_lex_state = 3}, - [1606] = {.lex_state = 0, .external_lex_state = 3}, - [1607] = {.lex_state = 15, .external_lex_state = 3}, - [1608] = {.lex_state = 0, .external_lex_state = 3}, - [1609] = {.lex_state = 7, .external_lex_state = 3}, - [1610] = {.lex_state = 0, .external_lex_state = 3}, + [1589] = {.lex_state = 61, .external_lex_state = 3}, + [1590] = {.lex_state = 61, .external_lex_state = 3}, + [1591] = {.lex_state = 61, .external_lex_state = 3}, + [1592] = {.lex_state = 61, .external_lex_state = 3}, + [1593] = {.lex_state = 61, .external_lex_state = 3}, + [1594] = {.lex_state = 8, .external_lex_state = 3}, + [1595] = {.lex_state = 61, .external_lex_state = 3}, + [1596] = {.lex_state = 61, .external_lex_state = 3}, + [1597] = {.lex_state = 7, .external_lex_state = 3}, + [1598] = {.lex_state = 61, .external_lex_state = 3}, + [1599] = {.lex_state = 7, .external_lex_state = 3}, + [1600] = {.lex_state = 61, .external_lex_state = 3}, + [1601] = {.lex_state = 7, .external_lex_state = 3}, + [1602] = {.lex_state = 7, .external_lex_state = 3}, + [1603] = {.lex_state = 16, .external_lex_state = 3}, + [1604] = {.lex_state = 61, .external_lex_state = 3}, + [1605] = {.lex_state = 61, .external_lex_state = 3}, + [1606] = {.lex_state = 61, .external_lex_state = 3}, + [1607] = {.lex_state = 16, .external_lex_state = 3}, + [1608] = {.lex_state = 61, .external_lex_state = 3}, + [1609] = {.lex_state = 16, .external_lex_state = 3}, + [1610] = {.lex_state = 7, .external_lex_state = 3}, [1611] = {.lex_state = 7, .external_lex_state = 3}, [1612] = {.lex_state = 7, .external_lex_state = 3}, [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, - [1615] = {.lex_state = 18, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, + [1614] = {.lex_state = 16, .external_lex_state = 3}, + [1615] = {.lex_state = 7, .external_lex_state = 3}, + [1616] = {.lex_state = 61, .external_lex_state = 3}, [1617] = {.lex_state = 7, .external_lex_state = 3}, - [1618] = {.lex_state = 10, .external_lex_state = 3}, + [1618] = {.lex_state = 8, .external_lex_state = 3}, [1619] = {.lex_state = 7, .external_lex_state = 3}, - [1620] = {.lex_state = 10, .external_lex_state = 3}, + [1620] = {.lex_state = 7, .external_lex_state = 3}, [1621] = {.lex_state = 7, .external_lex_state = 3}, - [1622] = {.lex_state = 7, .external_lex_state = 3}, + [1622] = {.lex_state = 0, .external_lex_state = 3}, [1623] = {.lex_state = 7, .external_lex_state = 3}, [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, - [1626] = {.lex_state = 7, .external_lex_state = 3}, + [1625] = {.lex_state = 16, .external_lex_state = 3}, + [1626] = {.lex_state = 19, .external_lex_state = 3}, [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 58, .external_lex_state = 3}, - [1629] = {.lex_state = 18, .external_lex_state = 3}, - [1630] = {.lex_state = 18, .external_lex_state = 3}, - [1631] = {.lex_state = 7, .external_lex_state = 3}, - [1632] = {.lex_state = 7, .external_lex_state = 3}, + [1628] = {.lex_state = 7, .external_lex_state = 3}, + [1629] = {.lex_state = 19, .external_lex_state = 3}, + [1630] = {.lex_state = 7, .external_lex_state = 3}, + [1631] = {.lex_state = 61, .external_lex_state = 3}, + [1632] = {.lex_state = 61, .external_lex_state = 3}, [1633] = {.lex_state = 7, .external_lex_state = 3}, [1634] = {.lex_state = 7, .external_lex_state = 3}, - [1635] = {.lex_state = 14, .external_lex_state = 3}, + [1635] = {.lex_state = 7, .external_lex_state = 3}, [1636] = {.lex_state = 7, .external_lex_state = 3}, [1637] = {.lex_state = 7, .external_lex_state = 3}, [1638] = {.lex_state = 7, .external_lex_state = 3}, [1639] = {.lex_state = 7, .external_lex_state = 3}, [1640] = {.lex_state = 7, .external_lex_state = 3}, - [1641] = {.lex_state = 14, .external_lex_state = 3}, + [1641] = {.lex_state = 7, .external_lex_state = 3}, [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, - [1644] = {.lex_state = 10, .external_lex_state = 3}, + [1643] = {.lex_state = 10, .external_lex_state = 3}, + [1644] = {.lex_state = 19, .external_lex_state = 3}, [1645] = {.lex_state = 7, .external_lex_state = 3}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, + [1646] = {.lex_state = 0, .external_lex_state = 3}, [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 3}, - [1649] = {.lex_state = 7, .external_lex_state = 3}, + [1648] = {.lex_state = 10, .external_lex_state = 3}, + [1649] = {.lex_state = 11, .external_lex_state = 4}, [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, + [1651] = {.lex_state = 19, .external_lex_state = 3}, [1652] = {.lex_state = 7, .external_lex_state = 3}, - [1653] = {.lex_state = 4, .external_lex_state = 3}, - [1654] = {.lex_state = 18, .external_lex_state = 3}, + [1653] = {.lex_state = 7, .external_lex_state = 3}, + [1654] = {.lex_state = 10, .external_lex_state = 3}, [1655] = {.lex_state = 7, .external_lex_state = 3}, [1656] = {.lex_state = 7, .external_lex_state = 3}, [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 0, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 10, .external_lex_state = 3}, + [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1659] = {.lex_state = 19, .external_lex_state = 3}, + [1660] = {.lex_state = 8, .external_lex_state = 3}, + [1661] = {.lex_state = 7, .external_lex_state = 3}, [1662] = {.lex_state = 7, .external_lex_state = 3}, [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 0, .external_lex_state = 3}, - [1666] = {.lex_state = 18, .external_lex_state = 3}, + [1664] = {.lex_state = 19, .external_lex_state = 3}, + [1665] = {.lex_state = 7, .external_lex_state = 3}, + [1666] = {.lex_state = 7, .external_lex_state = 3}, [1667] = {.lex_state = 7, .external_lex_state = 3}, [1668] = {.lex_state = 7, .external_lex_state = 3}, [1669] = {.lex_state = 7, .external_lex_state = 3}, [1670] = {.lex_state = 7, .external_lex_state = 3}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, + [1671] = {.lex_state = 19, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, - [1673] = {.lex_state = 4, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, + [1673] = {.lex_state = 19, .external_lex_state = 3}, + [1674] = {.lex_state = 19, .external_lex_state = 3}, [1675] = {.lex_state = 7, .external_lex_state = 3}, [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 18, .external_lex_state = 3}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, + [1677] = {.lex_state = 7, .external_lex_state = 3}, + [1678] = {.lex_state = 8, .external_lex_state = 3}, [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 10, .external_lex_state = 3}, - [1681] = {.lex_state = 58, .external_lex_state = 3}, - [1682] = {.lex_state = 4, .external_lex_state = 3}, + [1680] = {.lex_state = 19, .external_lex_state = 3}, + [1681] = {.lex_state = 7, .external_lex_state = 3}, + [1682] = {.lex_state = 7, .external_lex_state = 3}, [1683] = {.lex_state = 7, .external_lex_state = 3}, [1684] = {.lex_state = 7, .external_lex_state = 3}, [1685] = {.lex_state = 7, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, - [1687] = {.lex_state = 18, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 3}, - [1690] = {.lex_state = 18, .external_lex_state = 3}, - [1691] = {.lex_state = 18, .external_lex_state = 3}, + [1686] = {.lex_state = 10, .external_lex_state = 3}, + [1687] = {.lex_state = 7, .external_lex_state = 3}, + [1688] = {.lex_state = 11, .external_lex_state = 4}, + [1689] = {.lex_state = 0, .external_lex_state = 3}, + [1690] = {.lex_state = 7, .external_lex_state = 3}, + [1691] = {.lex_state = 7, .external_lex_state = 3}, [1692] = {.lex_state = 7, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 15, .external_lex_state = 3}, - [1696] = {.lex_state = 4, .external_lex_state = 3}, - [1697] = {.lex_state = 10, .external_lex_state = 3}, + [1694] = {.lex_state = 10, .external_lex_state = 3}, + [1695] = {.lex_state = 8, .external_lex_state = 3}, + [1696] = {.lex_state = 7, .external_lex_state = 3}, + [1697] = {.lex_state = 7, .external_lex_state = 3}, [1698] = {.lex_state = 7, .external_lex_state = 3}, - [1699] = {.lex_state = 0, .external_lex_state = 3}, - [1700] = {.lex_state = 18, .external_lex_state = 3}, - [1701] = {.lex_state = 7, .external_lex_state = 3}, + [1699] = {.lex_state = 15, .external_lex_state = 3}, + [1700] = {.lex_state = 7, .external_lex_state = 3}, + [1701] = {.lex_state = 8, .external_lex_state = 3}, [1702] = {.lex_state = 7, .external_lex_state = 3}, [1703] = {.lex_state = 7, .external_lex_state = 3}, [1704] = {.lex_state = 7, .external_lex_state = 3}, [1705] = {.lex_state = 7, .external_lex_state = 3}, [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 18, .external_lex_state = 3}, - [1708] = {.lex_state = 18, .external_lex_state = 3}, + [1707] = {.lex_state = 7, .external_lex_state = 3}, + [1708] = {.lex_state = 7, .external_lex_state = 3}, [1709] = {.lex_state = 10, .external_lex_state = 3}, - [1710] = {.lex_state = 18, .external_lex_state = 3}, - [1711] = {.lex_state = 18, .external_lex_state = 3}, - [1712] = {.lex_state = 0, .external_lex_state = 3}, + [1710] = {.lex_state = 7, .external_lex_state = 3}, + [1711] = {.lex_state = 11, .external_lex_state = 4}, + [1712] = {.lex_state = 7, .external_lex_state = 3}, [1713] = {.lex_state = 7, .external_lex_state = 3}, [1714] = {.lex_state = 7, .external_lex_state = 3}, - [1715] = {.lex_state = 18, .external_lex_state = 3}, - [1716] = {.lex_state = 18, .external_lex_state = 3}, - [1717] = {.lex_state = 18, .external_lex_state = 3}, - [1718] = {.lex_state = 0, .external_lex_state = 3}, - [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 0, .external_lex_state = 3}, - [1721] = {.lex_state = 7, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 18, .external_lex_state = 3}, - [1724] = {.lex_state = 7, .external_lex_state = 3}, - [1725] = {.lex_state = 10, .external_lex_state = 3}, - [1726] = {.lex_state = 10, .external_lex_state = 3}, + [1715] = {.lex_state = 15, .external_lex_state = 3}, + [1716] = {.lex_state = 7, .external_lex_state = 3}, + [1717] = {.lex_state = 0, .external_lex_state = 3}, + [1718] = {.lex_state = 7, .external_lex_state = 3}, + [1719] = {.lex_state = 19, .external_lex_state = 3}, + [1720] = {.lex_state = 7, .external_lex_state = 3}, + [1721] = {.lex_state = 61, .external_lex_state = 3}, + [1722] = {.lex_state = 0, .external_lex_state = 3}, + [1723] = {.lex_state = 19, .external_lex_state = 3}, + [1724] = {.lex_state = 19, .external_lex_state = 3}, + [1725] = {.lex_state = 7, .external_lex_state = 3}, + [1726] = {.lex_state = 19, .external_lex_state = 3}, [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 18, .external_lex_state = 3}, + [1728] = {.lex_state = 7, .external_lex_state = 3}, [1729] = {.lex_state = 7, .external_lex_state = 3}, - [1730] = {.lex_state = 58, .external_lex_state = 3}, - [1731] = {.lex_state = 18, .external_lex_state = 3}, - [1732] = {.lex_state = 7, .external_lex_state = 3}, - [1733] = {.lex_state = 7, .external_lex_state = 3}, - [1734] = {.lex_state = 7, .external_lex_state = 3}, - [1735] = {.lex_state = 18, .external_lex_state = 3}, - [1736] = {.lex_state = 18, .external_lex_state = 3}, + [1730] = {.lex_state = 7, .external_lex_state = 3}, + [1731] = {.lex_state = 7, .external_lex_state = 3}, + [1732] = {.lex_state = 10, .external_lex_state = 3}, + [1733] = {.lex_state = 10, .external_lex_state = 3}, + [1734] = {.lex_state = 0, .external_lex_state = 3}, + [1735] = {.lex_state = 10, .external_lex_state = 3}, + [1736] = {.lex_state = 19, .external_lex_state = 3}, [1737] = {.lex_state = 7, .external_lex_state = 3}, - [1738] = {.lex_state = 18, .external_lex_state = 3}, - [1739] = {.lex_state = 7, .external_lex_state = 3}, - [1740] = {.lex_state = 0, .external_lex_state = 3}, + [1738] = {.lex_state = 7, .external_lex_state = 3}, + [1739] = {.lex_state = 19, .external_lex_state = 3}, + [1740] = {.lex_state = 10, .external_lex_state = 3}, [1741] = {.lex_state = 10, .external_lex_state = 3}, - [1742] = {.lex_state = 10, .external_lex_state = 3}, - [1743] = {.lex_state = 0, .external_lex_state = 3}, - [1744] = {.lex_state = 0, .external_lex_state = 3}, + [1742] = {.lex_state = 19, .external_lex_state = 3}, + [1743] = {.lex_state = 61, .external_lex_state = 3}, + [1744] = {.lex_state = 7, .external_lex_state = 3}, [1745] = {.lex_state = 7, .external_lex_state = 3}, - [1746] = {.lex_state = 18, .external_lex_state = 3}, - [1747] = {.lex_state = 58, .external_lex_state = 3}, - [1748] = {.lex_state = 18, .external_lex_state = 3}, - [1749] = {.lex_state = 7, .external_lex_state = 3}, - [1750] = {.lex_state = 0, .external_lex_state = 3}, - [1751] = {.lex_state = 18, .external_lex_state = 3}, + [1746] = {.lex_state = 19, .external_lex_state = 3}, + [1747] = {.lex_state = 19, .external_lex_state = 3}, + [1748] = {.lex_state = 19, .external_lex_state = 3}, + [1749] = {.lex_state = 19, .external_lex_state = 3}, + [1750] = {.lex_state = 7, .external_lex_state = 3}, + [1751] = {.lex_state = 7, .external_lex_state = 3}, [1752] = {.lex_state = 0, .external_lex_state = 3}, - [1753] = {.lex_state = 10, .external_lex_state = 3}, - [1754] = {.lex_state = 58, .external_lex_state = 3}, - [1755] = {.lex_state = 18, .external_lex_state = 3}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 0, .external_lex_state = 3}, - [1758] = {.lex_state = 58, .external_lex_state = 3}, - [1759] = {.lex_state = 58, .external_lex_state = 3}, - [1760] = {.lex_state = 0, .external_lex_state = 3}, - [1761] = {.lex_state = 7, .external_lex_state = 3}, - [1762] = {.lex_state = 4, .external_lex_state = 4}, - [1763] = {.lex_state = 19, .external_lex_state = 3}, - [1764] = {.lex_state = 7, .external_lex_state = 3}, - [1765] = {.lex_state = 7, .external_lex_state = 3}, - [1766] = {.lex_state = 58, .external_lex_state = 3}, - [1767] = {.lex_state = 58, .external_lex_state = 3}, + [1753] = {.lex_state = 19, .external_lex_state = 3}, + [1754] = {.lex_state = 10, .external_lex_state = 3}, + [1755] = {.lex_state = 0, .external_lex_state = 3}, + [1756] = {.lex_state = 10, .external_lex_state = 3}, + [1757] = {.lex_state = 19, .external_lex_state = 3}, + [1758] = {.lex_state = 0, .external_lex_state = 3}, + [1759] = {.lex_state = 61, .external_lex_state = 3}, + [1760] = {.lex_state = 19, .external_lex_state = 3}, + [1761] = {.lex_state = 0, .external_lex_state = 3}, + [1762] = {.lex_state = 61, .external_lex_state = 3}, + [1763] = {.lex_state = 7, .external_lex_state = 3}, + [1764] = {.lex_state = 19, .external_lex_state = 3}, + [1765] = {.lex_state = 19, .external_lex_state = 3}, + [1766] = {.lex_state = 19, .external_lex_state = 3}, + [1767] = {.lex_state = 7, .external_lex_state = 3}, [1768] = {.lex_state = 7, .external_lex_state = 3}, - [1769] = {.lex_state = 0, .external_lex_state = 3}, - [1770] = {.lex_state = 18, .external_lex_state = 3}, - [1771] = {.lex_state = 7, .external_lex_state = 3}, + [1769] = {.lex_state = 7, .external_lex_state = 3}, + [1770] = {.lex_state = 7, .external_lex_state = 3}, + [1771] = {.lex_state = 0, .external_lex_state = 3}, [1772] = {.lex_state = 7, .external_lex_state = 3}, - [1773] = {.lex_state = 18, .external_lex_state = 3}, - [1774] = {.lex_state = 4, .external_lex_state = 4}, - [1775] = {.lex_state = 58, .external_lex_state = 3}, + [1773] = {.lex_state = 7, .external_lex_state = 3}, + [1774] = {.lex_state = 7, .external_lex_state = 3}, + [1775] = {.lex_state = 61, .external_lex_state = 3}, [1776] = {.lex_state = 7, .external_lex_state = 3}, - [1777] = {.lex_state = 58, .external_lex_state = 3}, - [1778] = {.lex_state = 7, .external_lex_state = 3}, - [1779] = {.lex_state = 0, .external_lex_state = 3}, - [1780] = {.lex_state = 7, .external_lex_state = 3}, - [1781] = {.lex_state = 58, .external_lex_state = 3}, + [1777] = {.lex_state = 61, .external_lex_state = 3}, + [1778] = {.lex_state = 61, .external_lex_state = 3}, + [1779] = {.lex_state = 61, .external_lex_state = 3}, + [1780] = {.lex_state = 19, .external_lex_state = 3}, + [1781] = {.lex_state = 7, .external_lex_state = 3}, [1782] = {.lex_state = 7, .external_lex_state = 3}, - [1783] = {.lex_state = 7, .external_lex_state = 3}, - [1784] = {.lex_state = 0, .external_lex_state = 3}, - [1785] = {.lex_state = 58, .external_lex_state = 3}, - [1786] = {.lex_state = 58, .external_lex_state = 3}, - [1787] = {.lex_state = 58, .external_lex_state = 3}, - [1788] = {.lex_state = 18, .external_lex_state = 3}, - [1789] = {.lex_state = 58, .external_lex_state = 3}, - [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 58, .external_lex_state = 3}, - [1792] = {.lex_state = 0, .external_lex_state = 3}, - [1793] = {.lex_state = 4, .external_lex_state = 4}, - [1794] = {.lex_state = 0, .external_lex_state = 3}, - [1795] = {.lex_state = 58, .external_lex_state = 3}, - [1796] = {.lex_state = 7, .external_lex_state = 3}, - [1797] = {.lex_state = 7, .external_lex_state = 3}, - [1798] = {.lex_state = 18, .external_lex_state = 3}, - [1799] = {.lex_state = 58, .external_lex_state = 3}, - [1800] = {.lex_state = 7, .external_lex_state = 3}, - [1801] = {.lex_state = 4, .external_lex_state = 4}, - [1802] = {.lex_state = 58, .external_lex_state = 3}, - [1803] = {.lex_state = 0, .external_lex_state = 3}, - [1804] = {.lex_state = 58, .external_lex_state = 3}, - [1805] = {.lex_state = 4, .external_lex_state = 4}, - [1806] = {.lex_state = 0, .external_lex_state = 3}, + [1783] = {.lex_state = 0, .external_lex_state = 3}, + [1784] = {.lex_state = 61, .external_lex_state = 3}, + [1785] = {.lex_state = 19, .external_lex_state = 3}, + [1786] = {.lex_state = 0, .external_lex_state = 3}, + [1787] = {.lex_state = 61, .external_lex_state = 3}, + [1788] = {.lex_state = 20, .external_lex_state = 3}, + [1789] = {.lex_state = 61, .external_lex_state = 3}, + [1790] = {.lex_state = 61, .external_lex_state = 3}, + [1791] = {.lex_state = 7, .external_lex_state = 3}, + [1792] = {.lex_state = 7, .external_lex_state = 3}, + [1793] = {.lex_state = 10, .external_lex_state = 3}, + [1794] = {.lex_state = 61, .external_lex_state = 3}, + [1795] = {.lex_state = 7, .external_lex_state = 3}, + [1796] = {.lex_state = 61, .external_lex_state = 3}, + [1797] = {.lex_state = 0, .external_lex_state = 3}, + [1798] = {.lex_state = 7, .external_lex_state = 3}, + [1799] = {.lex_state = 20, .external_lex_state = 3}, + [1800] = {.lex_state = 61, .external_lex_state = 3}, + [1801] = {.lex_state = 61, .external_lex_state = 3}, + [1802] = {.lex_state = 61, .external_lex_state = 3}, + [1803] = {.lex_state = 7, .external_lex_state = 3}, + [1804] = {.lex_state = 7, .external_lex_state = 3}, + [1805] = {.lex_state = 7, .external_lex_state = 3}, + [1806] = {.lex_state = 61, .external_lex_state = 3}, [1807] = {.lex_state = 7, .external_lex_state = 3}, - [1808] = {.lex_state = 0, .external_lex_state = 3}, - [1809] = {.lex_state = 7, .external_lex_state = 3}, - [1810] = {.lex_state = 58, .external_lex_state = 3}, - [1811] = {.lex_state = 7, .external_lex_state = 3}, - [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 10, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 3}, + [1808] = {.lex_state = 7, .external_lex_state = 3}, + [1809] = {.lex_state = 61, .external_lex_state = 3}, + [1810] = {.lex_state = 7, .external_lex_state = 3}, + [1811] = {.lex_state = 61, .external_lex_state = 3}, + [1812] = {.lex_state = 61, .external_lex_state = 3}, + [1813] = {.lex_state = 19, .external_lex_state = 3}, + [1814] = {.lex_state = 0, .external_lex_state = 3}, [1815] = {.lex_state = 7, .external_lex_state = 3}, [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1817] = {.lex_state = 19, .external_lex_state = 3}, + [1818] = {.lex_state = 7, .external_lex_state = 3}, [1819] = {.lex_state = 7, .external_lex_state = 3}, - [1820] = {.lex_state = 18, .external_lex_state = 3}, - [1821] = {.lex_state = 58, .external_lex_state = 3}, - [1822] = {.lex_state = 58, .external_lex_state = 3}, - [1823] = {.lex_state = 58, .external_lex_state = 3}, - [1824] = {.lex_state = 19, .external_lex_state = 3}, - [1825] = {.lex_state = 0, .external_lex_state = 3}, + [1820] = {.lex_state = 19, .external_lex_state = 3}, + [1821] = {.lex_state = 61, .external_lex_state = 3}, + [1822] = {.lex_state = 61, .external_lex_state = 3}, + [1823] = {.lex_state = 61, .external_lex_state = 3}, + [1824] = {.lex_state = 20, .external_lex_state = 3}, + [1825] = {.lex_state = 20, .external_lex_state = 3}, [1826] = {.lex_state = 7, .external_lex_state = 3}, - [1827] = {.lex_state = 58, .external_lex_state = 3}, - [1828] = {.lex_state = 7, .external_lex_state = 3}, - [1829] = {.lex_state = 4, .external_lex_state = 4}, - [1830] = {.lex_state = 7, .external_lex_state = 3}, - [1831] = {.lex_state = 58, .external_lex_state = 3}, - [1832] = {.lex_state = 18, .external_lex_state = 3}, - [1833] = {.lex_state = 58, .external_lex_state = 3}, - [1834] = {.lex_state = 0, .external_lex_state = 3}, - [1835] = {.lex_state = 58, .external_lex_state = 3}, - [1836] = {.lex_state = 19, .external_lex_state = 3}, - [1837] = {.lex_state = 58, .external_lex_state = 3}, - [1838] = {.lex_state = 7, .external_lex_state = 3}, - [1839] = {.lex_state = 4, .external_lex_state = 4}, - [1840] = {.lex_state = 7, .external_lex_state = 3}, + [1827] = {.lex_state = 7, .external_lex_state = 3}, + [1828] = {.lex_state = 61, .external_lex_state = 3}, + [1829] = {.lex_state = 7, .external_lex_state = 3}, + [1830] = {.lex_state = 61, .external_lex_state = 3}, + [1831] = {.lex_state = 7, .external_lex_state = 3}, + [1832] = {.lex_state = 61, .external_lex_state = 3}, + [1833] = {.lex_state = 7, .external_lex_state = 3}, + [1834] = {.lex_state = 61, .external_lex_state = 3}, + [1835] = {.lex_state = 61, .external_lex_state = 3}, + [1836] = {.lex_state = 61, .external_lex_state = 3}, + [1837] = {.lex_state = 7, .external_lex_state = 3}, + [1838] = {.lex_state = 61, .external_lex_state = 3}, + [1839] = {.lex_state = 61, .external_lex_state = 3}, + [1840] = {.lex_state = 61, .external_lex_state = 3}, [1841] = {.lex_state = 7, .external_lex_state = 3}, - [1842] = {.lex_state = 18, .external_lex_state = 3}, - [1843] = {.lex_state = 0, .external_lex_state = 3}, - [1844] = {.lex_state = 7, .external_lex_state = 3}, - [1845] = {.lex_state = 0, .external_lex_state = 3}, - [1846] = {.lex_state = 58, .external_lex_state = 3}, - [1847] = {.lex_state = 19, .external_lex_state = 3}, - [1848] = {.lex_state = 0, .external_lex_state = 3}, - [1849] = {.lex_state = 4, .external_lex_state = 4}, - [1850] = {.lex_state = 10, .external_lex_state = 3}, - [1851] = {.lex_state = 7, .external_lex_state = 3}, - [1852] = {.lex_state = 58, .external_lex_state = 3}, - [1853] = {.lex_state = 4, .external_lex_state = 4}, - [1854] = {.lex_state = 7, .external_lex_state = 3}, - [1855] = {.lex_state = 58, .external_lex_state = 3}, - [1856] = {.lex_state = 7, .external_lex_state = 3}, - [1857] = {.lex_state = 3, .external_lex_state = 3}, - [1858] = {.lex_state = 0, .external_lex_state = 3}, - [1859] = {.lex_state = 58, .external_lex_state = 3}, - [1860] = {.lex_state = 58, .external_lex_state = 3}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, - [1862] = {.lex_state = 3, .external_lex_state = 3}, - [1863] = {.lex_state = 3, .external_lex_state = 3}, - [1864] = {.lex_state = 58, .external_lex_state = 3}, - [1865] = {.lex_state = 0, .external_lex_state = 3}, + [1842] = {.lex_state = 61, .external_lex_state = 3}, + [1843] = {.lex_state = 10, .external_lex_state = 3}, + [1844] = {.lex_state = 61, .external_lex_state = 3}, + [1845] = {.lex_state = 7, .external_lex_state = 3}, + [1846] = {.lex_state = 7, .external_lex_state = 3}, + [1847] = {.lex_state = 61, .external_lex_state = 3}, + [1848] = {.lex_state = 61, .external_lex_state = 3}, + [1849] = {.lex_state = 19, .external_lex_state = 3}, + [1850] = {.lex_state = 7, .external_lex_state = 3}, + [1851] = {.lex_state = 61, .external_lex_state = 3}, + [1852] = {.lex_state = 61, .external_lex_state = 3}, + [1853] = {.lex_state = 61, .external_lex_state = 3}, + [1854] = {.lex_state = 61, .external_lex_state = 3}, + [1855] = {.lex_state = 61, .external_lex_state = 3}, + [1856] = {.lex_state = 61, .external_lex_state = 3}, + [1857] = {.lex_state = 19, .external_lex_state = 3}, + [1858] = {.lex_state = 7, .external_lex_state = 3}, + [1859] = {.lex_state = 0, .external_lex_state = 3}, + [1860] = {.lex_state = 7, .external_lex_state = 3}, + [1861] = {.lex_state = 10, .external_lex_state = 3}, + [1862] = {.lex_state = 61, .external_lex_state = 3}, + [1863] = {.lex_state = 7, .external_lex_state = 3}, + [1864] = {.lex_state = 61, .external_lex_state = 3}, + [1865] = {.lex_state = 61, .external_lex_state = 3}, [1866] = {.lex_state = 0, .external_lex_state = 3}, - [1867] = {.lex_state = 58, .external_lex_state = 3}, + [1867] = {.lex_state = 61, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 58, .external_lex_state = 3}, - [1870] = {.lex_state = 58, .external_lex_state = 3}, - [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 58, .external_lex_state = 3}, - [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 58, .external_lex_state = 3}, - [1875] = {.lex_state = 58, .external_lex_state = 3}, + [1869] = {.lex_state = 0, .external_lex_state = 3}, + [1870] = {.lex_state = 10, .external_lex_state = 3}, + [1871] = {.lex_state = 61, .external_lex_state = 3}, + [1872] = {.lex_state = 0, .external_lex_state = 3}, + [1873] = {.lex_state = 61, .external_lex_state = 3}, + [1874] = {.lex_state = 61, .external_lex_state = 3}, + [1875] = {.lex_state = 61, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 0, .external_lex_state = 3}, + [1877] = {.lex_state = 61, .external_lex_state = 3}, [1878] = {.lex_state = 0, .external_lex_state = 3}, - [1879] = {.lex_state = 58, .external_lex_state = 3}, - [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 58, .external_lex_state = 3}, - [1882] = {.lex_state = 0, .external_lex_state = 3}, - [1883] = {.lex_state = 58, .external_lex_state = 3}, - [1884] = {.lex_state = 7, .external_lex_state = 3}, - [1885] = {.lex_state = 3, .external_lex_state = 3}, - [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 0, .external_lex_state = 3}, - [1888] = {.lex_state = 3, .external_lex_state = 3}, - [1889] = {.lex_state = 58, .external_lex_state = 3}, - [1890] = {.lex_state = 58, .external_lex_state = 3}, + [1879] = {.lex_state = 2, .external_lex_state = 3}, + [1880] = {.lex_state = 7, .external_lex_state = 3}, + [1881] = {.lex_state = 0, .external_lex_state = 3}, + [1882] = {.lex_state = 61, .external_lex_state = 3}, + [1883] = {.lex_state = 61, .external_lex_state = 3}, + [1884] = {.lex_state = 61, .external_lex_state = 3}, + [1885] = {.lex_state = 61, .external_lex_state = 3}, + [1886] = {.lex_state = 61, .external_lex_state = 3}, + [1887] = {.lex_state = 61, .external_lex_state = 3}, + [1888] = {.lex_state = 4, .external_lex_state = 3}, + [1889] = {.lex_state = 61, .external_lex_state = 3}, + [1890] = {.lex_state = 0, .external_lex_state = 3}, [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 0, .external_lex_state = 3}, - [1893] = {.lex_state = 58, .external_lex_state = 3}, - [1894] = {.lex_state = 3, .external_lex_state = 3}, + [1892] = {.lex_state = 61, .external_lex_state = 3}, + [1893] = {.lex_state = 0, .external_lex_state = 3}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, [1895] = {.lex_state = 7, .external_lex_state = 3}, - [1896] = {.lex_state = 3, .external_lex_state = 3}, - [1897] = {.lex_state = 0, .external_lex_state = 3}, - [1898] = {.lex_state = 7, .external_lex_state = 3}, + [1896] = {.lex_state = 4, .external_lex_state = 3}, + [1897] = {.lex_state = 4, .external_lex_state = 3}, + [1898] = {.lex_state = 61, .external_lex_state = 3}, [1899] = {.lex_state = 0, .external_lex_state = 3}, - [1900] = {.lex_state = 0, .external_lex_state = 3}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 0, .external_lex_state = 3}, - [1905] = {.lex_state = 0, .external_lex_state = 3}, - [1906] = {.lex_state = 3, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, - [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 3, .external_lex_state = 3}, + [1900] = {.lex_state = 4, .external_lex_state = 3}, + [1901] = {.lex_state = 61, .external_lex_state = 3}, + [1902] = {.lex_state = 0, .external_lex_state = 3}, + [1903] = {.lex_state = 61, .external_lex_state = 3}, + [1904] = {.lex_state = 4, .external_lex_state = 3}, + [1905] = {.lex_state = 4, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 4, .external_lex_state = 3}, + [1908] = {.lex_state = 61, .external_lex_state = 3}, + [1909] = {.lex_state = 4, .external_lex_state = 3}, [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1911] = {.lex_state = 61, .external_lex_state = 3}, [1912] = {.lex_state = 0, .external_lex_state = 3}, - [1913] = {.lex_state = 0, .external_lex_state = 3}, - [1914] = {.lex_state = 10, .external_lex_state = 3}, - [1915] = {.lex_state = 58, .external_lex_state = 3}, - [1916] = {.lex_state = 0, .external_lex_state = 3}, - [1917] = {.lex_state = 58, .external_lex_state = 3}, - [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 58, .external_lex_state = 3}, - [1920] = {.lex_state = 58, .external_lex_state = 3}, - [1921] = {.lex_state = 7, .external_lex_state = 3}, - [1922] = {.lex_state = 10, .external_lex_state = 3}, - [1923] = {.lex_state = 58, .external_lex_state = 3}, + [1913] = {.lex_state = 61, .external_lex_state = 3}, + [1914] = {.lex_state = 4, .external_lex_state = 3}, + [1915] = {.lex_state = 7, .external_lex_state = 3}, + [1916] = {.lex_state = 4, .external_lex_state = 3}, + [1917] = {.lex_state = 4, .external_lex_state = 3}, + [1918] = {.lex_state = 61, .external_lex_state = 3}, + [1919] = {.lex_state = 0, .external_lex_state = 3}, + [1920] = {.lex_state = 0, .external_lex_state = 3}, + [1921] = {.lex_state = 61, .external_lex_state = 3}, + [1922] = {.lex_state = 7, .external_lex_state = 3}, + [1923] = {.lex_state = 61, .external_lex_state = 3}, [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 3}, - [1926] = {.lex_state = 0, .external_lex_state = 3}, - [1927] = {.lex_state = 0, .external_lex_state = 3}, - [1928] = {.lex_state = 58, .external_lex_state = 3}, - [1929] = {.lex_state = 58, .external_lex_state = 3}, + [1925] = {.lex_state = 61, .external_lex_state = 3}, + [1926] = {.lex_state = 7, .external_lex_state = 3}, + [1927] = {.lex_state = 7, .external_lex_state = 3}, + [1928] = {.lex_state = 4, .external_lex_state = 3}, + [1929] = {.lex_state = 0, .external_lex_state = 3}, [1930] = {.lex_state = 4, .external_lex_state = 3}, [1931] = {.lex_state = 0, .external_lex_state = 3}, - [1932] = {.lex_state = 58, .external_lex_state = 3}, + [1932] = {.lex_state = 0, .external_lex_state = 3}, [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 58, .external_lex_state = 3}, - [1935] = {.lex_state = 58, .external_lex_state = 3}, - [1936] = {.lex_state = 58, .external_lex_state = 3}, - [1937] = {.lex_state = 0, .external_lex_state = 3}, + [1934] = {.lex_state = 61, .external_lex_state = 3}, + [1935] = {.lex_state = 61, .external_lex_state = 3}, + [1936] = {.lex_state = 61, .external_lex_state = 3}, + [1937] = {.lex_state = 7, .external_lex_state = 3}, [1938] = {.lex_state = 0, .external_lex_state = 3}, - [1939] = {.lex_state = 58, .external_lex_state = 3}, - [1940] = {.lex_state = 10, .external_lex_state = 3}, - [1941] = {.lex_state = 0, .external_lex_state = 3}, + [1939] = {.lex_state = 0, .external_lex_state = 3}, + [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1941] = {.lex_state = 7, .external_lex_state = 3}, [1942] = {.lex_state = 0, .external_lex_state = 3}, - [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 61, .external_lex_state = 3}, [1944] = {.lex_state = 0, .external_lex_state = 3}, [1945] = {.lex_state = 0, .external_lex_state = 3}, [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 58, .external_lex_state = 3}, - [1948] = {.lex_state = 58, .external_lex_state = 3}, + [1947] = {.lex_state = 0, .external_lex_state = 3}, + [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, - [1950] = {.lex_state = 58, .external_lex_state = 3}, + [1950] = {.lex_state = 7, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, [1952] = {.lex_state = 0, .external_lex_state = 3}, - [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 0, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 0, .external_lex_state = 3}, + [1953] = {.lex_state = 61, .external_lex_state = 3}, + [1954] = {.lex_state = 4, .external_lex_state = 3}, + [1955] = {.lex_state = 61, .external_lex_state = 3}, + [1956] = {.lex_state = 4, .external_lex_state = 3}, [1957] = {.lex_state = 0, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, - [1959] = {.lex_state = 0, .external_lex_state = 3}, - [1960] = {.lex_state = 0, .external_lex_state = 3}, + [1958] = {.lex_state = 61, .external_lex_state = 3}, + [1959] = {.lex_state = 1, .external_lex_state = 3}, + [1960] = {.lex_state = 61, .external_lex_state = 3}, [1961] = {.lex_state = 0, .external_lex_state = 3}, - [1962] = {.lex_state = 0, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, - [1964] = {.lex_state = 0, .external_lex_state = 3}, - [1965] = {.lex_state = 0, .external_lex_state = 3}, - [1966] = {.lex_state = 58, .external_lex_state = 3}, - [1967] = {.lex_state = 0, .external_lex_state = 3}, - [1968] = {.lex_state = 58, .external_lex_state = 3}, - [1969] = {.lex_state = 58, .external_lex_state = 3}, - [1970] = {.lex_state = 58, .external_lex_state = 3}, - [1971] = {.lex_state = 0, .external_lex_state = 3}, - [1972] = {.lex_state = 0, .external_lex_state = 3}, - [1973] = {.lex_state = 0, .external_lex_state = 3}, - [1974] = {.lex_state = 0, .external_lex_state = 3}, - [1975] = {.lex_state = 7, .external_lex_state = 3}, + [1962] = {.lex_state = 61, .external_lex_state = 3}, + [1963] = {.lex_state = 61, .external_lex_state = 3}, + [1964] = {.lex_state = 61, .external_lex_state = 3}, + [1965] = {.lex_state = 7, .external_lex_state = 3}, + [1966] = {.lex_state = 61, .external_lex_state = 3}, + [1967] = {.lex_state = 61, .external_lex_state = 3}, + [1968] = {.lex_state = 61, .external_lex_state = 3}, + [1969] = {.lex_state = 19, .external_lex_state = 3}, + [1970] = {.lex_state = 61, .external_lex_state = 3}, + [1971] = {.lex_state = 61, .external_lex_state = 3}, + [1972] = {.lex_state = 61, .external_lex_state = 3}, + [1973] = {.lex_state = 61, .external_lex_state = 3}, + [1974] = {.lex_state = 61, .external_lex_state = 3}, + [1975] = {.lex_state = 1, .external_lex_state = 3}, [1976] = {.lex_state = 0, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, + [1977] = {.lex_state = 61, .external_lex_state = 3}, [1978] = {.lex_state = 0, .external_lex_state = 3}, - [1979] = {.lex_state = 0, .external_lex_state = 3}, - [1980] = {.lex_state = 58, .external_lex_state = 3}, - [1981] = {.lex_state = 7, .external_lex_state = 3}, - [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, - [1984] = {.lex_state = 0, .external_lex_state = 3}, - [1985] = {.lex_state = 58, .external_lex_state = 3}, - [1986] = {.lex_state = 4, .external_lex_state = 3}, - [1987] = {.lex_state = 7, .external_lex_state = 3}, + [1979] = {.lex_state = 61, .external_lex_state = 3}, + [1980] = {.lex_state = 61, .external_lex_state = 3}, + [1981] = {.lex_state = 61, .external_lex_state = 3}, + [1982] = {.lex_state = 61, .external_lex_state = 3}, + [1983] = {.lex_state = 61, .external_lex_state = 3}, + [1984] = {.lex_state = 61, .external_lex_state = 3}, + [1985] = {.lex_state = 61, .external_lex_state = 3}, + [1986] = {.lex_state = 61, .external_lex_state = 3}, + [1987] = {.lex_state = 4, .external_lex_state = 3}, [1988] = {.lex_state = 0, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, - [1990] = {.lex_state = 0, .external_lex_state = 3}, + [1989] = {.lex_state = 61, .external_lex_state = 3}, + [1990] = {.lex_state = 10, .external_lex_state = 3}, [1991] = {.lex_state = 0, .external_lex_state = 3}, - [1992] = {.lex_state = 58, .external_lex_state = 3}, - [1993] = {.lex_state = 0, .external_lex_state = 3}, - [1994] = {.lex_state = 3, .external_lex_state = 3}, - [1995] = {.lex_state = 0, .external_lex_state = 3}, + [1992] = {.lex_state = 61, .external_lex_state = 3}, + [1993] = {.lex_state = 61, .external_lex_state = 3}, + [1994] = {.lex_state = 61, .external_lex_state = 3}, + [1995] = {.lex_state = 7, .external_lex_state = 3}, [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 0, .external_lex_state = 3}, - [1998] = {.lex_state = 7, .external_lex_state = 3}, - [1999] = {.lex_state = 58, .external_lex_state = 3}, - [2000] = {.lex_state = 3, .external_lex_state = 3}, - [2001] = {.lex_state = 0, .external_lex_state = 3}, + [1997] = {.lex_state = 61, .external_lex_state = 3}, + [1998] = {.lex_state = 61, .external_lex_state = 3}, + [1999] = {.lex_state = 61, .external_lex_state = 3}, + [2000] = {.lex_state = 61, .external_lex_state = 3}, + [2001] = {.lex_state = 61, .external_lex_state = 3}, [2002] = {.lex_state = 0, .external_lex_state = 3}, [2003] = {.lex_state = 7, .external_lex_state = 3}, - [2004] = {.lex_state = 0, .external_lex_state = 3}, + [2004] = {.lex_state = 4, .external_lex_state = 3}, [2005] = {.lex_state = 0, .external_lex_state = 3}, - [2006] = {.lex_state = 58, .external_lex_state = 3}, - [2007] = {.lex_state = 0, .external_lex_state = 3}, + [2006] = {.lex_state = 7, .external_lex_state = 3}, + [2007] = {.lex_state = 61, .external_lex_state = 3}, [2008] = {.lex_state = 0, .external_lex_state = 3}, - [2009] = {.lex_state = 58, .external_lex_state = 3}, - [2010] = {.lex_state = 7, .external_lex_state = 3}, + [2009] = {.lex_state = 0, .external_lex_state = 3}, + [2010] = {.lex_state = 4, .external_lex_state = 3}, [2011] = {.lex_state = 0, .external_lex_state = 3}, [2012] = {.lex_state = 0, .external_lex_state = 3}, [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 3, .external_lex_state = 3}, - [2015] = {.lex_state = 7, .external_lex_state = 3}, - [2016] = {.lex_state = 3, .external_lex_state = 3}, - [2017] = {.lex_state = 58, .external_lex_state = 3}, - [2018] = {.lex_state = 3, .external_lex_state = 3}, - [2019] = {.lex_state = 0, .external_lex_state = 3}, + [2014] = {.lex_state = 0, .external_lex_state = 3}, + [2015] = {.lex_state = 1, .external_lex_state = 3}, + [2016] = {.lex_state = 10, .external_lex_state = 3}, + [2017] = {.lex_state = 7, .external_lex_state = 3}, + [2018] = {.lex_state = 61, .external_lex_state = 3}, + [2019] = {.lex_state = 61, .external_lex_state = 3}, [2020] = {.lex_state = 0, .external_lex_state = 3}, - [2021] = {.lex_state = 58, .external_lex_state = 3}, - [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 58, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 58, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 3, .external_lex_state = 3}, - [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 61, .external_lex_state = 3}, + [2022] = {.lex_state = 7, .external_lex_state = 3}, + [2023] = {.lex_state = 8, .external_lex_state = 3}, + [2024] = {.lex_state = 4, .external_lex_state = 3}, + [2025] = {.lex_state = 10, .external_lex_state = 3}, + [2026] = {.lex_state = 61, .external_lex_state = 3}, + [2027] = {.lex_state = 61, .external_lex_state = 3}, + [2028] = {.lex_state = 4, .external_lex_state = 3}, [2029] = {.lex_state = 0, .external_lex_state = 3}, [2030] = {.lex_state = 0, .external_lex_state = 3}, - [2031] = {.lex_state = 58, .external_lex_state = 3}, - [2032] = {.lex_state = 3, .external_lex_state = 3}, - [2033] = {.lex_state = 0, .external_lex_state = 3}, - [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 0, .external_lex_state = 3}, - [2036] = {.lex_state = 7, .external_lex_state = 3}, - [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 58, .external_lex_state = 3}, - [2039] = {.lex_state = 0, .external_lex_state = 3}, - [2040] = {.lex_state = 58, .external_lex_state = 3}, - [2041] = {.lex_state = 58, .external_lex_state = 3}, + [2031] = {.lex_state = 61, .external_lex_state = 3}, + [2032] = {.lex_state = 0, .external_lex_state = 3}, + [2033] = {.lex_state = 61, .external_lex_state = 3}, + [2034] = {.lex_state = 61, .external_lex_state = 3}, + [2035] = {.lex_state = 7, .external_lex_state = 3}, + [2036] = {.lex_state = 61, .external_lex_state = 3}, + [2037] = {.lex_state = 61, .external_lex_state = 3}, + [2038] = {.lex_state = 61, .external_lex_state = 3}, + [2039] = {.lex_state = 61, .external_lex_state = 3}, + [2040] = {.lex_state = 61, .external_lex_state = 3}, + [2041] = {.lex_state = 0, .external_lex_state = 3}, [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 0, .external_lex_state = 3}, - [2045] = {.lex_state = 58, .external_lex_state = 3}, - [2046] = {.lex_state = 58, .external_lex_state = 3}, - [2047] = {.lex_state = 58, .external_lex_state = 3}, - [2048] = {.lex_state = 7, .external_lex_state = 3}, - [2049] = {.lex_state = 0, .external_lex_state = 3}, - [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 58, .external_lex_state = 3}, - [2052] = {.lex_state = 0, .external_lex_state = 3}, - [2053] = {.lex_state = 0, .external_lex_state = 3}, + [2043] = {.lex_state = 7, .external_lex_state = 3}, + [2044] = {.lex_state = 61, .external_lex_state = 3}, + [2045] = {.lex_state = 0, .external_lex_state = 3}, + [2046] = {.lex_state = 7, .external_lex_state = 3}, + [2047] = {.lex_state = 61, .external_lex_state = 3}, + [2048] = {.lex_state = 0, .external_lex_state = 3}, + [2049] = {.lex_state = 61, .external_lex_state = 3}, + [2050] = {.lex_state = 61, .external_lex_state = 3}, + [2051] = {.lex_state = 0, .external_lex_state = 3}, + [2052] = {.lex_state = 61, .external_lex_state = 3}, + [2053] = {.lex_state = 61, .external_lex_state = 3}, [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 0, .external_lex_state = 3}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 10, .external_lex_state = 3}, - [2058] = {.lex_state = 58, .external_lex_state = 3}, - [2059] = {.lex_state = 0, .external_lex_state = 3}, - [2060] = {.lex_state = 0, .external_lex_state = 3}, + [2055] = {.lex_state = 61, .external_lex_state = 3}, + [2056] = {.lex_state = 61, .external_lex_state = 3}, + [2057] = {.lex_state = 61, .external_lex_state = 3}, + [2058] = {.lex_state = 7, .external_lex_state = 3}, + [2059] = {.lex_state = 61, .external_lex_state = 3}, + [2060] = {.lex_state = 61, .external_lex_state = 3}, [2061] = {.lex_state = 0, .external_lex_state = 3}, - [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2062] = {.lex_state = 61, .external_lex_state = 3}, + [2063] = {.lex_state = 61, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 3, .external_lex_state = 3}, - [2066] = {.lex_state = 0, .external_lex_state = 3}, + [2065] = {.lex_state = 61, .external_lex_state = 3}, + [2066] = {.lex_state = 61, .external_lex_state = 3}, [2067] = {.lex_state = 0, .external_lex_state = 3}, - [2068] = {.lex_state = 58, .external_lex_state = 3}, + [2068] = {.lex_state = 61, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, [2070] = {.lex_state = 0, .external_lex_state = 3}, - [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 7, .external_lex_state = 3}, - [2073] = {.lex_state = 0, .external_lex_state = 3}, - [2074] = {.lex_state = 0, .external_lex_state = 3}, - [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 3, .external_lex_state = 3}, - [2077] = {.lex_state = 0, .external_lex_state = 3}, - [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 0, .external_lex_state = 3}, + [2071] = {.lex_state = 61, .external_lex_state = 3}, + [2072] = {.lex_state = 0, .external_lex_state = 3}, + [2073] = {.lex_state = 61, .external_lex_state = 3}, + [2074] = {.lex_state = 61, .external_lex_state = 3}, + [2075] = {.lex_state = 61, .external_lex_state = 3}, + [2076] = {.lex_state = 61, .external_lex_state = 3}, + [2077] = {.lex_state = 61, .external_lex_state = 3}, + [2078] = {.lex_state = 61, .external_lex_state = 3}, + [2079] = {.lex_state = 61, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 3, .external_lex_state = 3}, - [2082] = {.lex_state = 0, .external_lex_state = 3}, + [2081] = {.lex_state = 61, .external_lex_state = 3}, + [2082] = {.lex_state = 7, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, - [2085] = {.lex_state = 7, .external_lex_state = 3}, - [2086] = {.lex_state = 58, .external_lex_state = 3}, - [2087] = {.lex_state = 7, .external_lex_state = 3}, - [2088] = {.lex_state = 18, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 3}, + [2085] = {.lex_state = 61, .external_lex_state = 3}, + [2086] = {.lex_state = 61, .external_lex_state = 3}, + [2087] = {.lex_state = 4, .external_lex_state = 3}, + [2088] = {.lex_state = 61, .external_lex_state = 3}, + [2089] = {.lex_state = 10, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 58, .external_lex_state = 3}, - [2092] = {.lex_state = 58, .external_lex_state = 3}, - [2093] = {.lex_state = 58, .external_lex_state = 3}, - [2094] = {.lex_state = 58, .external_lex_state = 3}, - [2095] = {.lex_state = 0, .external_lex_state = 3}, - [2096] = {.lex_state = 0, .external_lex_state = 3}, - [2097] = {.lex_state = 0, .external_lex_state = 3}, + [2091] = {.lex_state = 0, .external_lex_state = 3}, + [2092] = {.lex_state = 0, .external_lex_state = 3}, + [2093] = {.lex_state = 61, .external_lex_state = 3}, + [2094] = {.lex_state = 0, .external_lex_state = 3}, + [2095] = {.lex_state = 61, .external_lex_state = 3}, + [2096] = {.lex_state = 61, .external_lex_state = 3}, + [2097] = {.lex_state = 61, .external_lex_state = 3}, [2098] = {.lex_state = 7, .external_lex_state = 3}, - [2099] = {.lex_state = 10, .external_lex_state = 3}, + [2099] = {.lex_state = 61, .external_lex_state = 3}, [2100] = {.lex_state = 0, .external_lex_state = 3}, - [2101] = {.lex_state = 7, .external_lex_state = 3}, - [2102] = {.lex_state = 3, .external_lex_state = 3}, - [2103] = {.lex_state = 7, .external_lex_state = 3}, - [2104] = {.lex_state = 58, .external_lex_state = 3}, - [2105] = {.lex_state = 7, .external_lex_state = 3}, - [2106] = {.lex_state = 0, .external_lex_state = 3}, - [2107] = {.lex_state = 0, .external_lex_state = 3}, - [2108] = {.lex_state = 0, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 3}, - [2110] = {.lex_state = 0, .external_lex_state = 3}, - [2111] = {.lex_state = 0, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, + [2102] = {.lex_state = 61, .external_lex_state = 3}, + [2103] = {.lex_state = 61, .external_lex_state = 3}, + [2104] = {.lex_state = 61, .external_lex_state = 3}, + [2105] = {.lex_state = 0, .external_lex_state = 3}, + [2106] = {.lex_state = 8, .external_lex_state = 3}, + [2107] = {.lex_state = 61, .external_lex_state = 3}, + [2108] = {.lex_state = 61, .external_lex_state = 3}, + [2109] = {.lex_state = 7, .external_lex_state = 3}, + [2110] = {.lex_state = 61, .external_lex_state = 3}, + [2111] = {.lex_state = 61, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, - [2113] = {.lex_state = 0, .external_lex_state = 3}, + [2113] = {.lex_state = 7, .external_lex_state = 3}, [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 0, .external_lex_state = 3}, + [2115] = {.lex_state = 61, .external_lex_state = 3}, [2116] = {.lex_state = 0, .external_lex_state = 3}, - [2117] = {.lex_state = 58, .external_lex_state = 3}, + [2117] = {.lex_state = 0, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, - [2119] = {.lex_state = 0, .external_lex_state = 3}, - [2120] = {.lex_state = 0, .external_lex_state = 3}, + [2119] = {.lex_state = 7, .external_lex_state = 3}, + [2120] = {.lex_state = 7, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 0, .external_lex_state = 3}, - [2123] = {.lex_state = 7, .external_lex_state = 3}, - [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, + [2122] = {.lex_state = 7, .external_lex_state = 3}, + [2123] = {.lex_state = 61, .external_lex_state = 3}, + [2124] = {.lex_state = 61, .external_lex_state = 3}, + [2125] = {.lex_state = 61, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, - [2127] = {.lex_state = 0, .external_lex_state = 3}, - [2128] = {.lex_state = 0, .external_lex_state = 3}, - [2129] = {.lex_state = 7, .external_lex_state = 3}, - [2130] = {.lex_state = 0, .external_lex_state = 3}, + [2127] = {.lex_state = 61, .external_lex_state = 3}, + [2128] = {.lex_state = 7, .external_lex_state = 3}, + [2129] = {.lex_state = 61, .external_lex_state = 3}, + [2130] = {.lex_state = 61, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 0, .external_lex_state = 3}, - [2133] = {.lex_state = 7, .external_lex_state = 3}, - [2134] = {.lex_state = 0, .external_lex_state = 3}, + [2132] = {.lex_state = 61, .external_lex_state = 3}, + [2133] = {.lex_state = 61, .external_lex_state = 3}, + [2134] = {.lex_state = 61, .external_lex_state = 3}, [2135] = {.lex_state = 7, .external_lex_state = 3}, - [2136] = {.lex_state = 0, .external_lex_state = 3}, - [2137] = {.lex_state = 0, .external_lex_state = 3}, - [2138] = {.lex_state = 58, .external_lex_state = 3}, - [2139] = {.lex_state = 58, .external_lex_state = 3}, - [2140] = {.lex_state = 0, .external_lex_state = 3}, + [2136] = {.lex_state = 61, .external_lex_state = 3}, + [2137] = {.lex_state = 61, .external_lex_state = 3}, + [2138] = {.lex_state = 61, .external_lex_state = 3}, + [2139] = {.lex_state = 7, .external_lex_state = 3}, + [2140] = {.lex_state = 61, .external_lex_state = 3}, [2141] = {.lex_state = 0, .external_lex_state = 3}, - [2142] = {.lex_state = 58, .external_lex_state = 3}, + [2142] = {.lex_state = 61, .external_lex_state = 3}, [2143] = {.lex_state = 0, .external_lex_state = 3}, - [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 0, .external_lex_state = 3}, + [2144] = {.lex_state = 7, .external_lex_state = 3}, + [2145] = {.lex_state = 7, .external_lex_state = 3}, + [2146] = {.lex_state = 61, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, - [2148] = {.lex_state = 0, .external_lex_state = 3}, + [2148] = {.lex_state = 61, .external_lex_state = 3}, [2149] = {.lex_state = 0, .external_lex_state = 3}, - [2150] = {.lex_state = 7, .external_lex_state = 3}, + [2150] = {.lex_state = 61, .external_lex_state = 3}, [2151] = {.lex_state = 0, .external_lex_state = 3}, - [2152] = {.lex_state = 0, .external_lex_state = 3}, + [2152] = {.lex_state = 61, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, - [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 0, .external_lex_state = 3}, - [2156] = {.lex_state = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 58, .external_lex_state = 3}, - [2158] = {.lex_state = 0, .external_lex_state = 3}, - [2159] = {.lex_state = 0, .external_lex_state = 3}, - [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 0, .external_lex_state = 3}, + [2154] = {.lex_state = 7, .external_lex_state = 3}, + [2155] = {.lex_state = 7, .external_lex_state = 3}, + [2156] = {.lex_state = 7, .external_lex_state = 3}, + [2157] = {.lex_state = 0, .external_lex_state = 3}, + [2158] = {.lex_state = 61, .external_lex_state = 3}, + [2159] = {.lex_state = 61, .external_lex_state = 3}, + [2160] = {.lex_state = 7, .external_lex_state = 3}, + [2161] = {.lex_state = 7, .external_lex_state = 3}, [2162] = {.lex_state = 7, .external_lex_state = 3}, - [2163] = {.lex_state = 0, .external_lex_state = 3}, - [2164] = {.lex_state = 58, .external_lex_state = 3}, - [2165] = {.lex_state = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 0, .external_lex_state = 3}, - [2167] = {.lex_state = 0, .external_lex_state = 3}, - [2168] = {.lex_state = 0, .external_lex_state = 3}, - [2169] = {.lex_state = 0, .external_lex_state = 3}, - [2170] = {.lex_state = 0, .external_lex_state = 3}, - [2171] = {.lex_state = 7, .external_lex_state = 3}, - [2172] = {.lex_state = 0, .external_lex_state = 3}, + [2163] = {.lex_state = 61, .external_lex_state = 3}, + [2164] = {.lex_state = 61, .external_lex_state = 3}, + [2165] = {.lex_state = 61, .external_lex_state = 3}, + [2166] = {.lex_state = 61, .external_lex_state = 3}, + [2167] = {.lex_state = 7, .external_lex_state = 3}, + [2168] = {.lex_state = 61, .external_lex_state = 3}, + [2169] = {.lex_state = 61, .external_lex_state = 3}, + [2170] = {.lex_state = 61, .external_lex_state = 3}, + [2171] = {.lex_state = 61, .external_lex_state = 3}, + [2172] = {.lex_state = 61, .external_lex_state = 3}, [2173] = {.lex_state = 0, .external_lex_state = 3}, - [2174] = {.lex_state = 0, .external_lex_state = 3}, - [2175] = {.lex_state = 0, .external_lex_state = 3}, + [2174] = {.lex_state = 61, .external_lex_state = 3}, + [2175] = {.lex_state = 7, .external_lex_state = 3}, [2176] = {.lex_state = 0, .external_lex_state = 3}, - [2177] = {.lex_state = 58, .external_lex_state = 3}, - [2178] = {.lex_state = 0, .external_lex_state = 3}, - [2179] = {.lex_state = 0, .external_lex_state = 3}, - [2180] = {.lex_state = 58, .external_lex_state = 3}, + [2177] = {.lex_state = 61, .external_lex_state = 3}, + [2178] = {.lex_state = 61, .external_lex_state = 3}, + [2179] = {.lex_state = 10, .external_lex_state = 3}, + [2180] = {.lex_state = 61, .external_lex_state = 3}, [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 0, .external_lex_state = 3}, + [2182] = {.lex_state = 61, .external_lex_state = 3}, [2183] = {.lex_state = 0, .external_lex_state = 3}, [2184] = {.lex_state = 0, .external_lex_state = 3}, - [2185] = {.lex_state = 0, .external_lex_state = 3}, - [2186] = {.lex_state = 0, .external_lex_state = 3}, - [2187] = {.lex_state = 58, .external_lex_state = 3}, - [2188] = {.lex_state = 0, .external_lex_state = 3}, - [2189] = {.lex_state = 0, .external_lex_state = 3}, - [2190] = {.lex_state = 0, .external_lex_state = 3}, - [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 58, .external_lex_state = 3}, - [2193] = {.lex_state = 0, .external_lex_state = 3}, + [2185] = {.lex_state = 61, .external_lex_state = 3}, + [2186] = {.lex_state = 61, .external_lex_state = 3}, + [2187] = {.lex_state = 61, .external_lex_state = 3}, + [2188] = {.lex_state = 61, .external_lex_state = 3}, + [2189] = {.lex_state = 61, .external_lex_state = 3}, + [2190] = {.lex_state = 61, .external_lex_state = 3}, + [2191] = {.lex_state = 61, .external_lex_state = 3}, + [2192] = {.lex_state = 61, .external_lex_state = 3}, + [2193] = {.lex_state = 61, .external_lex_state = 3}, [2194] = {.lex_state = 0, .external_lex_state = 3}, - [2195] = {.lex_state = 58, .external_lex_state = 3}, - [2196] = {.lex_state = 0, .external_lex_state = 3}, - [2197] = {.lex_state = 7, .external_lex_state = 3}, - [2198] = {.lex_state = 58, .external_lex_state = 3}, - [2199] = {.lex_state = 0, .external_lex_state = 3}, - [2200] = {.lex_state = 0, .external_lex_state = 3}, - [2201] = {.lex_state = 4, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 58, .external_lex_state = 3}, - [2204] = {.lex_state = 0, .external_lex_state = 3}, + [2195] = {.lex_state = 61, .external_lex_state = 3}, + [2196] = {.lex_state = 61, .external_lex_state = 3}, + [2197] = {.lex_state = 61, .external_lex_state = 3}, + [2198] = {.lex_state = 61, .external_lex_state = 3}, + [2199] = {.lex_state = 61, .external_lex_state = 3}, + [2200] = {.lex_state = 61, .external_lex_state = 3}, + [2201] = {.lex_state = 61, .external_lex_state = 3}, + [2202] = {.lex_state = 61, .external_lex_state = 3}, + [2203] = {.lex_state = 61, .external_lex_state = 3}, + [2204] = {.lex_state = 61, .external_lex_state = 3}, [2205] = {.lex_state = 0, .external_lex_state = 3}, [2206] = {.lex_state = 0, .external_lex_state = 3}, [2207] = {.lex_state = 0, .external_lex_state = 3}, - [2208] = {.lex_state = 0, .external_lex_state = 5}, - [2209] = {.lex_state = 0, .external_lex_state = 3}, - [2210] = {.lex_state = 0, .external_lex_state = 3}, - [2211] = {.lex_state = 0, .external_lex_state = 3}, + [2208] = {.lex_state = 61, .external_lex_state = 3}, + [2209] = {.lex_state = 7, .external_lex_state = 3}, + [2210] = {.lex_state = 61, .external_lex_state = 3}, + [2211] = {.lex_state = 61, .external_lex_state = 3}, [2212] = {.lex_state = 0, .external_lex_state = 3}, - [2213] = {.lex_state = 0, .external_lex_state = 3}, - [2214] = {.lex_state = 7, .external_lex_state = 3}, - [2215] = {.lex_state = 0, .external_lex_state = 3}, - [2216] = {.lex_state = 58, .external_lex_state = 3}, - [2217] = {.lex_state = 0, .external_lex_state = 3}, - [2218] = {.lex_state = 0, .external_lex_state = 3}, + [2213] = {.lex_state = 61, .external_lex_state = 3}, + [2214] = {.lex_state = 61, .external_lex_state = 3}, + [2215] = {.lex_state = 19, .external_lex_state = 3}, + [2216] = {.lex_state = 61, .external_lex_state = 3}, + [2217] = {.lex_state = 61, .external_lex_state = 3}, + [2218] = {.lex_state = 61, .external_lex_state = 3}, [2219] = {.lex_state = 0, .external_lex_state = 3}, - [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 0, .external_lex_state = 3}, - [2222] = {.lex_state = 58, .external_lex_state = 3}, + [2220] = {.lex_state = 61, .external_lex_state = 3}, + [2221] = {.lex_state = 7, .external_lex_state = 3}, + [2222] = {.lex_state = 61, .external_lex_state = 3}, [2223] = {.lex_state = 0, .external_lex_state = 3}, - [2224] = {.lex_state = 58, .external_lex_state = 3}, - [2225] = {.lex_state = 0, .external_lex_state = 3}, - [2226] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 61, .external_lex_state = 3}, + [2225] = {.lex_state = 61, .external_lex_state = 3}, + [2226] = {.lex_state = 61, .external_lex_state = 3}, [2227] = {.lex_state = 0, .external_lex_state = 3}, - [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 7, .external_lex_state = 3}, - [2230] = {.lex_state = 58, .external_lex_state = 3}, + [2228] = {.lex_state = 61, .external_lex_state = 3}, + [2229] = {.lex_state = 61, .external_lex_state = 3}, + [2230] = {.lex_state = 61, .external_lex_state = 3}, [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 61, .external_lex_state = 3}, [2233] = {.lex_state = 0, .external_lex_state = 3}, [2234] = {.lex_state = 0, .external_lex_state = 3}, [2235] = {.lex_state = 0, .external_lex_state = 3}, - [2236] = {.lex_state = 0, .external_lex_state = 3}, + [2236] = {.lex_state = 61, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 7, .external_lex_state = 3}, - [2239] = {.lex_state = 7, .external_lex_state = 3}, - [2240] = {.lex_state = 0, .external_lex_state = 3}, - [2241] = {.lex_state = 0, .external_lex_state = 3}, - [2242] = {.lex_state = 0, .external_lex_state = 3}, + [2238] = {.lex_state = 61, .external_lex_state = 3}, + [2239] = {.lex_state = 0, .external_lex_state = 3}, + [2240] = {.lex_state = 61, .external_lex_state = 3}, + [2241] = {.lex_state = 61, .external_lex_state = 3}, + [2242] = {.lex_state = 61, .external_lex_state = 3}, [2243] = {.lex_state = 0, .external_lex_state = 3}, - [2244] = {.lex_state = 58, .external_lex_state = 3}, - [2245] = {.lex_state = 0, .external_lex_state = 3}, + [2244] = {.lex_state = 61, .external_lex_state = 3}, + [2245] = {.lex_state = 7, .external_lex_state = 3}, [2246] = {.lex_state = 7, .external_lex_state = 3}, - [2247] = {.lex_state = 0, .external_lex_state = 3}, - [2248] = {.lex_state = 0, .external_lex_state = 3}, - [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 0, .external_lex_state = 3}, + [2247] = {.lex_state = 61, .external_lex_state = 3}, + [2248] = {.lex_state = 61, .external_lex_state = 3}, + [2249] = {.lex_state = 61, .external_lex_state = 3}, + [2250] = {.lex_state = 0, .external_lex_state = 5}, [2251] = {.lex_state = 0, .external_lex_state = 3}, - [2252] = {.lex_state = 18, .external_lex_state = 3}, - [2253] = {.lex_state = 58, .external_lex_state = 3}, - [2254] = {.lex_state = 7, .external_lex_state = 3}, + [2252] = {.lex_state = 0, .external_lex_state = 3}, + [2253] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 0, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 0, .external_lex_state = 3}, - [2257] = {.lex_state = 0, .external_lex_state = 3}, - [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 58, .external_lex_state = 3}, - [2260] = {.lex_state = 0, .external_lex_state = 3}, - [2261] = {.lex_state = 58, .external_lex_state = 3}, - [2262] = {.lex_state = 0, .external_lex_state = 3}, + [2256] = {.lex_state = 61, .external_lex_state = 3}, + [2257] = {.lex_state = 61, .external_lex_state = 3}, + [2258] = {.lex_state = 8, .external_lex_state = 3}, + [2259] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 61, .external_lex_state = 3}, + [2261] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 61, .external_lex_state = 3}, [2263] = {.lex_state = 0, .external_lex_state = 3}, - [2264] = {.lex_state = 58, .external_lex_state = 3}, - [2265] = {.lex_state = 58, .external_lex_state = 3}, - [2266] = {.lex_state = 0, .external_lex_state = 3}, - [2267] = {.lex_state = 0, .external_lex_state = 3}, - [2268] = {.lex_state = 7, .external_lex_state = 3}, - [2269] = {.lex_state = 0, .external_lex_state = 3}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 0, .external_lex_state = 3}, + [2264] = {.lex_state = 61, .external_lex_state = 3}, + [2265] = {.lex_state = 61, .external_lex_state = 3}, + [2266] = {.lex_state = 61, .external_lex_state = 3}, + [2267] = {.lex_state = 61, .external_lex_state = 3}, + [2268] = {.lex_state = 61, .external_lex_state = 3}, + [2269] = {.lex_state = 61, .external_lex_state = 3}, + [2270] = {.lex_state = 61, .external_lex_state = 3}, + [2271] = {.lex_state = 61, .external_lex_state = 3}, + [2272] = {.lex_state = 61, .external_lex_state = 3}, [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, - [2276] = {.lex_state = 0, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 3}, + [2274] = {.lex_state = 7, .external_lex_state = 3}, + [2275] = {.lex_state = 61, .external_lex_state = 3}, + [2276] = {.lex_state = 19, .external_lex_state = 3}, + [2277] = {.lex_state = 61, .external_lex_state = 3}, [2278] = {.lex_state = 0, .external_lex_state = 3}, - [2279] = {.lex_state = 58, .external_lex_state = 3}, - [2280] = {.lex_state = 0, .external_lex_state = 3}, - [2281] = {.lex_state = 18, .external_lex_state = 3}, - [2282] = {.lex_state = 18, .external_lex_state = 3}, - [2283] = {.lex_state = 0, .external_lex_state = 3}, - [2284] = {.lex_state = 0, .external_lex_state = 3}, - [2285] = {.lex_state = 7, .external_lex_state = 3}, - [2286] = {.lex_state = 0, .external_lex_state = 3}, - [2287] = {.lex_state = 0, .external_lex_state = 3}, - [2288] = {.lex_state = 58, .external_lex_state = 3}, - [2289] = {.lex_state = 18, .external_lex_state = 3}, - [2290] = {.lex_state = 58, .external_lex_state = 3}, - [2291] = {.lex_state = 18, .external_lex_state = 3}, - [2292] = {.lex_state = 0, .external_lex_state = 3}, - [2293] = {.lex_state = 0, .external_lex_state = 3}, - [2294] = {.lex_state = 0, .external_lex_state = 3}, - [2295] = {.lex_state = 4, .external_lex_state = 3}, - [2296] = {.lex_state = 10, .external_lex_state = 3}, - [2297] = {.lex_state = 58, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 0, .external_lex_state = 3}, + [2279] = {.lex_state = 61, .external_lex_state = 3}, + [2280] = {.lex_state = 19, .external_lex_state = 3}, + [2281] = {.lex_state = 61, .external_lex_state = 3}, + [2282] = {.lex_state = 61, .external_lex_state = 3}, + [2283] = {.lex_state = 61, .external_lex_state = 3}, + [2284] = {.lex_state = 61, .external_lex_state = 3}, + [2285] = {.lex_state = 61, .external_lex_state = 3}, + [2286] = {.lex_state = 2, .external_lex_state = 3}, + [2287] = {.lex_state = 61, .external_lex_state = 3}, + [2288] = {.lex_state = 61, .external_lex_state = 3}, + [2289] = {.lex_state = 61, .external_lex_state = 3}, + [2290] = {.lex_state = 8, .external_lex_state = 3}, + [2291] = {.lex_state = 61, .external_lex_state = 3}, + [2292] = {.lex_state = 61, .external_lex_state = 3}, + [2293] = {.lex_state = 61, .external_lex_state = 3}, + [2294] = {.lex_state = 2, .external_lex_state = 3}, + [2295] = {.lex_state = 61, .external_lex_state = 3}, + [2296] = {.lex_state = 7, .external_lex_state = 3}, + [2297] = {.lex_state = 0, .external_lex_state = 3}, + [2298] = {.lex_state = 0, .external_lex_state = 3}, + [2299] = {.lex_state = 61, .external_lex_state = 3}, [2300] = {.lex_state = 0, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 0, .external_lex_state = 3}, - [2303] = {.lex_state = 7, .external_lex_state = 3}, - [2304] = {.lex_state = 0, .external_lex_state = 3}, - [2305] = {.lex_state = 18, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 0, .external_lex_state = 3}, + [2302] = {.lex_state = 61, .external_lex_state = 3}, + [2303] = {.lex_state = 0, .external_lex_state = 3}, + [2304] = {.lex_state = 61, .external_lex_state = 3}, + [2305] = {.lex_state = 61, .external_lex_state = 3}, + [2306] = {.lex_state = 61, .external_lex_state = 3}, [2307] = {.lex_state = 0, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, [2309] = {.lex_state = 0, .external_lex_state = 3}, - [2310] = {.lex_state = 0, .external_lex_state = 3}, - [2311] = {.lex_state = 0, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 3}, - [2313] = {.lex_state = 58, .external_lex_state = 3}, - [2314] = {.lex_state = 0, .external_lex_state = 3}, - [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 0, .external_lex_state = 3}, - [2317] = {.lex_state = 7, .external_lex_state = 3}, - [2318] = {.lex_state = 0, .external_lex_state = 3}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 3}, - [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 0, .external_lex_state = 3}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, - [2325] = {.lex_state = 0, .external_lex_state = 3}, - [2326] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 61, .external_lex_state = 3}, + [2311] = {.lex_state = 19, .external_lex_state = 3}, + [2312] = {.lex_state = 19, .external_lex_state = 3}, + [2313] = {.lex_state = 61, .external_lex_state = 3}, + [2314] = {.lex_state = 61, .external_lex_state = 3}, + [2315] = {.lex_state = 61, .external_lex_state = 3}, + [2316] = {.lex_state = 7, .external_lex_state = 3}, + [2317] = {.lex_state = 61, .external_lex_state = 3}, + [2318] = {.lex_state = 61, .external_lex_state = 3}, + [2319] = {.lex_state = 0, .external_lex_state = 3}, + [2320] = {.lex_state = 19, .external_lex_state = 3}, + [2321] = {.lex_state = 61, .external_lex_state = 3}, + [2322] = {.lex_state = 7, .external_lex_state = 3}, + [2323] = {.lex_state = 7, .external_lex_state = 3}, + [2324] = {.lex_state = 10, .external_lex_state = 3}, + [2325] = {.lex_state = 7, .external_lex_state = 3}, + [2326] = {.lex_state = 7, .external_lex_state = 3}, [2327] = {.lex_state = 7, .external_lex_state = 3}, - [2328] = {.lex_state = 7, .external_lex_state = 3}, + [2328] = {.lex_state = 10, .external_lex_state = 3}, [2329] = {.lex_state = 7, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, + [2330] = {.lex_state = 7, .external_lex_state = 3}, + [2331] = {.lex_state = 0, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, - [2333] = {.lex_state = 0, .external_lex_state = 3}, + [2333] = {.lex_state = 7, .external_lex_state = 3}, [2334] = {.lex_state = 7, .external_lex_state = 3}, - [2335] = {.lex_state = 7, .external_lex_state = 3}, + [2335] = {.lex_state = 0, .external_lex_state = 3}, [2336] = {.lex_state = 7, .external_lex_state = 3}, [2337] = {.lex_state = 7, .external_lex_state = 3}, [2338] = {.lex_state = 0, .external_lex_state = 3}, - [2339] = {.lex_state = 0, .external_lex_state = 3}, - [2340] = {.lex_state = 7, .external_lex_state = 3}, - [2341] = {.lex_state = 10, .external_lex_state = 3}, + [2339] = {.lex_state = 7, .external_lex_state = 3}, + [2340] = {.lex_state = 0, .external_lex_state = 3}, + [2341] = {.lex_state = 61, .external_lex_state = 3}, [2342] = {.lex_state = 0, .external_lex_state = 3}, [2343] = {.lex_state = 0, .external_lex_state = 3}, [2344] = {.lex_state = 7, .external_lex_state = 3}, [2345] = {.lex_state = 0, .external_lex_state = 3}, [2346] = {.lex_state = 7, .external_lex_state = 3}, [2347] = {.lex_state = 7, .external_lex_state = 3}, - [2348] = {.lex_state = 7, .external_lex_state = 3}, - [2349] = {.lex_state = 7, .external_lex_state = 3}, - [2350] = {.lex_state = 7, .external_lex_state = 3}, - [2351] = {.lex_state = 7, .external_lex_state = 3}, - [2352] = {.lex_state = 7, .external_lex_state = 3}, - [2353] = {.lex_state = 7, .external_lex_state = 3}, - [2354] = {.lex_state = 7, .external_lex_state = 3}, - [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2348] = {.lex_state = 0, .external_lex_state = 3}, + [2349] = {.lex_state = 0, .external_lex_state = 3}, + [2350] = {.lex_state = 0, .external_lex_state = 3}, + [2351] = {.lex_state = 0, .external_lex_state = 3}, + [2352] = {.lex_state = 10, .external_lex_state = 3}, + [2353] = {.lex_state = 0, .external_lex_state = 3}, + [2354] = {.lex_state = 0, .external_lex_state = 3}, + [2355] = {.lex_state = 10, .external_lex_state = 3}, + [2356] = {.lex_state = 7, .external_lex_state = 3}, [2357] = {.lex_state = 0, .external_lex_state = 3}, - [2358] = {.lex_state = 0, .external_lex_state = 3}, + [2358] = {.lex_state = 7, .external_lex_state = 3}, [2359] = {.lex_state = 7, .external_lex_state = 3}, [2360] = {.lex_state = 7, .external_lex_state = 3}, [2361] = {.lex_state = 7, .external_lex_state = 3}, - [2362] = {.lex_state = 7, .external_lex_state = 3}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, + [2362] = {.lex_state = 0, .external_lex_state = 3}, + [2363] = {.lex_state = 61, .external_lex_state = 3}, [2364] = {.lex_state = 7, .external_lex_state = 3}, - [2365] = {.lex_state = 7, .external_lex_state = 3}, - [2366] = {.lex_state = 7, .external_lex_state = 3}, - [2367] = {.lex_state = 0, .external_lex_state = 3}, + [2365] = {.lex_state = 0, .external_lex_state = 3}, + [2366] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 7, .external_lex_state = 3}, [2368] = {.lex_state = 7, .external_lex_state = 3}, - [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2369] = {.lex_state = 7, .external_lex_state = 3}, + [2370] = {.lex_state = 7, .external_lex_state = 3}, [2371] = {.lex_state = 7, .external_lex_state = 3}, - [2372] = {.lex_state = 0, .external_lex_state = 3}, - [2373] = {.lex_state = 0, .external_lex_state = 3}, - [2374] = {.lex_state = 0, .external_lex_state = 3}, + [2372] = {.lex_state = 7, .external_lex_state = 3}, + [2373] = {.lex_state = 7, .external_lex_state = 3}, + [2374] = {.lex_state = 7, .external_lex_state = 3}, [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 0, .external_lex_state = 3}, - [2377] = {.lex_state = 7, .external_lex_state = 3}, + [2376] = {.lex_state = 7, .external_lex_state = 3}, + [2377] = {.lex_state = 0, .external_lex_state = 3}, [2378] = {.lex_state = 0, .external_lex_state = 3}, [2379] = {.lex_state = 0, .external_lex_state = 3}, - [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 10, .external_lex_state = 3}, - [2382] = {.lex_state = 0, .external_lex_state = 3}, - [2383] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 10, .external_lex_state = 3}, + [2381] = {.lex_state = 7, .external_lex_state = 3}, + [2382] = {.lex_state = 7, .external_lex_state = 3}, + [2383] = {.lex_state = 7, .external_lex_state = 3}, [2384] = {.lex_state = 0, .external_lex_state = 3}, [2385] = {.lex_state = 0, .external_lex_state = 3}, - [2386] = {.lex_state = 7, .external_lex_state = 3}, + [2386] = {.lex_state = 0, .external_lex_state = 3}, [2387] = {.lex_state = 0, .external_lex_state = 3}, - [2388] = {.lex_state = 10, .external_lex_state = 3}, + [2388] = {.lex_state = 0, .external_lex_state = 3}, [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 3}, + [2390] = {.lex_state = 0, .external_lex_state = 3}, [2391] = {.lex_state = 0, .external_lex_state = 3}, [2392] = {.lex_state = 0, .external_lex_state = 3}, [2393] = {.lex_state = 7, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, - [2395] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, + [2395] = {.lex_state = 0, .external_lex_state = 3}, [2396] = {.lex_state = 7, .external_lex_state = 3}, [2397] = {.lex_state = 7, .external_lex_state = 3}, - [2398] = {.lex_state = 7, .external_lex_state = 3}, + [2398] = {.lex_state = 0, .external_lex_state = 3}, [2399] = {.lex_state = 7, .external_lex_state = 3}, - [2400] = {.lex_state = 10, .external_lex_state = 3}, + [2400] = {.lex_state = 0, .external_lex_state = 3}, [2401] = {.lex_state = 0, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2403] = {.lex_state = 7, .external_lex_state = 3}, [2404] = {.lex_state = 0, .external_lex_state = 3}, - [2405] = {.lex_state = 0, .external_lex_state = 3}, - [2406] = {.lex_state = 10, .external_lex_state = 3}, - [2407] = {.lex_state = 0, .external_lex_state = 3}, - [2408] = {.lex_state = 0, .external_lex_state = 3}, - [2409] = {.lex_state = 0, .external_lex_state = 3}, - [2410] = {.lex_state = 7, .external_lex_state = 3}, + [2405] = {.lex_state = 7, .external_lex_state = 3}, + [2406] = {.lex_state = 7, .external_lex_state = 3}, + [2407] = {.lex_state = 7, .external_lex_state = 3}, + [2408] = {.lex_state = 7, .external_lex_state = 3}, + [2409] = {.lex_state = 7, .external_lex_state = 3}, + [2410] = {.lex_state = 10, .external_lex_state = 3}, [2411] = {.lex_state = 0, .external_lex_state = 3}, - [2412] = {.lex_state = 0, .external_lex_state = 3}, + [2412] = {.lex_state = 7, .external_lex_state = 3}, [2413] = {.lex_state = 7, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, - [2415] = {.lex_state = 7, .external_lex_state = 3}, - [2416] = {.lex_state = 7, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2415] = {.lex_state = 0, .external_lex_state = 3}, + [2416] = {.lex_state = 0, .external_lex_state = 3}, [2417] = {.lex_state = 0, .external_lex_state = 3}, [2418] = {.lex_state = 0, .external_lex_state = 3}, - [2419] = {.lex_state = 7, .external_lex_state = 3}, + [2419] = {.lex_state = 0, .external_lex_state = 3}, [2420] = {.lex_state = 0, .external_lex_state = 3}, [2421] = {.lex_state = 0, .external_lex_state = 3}, [2422] = {.lex_state = 0, .external_lex_state = 3}, - [2423] = {.lex_state = 0, .external_lex_state = 3}, - [2424] = {.lex_state = 7, .external_lex_state = 3}, + [2423] = {.lex_state = 7, .external_lex_state = 3}, + [2424] = {.lex_state = 0, .external_lex_state = 3}, [2425] = {.lex_state = 7, .external_lex_state = 3}, - [2426] = {.lex_state = 0, .external_lex_state = 3}, + [2426] = {.lex_state = 7, .external_lex_state = 3}, [2427] = {.lex_state = 0, .external_lex_state = 3}, [2428] = {.lex_state = 7, .external_lex_state = 3}, [2429] = {.lex_state = 0, .external_lex_state = 3}, - [2430] = {.lex_state = 7, .external_lex_state = 3}, - [2431] = {.lex_state = 0, .external_lex_state = 3}, + [2430] = {.lex_state = 0, .external_lex_state = 3}, + [2431] = {.lex_state = 7, .external_lex_state = 3}, [2432] = {.lex_state = 0, .external_lex_state = 3}, [2433] = {.lex_state = 0, .external_lex_state = 3}, [2434] = {.lex_state = 7, .external_lex_state = 3}, [2435] = {.lex_state = 7, .external_lex_state = 3}, [2436] = {.lex_state = 7, .external_lex_state = 3}, [2437] = {.lex_state = 0, .external_lex_state = 3}, - [2438] = {.lex_state = 7, .external_lex_state = 3}, - [2439] = {.lex_state = 7, .external_lex_state = 3}, - [2440] = {.lex_state = 0, .external_lex_state = 3}, + [2438] = {.lex_state = 0, .external_lex_state = 3}, + [2439] = {.lex_state = 61, .external_lex_state = 3}, + [2440] = {.lex_state = 10, .external_lex_state = 3}, [2441] = {.lex_state = 7, .external_lex_state = 3}, [2442] = {.lex_state = 0, .external_lex_state = 3}, - [2443] = {.lex_state = 7, .external_lex_state = 3}, + [2443] = {.lex_state = 0, .external_lex_state = 3}, [2444] = {.lex_state = 0, .external_lex_state = 3}, - [2445] = {.lex_state = 7, .external_lex_state = 3}, - [2446] = {.lex_state = 7, .external_lex_state = 3}, - [2447] = {.lex_state = 10, .external_lex_state = 3}, - [2448] = {.lex_state = 58, .external_lex_state = 3}, + [2445] = {.lex_state = 0, .external_lex_state = 3}, + [2446] = {.lex_state = 0, .external_lex_state = 3}, + [2447] = {.lex_state = 7, .external_lex_state = 3}, + [2448] = {.lex_state = 7, .external_lex_state = 3}, [2449] = {.lex_state = 7, .external_lex_state = 3}, [2450] = {.lex_state = 0, .external_lex_state = 3}, [2451] = {.lex_state = 0, .external_lex_state = 3}, - [2452] = {.lex_state = 7, .external_lex_state = 3}, + [2452] = {.lex_state = 0, .external_lex_state = 3}, [2453] = {.lex_state = 0, .external_lex_state = 3}, [2454] = {.lex_state = 0, .external_lex_state = 3}, [2455] = {.lex_state = 0, .external_lex_state = 3}, - [2456] = {.lex_state = 0, .external_lex_state = 3}, - [2457] = {.lex_state = 0, .external_lex_state = 3}, + [2456] = {.lex_state = 7, .external_lex_state = 3}, + [2457] = {.lex_state = 7, .external_lex_state = 3}, [2458] = {.lex_state = 0, .external_lex_state = 3}, - [2459] = {.lex_state = 0, .external_lex_state = 3}, - [2460] = {.lex_state = 0, .external_lex_state = 3}, + [2459] = {.lex_state = 7, .external_lex_state = 3}, + [2460] = {.lex_state = 10, .external_lex_state = 3}, [2461] = {.lex_state = 0, .external_lex_state = 3}, [2462] = {.lex_state = 0, .external_lex_state = 3}, [2463] = {.lex_state = 7, .external_lex_state = 3}, - [2464] = {.lex_state = 10, .external_lex_state = 3}, + [2464] = {.lex_state = 7, .external_lex_state = 3}, [2465] = {.lex_state = 7, .external_lex_state = 3}, - [2466] = {.lex_state = 0, .external_lex_state = 3}, + [2466] = {.lex_state = 7, .external_lex_state = 3}, [2467] = {.lex_state = 0, .external_lex_state = 3}, - [2468] = {.lex_state = 7, .external_lex_state = 3}, + [2468] = {.lex_state = 10, .external_lex_state = 3}, [2469] = {.lex_state = 7, .external_lex_state = 3}, [2470] = {.lex_state = 0, .external_lex_state = 3}, - [2471] = {.lex_state = 58, .external_lex_state = 3}, + [2471] = {.lex_state = 0, .external_lex_state = 3}, [2472] = {.lex_state = 7, .external_lex_state = 3}, [2473] = {.lex_state = 0, .external_lex_state = 3}, - [2474] = {.lex_state = 7, .external_lex_state = 3}, + [2474] = {.lex_state = 0, .external_lex_state = 3}, [2475] = {.lex_state = 0, .external_lex_state = 3}, - [2476] = {.lex_state = 58, .external_lex_state = 3}, - [2477] = {.lex_state = 0, .external_lex_state = 3}, + [2476] = {.lex_state = 7, .external_lex_state = 3}, + [2477] = {.lex_state = 7, .external_lex_state = 3}, [2478] = {.lex_state = 7, .external_lex_state = 3}, - [2479] = {.lex_state = 0, .external_lex_state = 3}, + [2479] = {.lex_state = 7, .external_lex_state = 3}, [2480] = {.lex_state = 0, .external_lex_state = 3}, [2481] = {.lex_state = 0, .external_lex_state = 3}, - [2482] = {.lex_state = 0, .external_lex_state = 3}, - [2483] = {.lex_state = 10, .external_lex_state = 3}, + [2482] = {.lex_state = 7, .external_lex_state = 3}, + [2483] = {.lex_state = 7, .external_lex_state = 3}, [2484] = {.lex_state = 7, .external_lex_state = 3}, - [2485] = {.lex_state = 7, .external_lex_state = 3}, - [2486] = {.lex_state = 7, .external_lex_state = 3}, - [2487] = {.lex_state = 0, .external_lex_state = 3}, - [2488] = {.lex_state = 0, .external_lex_state = 3}, + [2485] = {.lex_state = 0, .external_lex_state = 3}, + [2486] = {.lex_state = 0, .external_lex_state = 3}, + [2487] = {.lex_state = 7, .external_lex_state = 3}, + [2488] = {.lex_state = 7, .external_lex_state = 3}, [2489] = {.lex_state = 0, .external_lex_state = 3}, - [2490] = {.lex_state = 7, .external_lex_state = 3}, - [2491] = {.lex_state = 0, .external_lex_state = 3}, + [2490] = {.lex_state = 0, .external_lex_state = 3}, + [2491] = {.lex_state = 7, .external_lex_state = 3}, [2492] = {.lex_state = 0, .external_lex_state = 3}, [2493] = {.lex_state = 0, .external_lex_state = 3}, [2494] = {.lex_state = 0, .external_lex_state = 3}, [2495] = {.lex_state = 7, .external_lex_state = 3}, [2496] = {.lex_state = 7, .external_lex_state = 3}, - [2497] = {.lex_state = 10, .external_lex_state = 3}, - [2498] = {.lex_state = 7, .external_lex_state = 3}, - [2499] = {.lex_state = 7, .external_lex_state = 3}, + [2497] = {.lex_state = 7, .external_lex_state = 3}, + [2498] = {.lex_state = 0, .external_lex_state = 3}, + [2499] = {.lex_state = 0, .external_lex_state = 3}, [2500] = {.lex_state = 0, .external_lex_state = 3}, [2501] = {.lex_state = 0, .external_lex_state = 3}, - [2502] = {.lex_state = 7, .external_lex_state = 3}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, [2503] = {.lex_state = 0, .external_lex_state = 3}, - [2504] = {.lex_state = 0, .external_lex_state = 3}, + [2504] = {.lex_state = 7, .external_lex_state = 3}, [2505] = {.lex_state = 0, .external_lex_state = 3}, [2506] = {.lex_state = 0, .external_lex_state = 3}, - [2507] = {.lex_state = 0, .external_lex_state = 3}, + [2507] = {.lex_state = 7, .external_lex_state = 3}, [2508] = {.lex_state = 0, .external_lex_state = 3}, [2509] = {.lex_state = 0, .external_lex_state = 3}, - [2510] = {.lex_state = 7, .external_lex_state = 3}, + [2510] = {.lex_state = 0, .external_lex_state = 3}, [2511] = {.lex_state = 0, .external_lex_state = 3}, [2512] = {.lex_state = 0, .external_lex_state = 3}, - [2513] = {.lex_state = 58, .external_lex_state = 3}, + [2513] = {.lex_state = 61, .external_lex_state = 3}, [2514] = {.lex_state = 0, .external_lex_state = 3}, - [2515] = {.lex_state = 7, .external_lex_state = 3}, + [2515] = {.lex_state = 0, .external_lex_state = 3}, [2516] = {.lex_state = 0, .external_lex_state = 3}, [2517] = {.lex_state = 10, .external_lex_state = 3}, [2518] = {.lex_state = 0, .external_lex_state = 3}, - [2519] = {.lex_state = 10, .external_lex_state = 3}, - [2520] = {.lex_state = 7, .external_lex_state = 3}, - [2521] = {.lex_state = 10, .external_lex_state = 3}, + [2519] = {.lex_state = 0, .external_lex_state = 3}, + [2520] = {.lex_state = 0, .external_lex_state = 3}, + [2521] = {.lex_state = 0, .external_lex_state = 3}, [2522] = {.lex_state = 0, .external_lex_state = 3}, - [2523] = {.lex_state = 0, .external_lex_state = 3}, - [2524] = {.lex_state = 10, .external_lex_state = 3}, + [2523] = {.lex_state = 7, .external_lex_state = 3}, + [2524] = {.lex_state = 7, .external_lex_state = 3}, [2525] = {.lex_state = 0, .external_lex_state = 3}, - [2526] = {.lex_state = 7, .external_lex_state = 3}, - [2527] = {.lex_state = 0, .external_lex_state = 3}, - [2528] = {.lex_state = 7, .external_lex_state = 3}, - [2529] = {.lex_state = 0, .external_lex_state = 3}, - [2530] = {.lex_state = 0, .external_lex_state = 3}, - [2531] = {.lex_state = 7, .external_lex_state = 3}, - [2532] = {.lex_state = 10, .external_lex_state = 3}, - [2533] = {.lex_state = 7, .external_lex_state = 3}, - [2534] = {.lex_state = 7, .external_lex_state = 3}, - [2535] = {.lex_state = 7, .external_lex_state = 3}, - [2536] = {.lex_state = 10, .external_lex_state = 3}, + [2526] = {.lex_state = 0, .external_lex_state = 3}, + [2527] = {.lex_state = 10, .external_lex_state = 3}, + [2528] = {.lex_state = 0, .external_lex_state = 3}, + [2529] = {.lex_state = 10, .external_lex_state = 3}, + [2530] = {.lex_state = 7, .external_lex_state = 3}, + [2531] = {.lex_state = 0, .external_lex_state = 3}, + [2532] = {.lex_state = 7, .external_lex_state = 3}, + [2533] = {.lex_state = 0, .external_lex_state = 3}, + [2534] = {.lex_state = 10, .external_lex_state = 3}, + [2535] = {.lex_state = 0, .external_lex_state = 3}, + [2536] = {.lex_state = 7, .external_lex_state = 3}, [2537] = {.lex_state = 0, .external_lex_state = 3}, - [2538] = {.lex_state = 0, .external_lex_state = 3}, - [2539] = {.lex_state = 10, .external_lex_state = 3}, - [2540] = {.lex_state = 7, .external_lex_state = 3}, - [2541] = {.lex_state = 7, .external_lex_state = 3}, - [2542] = {.lex_state = 0, .external_lex_state = 3}, + [2538] = {.lex_state = 7, .external_lex_state = 3}, + [2539] = {.lex_state = 0, .external_lex_state = 3}, + [2540] = {.lex_state = 0, .external_lex_state = 3}, + [2541] = {.lex_state = 0, .external_lex_state = 3}, + [2542] = {.lex_state = 10, .external_lex_state = 3}, [2543] = {.lex_state = 0, .external_lex_state = 3}, [2544] = {.lex_state = 0, .external_lex_state = 3}, - [2545] = {.lex_state = 10, .external_lex_state = 3}, + [2545] = {.lex_state = 0, .external_lex_state = 3}, [2546] = {.lex_state = 10, .external_lex_state = 3}, - [2547] = {.lex_state = 0, .external_lex_state = 3}, + [2547] = {.lex_state = 7, .external_lex_state = 3}, [2548] = {.lex_state = 0, .external_lex_state = 3}, - [2549] = {.lex_state = 0, .external_lex_state = 3}, + [2549] = {.lex_state = 10, .external_lex_state = 3}, [2550] = {.lex_state = 7, .external_lex_state = 3}, [2551] = {.lex_state = 0, .external_lex_state = 3}, - [2552] = {.lex_state = 7, .external_lex_state = 3}, + [2552] = {.lex_state = 0, .external_lex_state = 3}, [2553] = {.lex_state = 0, .external_lex_state = 3}, - [2554] = {.lex_state = 7, .external_lex_state = 3}, - [2555] = {.lex_state = 0, .external_lex_state = 3}, - [2556] = {.lex_state = 0, .external_lex_state = 3}, - [2557] = {.lex_state = 7, .external_lex_state = 3}, - [2558] = {.lex_state = 7, .external_lex_state = 3}, - [2559] = {.lex_state = 7, .external_lex_state = 3}, - [2560] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 0, .external_lex_state = 3}, + [2555] = {.lex_state = 10, .external_lex_state = 3}, + [2556] = {.lex_state = 10, .external_lex_state = 3}, + [2557] = {.lex_state = 0, .external_lex_state = 3}, + [2558] = {.lex_state = 0, .external_lex_state = 3}, + [2559] = {.lex_state = 0, .external_lex_state = 3}, + [2560] = {.lex_state = 7, .external_lex_state = 3}, [2561] = {.lex_state = 0, .external_lex_state = 3}, [2562] = {.lex_state = 7, .external_lex_state = 3}, - [2563] = {.lex_state = 7, .external_lex_state = 3}, + [2563] = {.lex_state = 0, .external_lex_state = 3}, [2564] = {.lex_state = 7, .external_lex_state = 3}, + [2565] = {.lex_state = 0, .external_lex_state = 3}, + [2566] = {.lex_state = 7, .external_lex_state = 3}, + [2567] = {.lex_state = 7, .external_lex_state = 3}, + [2568] = {.lex_state = 7, .external_lex_state = 3}, + [2569] = {.lex_state = 7, .external_lex_state = 3}, + [2570] = {.lex_state = 0, .external_lex_state = 3}, + [2571] = {.lex_state = 7, .external_lex_state = 3}, + [2572] = {.lex_state = 7, .external_lex_state = 3}, + [2573] = {.lex_state = 0, .external_lex_state = 3}, + [2574] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -17380,84 +14920,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(1), [sym_crate] = ACTIONS(1), [sym_metavariable] = ACTIONS(1), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1), [sym__string_content] = ACTIONS(1), [sym_raw_string_literal] = ACTIONS(1), [sym_float_literal] = ACTIONS(1), [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2529), - [sym__statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_macro_definition] = STATE(9), - [sym_attribute_item] = STATE(9), - [sym_inner_attribute_item] = STATE(9), - [sym_mod_item] = STATE(9), - [sym_foreign_mod_item] = STATE(9), - [sym_struct_item] = STATE(9), - [sym_union_item] = STATE(9), - [sym_enum_item] = STATE(9), - [sym_extern_crate_declaration] = STATE(9), - [sym_const_item] = STATE(9), - [sym_static_item] = STATE(9), - [sym_type_item] = STATE(9), - [sym_function_item] = STATE(9), - [sym_function_signature_item] = STATE(9), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(9), - [sym_trait_item] = STATE(9), - [sym_associated_type] = STATE(9), - [sym_let_declaration] = STATE(9), - [sym_use_declaration] = STATE(9), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_source_file] = STATE(2480), + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -17534,77 +15075,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [sym__statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_macro_definition] = STATE(13), - [sym_attribute_item] = STATE(13), - [sym_inner_attribute_item] = STATE(13), - [sym_mod_item] = STATE(13), - [sym_foreign_mod_item] = STATE(13), - [sym_struct_item] = STATE(13), - [sym_union_item] = STATE(13), - [sym_enum_item] = STATE(13), - [sym_extern_crate_declaration] = STATE(13), - [sym_const_item] = STATE(13), - [sym_static_item] = STATE(13), - [sym_type_item] = STATE(13), - [sym_function_item] = STATE(13), - [sym_function_signature_item] = STATE(13), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(13), - [sym_trait_item] = STATE(13), - [sym_associated_type] = STATE(13), - [sym_let_declaration] = STATE(13), - [sym_use_declaration] = STATE(13), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym__statement] = STATE(14), + [sym_empty_statement] = STATE(14), + [sym_expression_statement] = STATE(14), + [sym_macro_definition] = STATE(14), + [sym_attribute_item] = STATE(14), + [sym_inner_attribute_item] = STATE(14), + [sym_mod_item] = STATE(14), + [sym_foreign_mod_item] = STATE(14), + [sym_struct_item] = STATE(14), + [sym_union_item] = STATE(14), + [sym_enum_item] = STATE(14), + [sym_extern_crate_declaration] = STATE(14), + [sym_const_item] = STATE(14), + [sym_static_item] = STATE(14), + [sym_type_item] = STATE(14), + [sym_function_item] = STATE(14), + [sym_function_signature_item] = STATE(14), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(14), + [sym_trait_item] = STATE(14), + [sym_associated_type] = STATE(14), + [sym_let_declaration] = STATE(14), + [sym_use_declaration] = STATE(14), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1255), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17681,77 +15222,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1239), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1225), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -17828,83 +15369,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [4] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(109), + [sym_identifier] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(114), + [anon_sym_macro_rules_BANG] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_u8] = ACTIONS(132), + [anon_sym_i8] = ACTIONS(132), + [anon_sym_u16] = ACTIONS(132), + [anon_sym_i16] = ACTIONS(132), + [anon_sym_u32] = ACTIONS(132), + [anon_sym_i32] = ACTIONS(132), + [anon_sym_u64] = ACTIONS(132), + [anon_sym_i64] = ACTIONS(132), + [anon_sym_u128] = ACTIONS(132), + [anon_sym_i128] = ACTIONS(132), + [anon_sym_isize] = ACTIONS(132), + [anon_sym_usize] = ACTIONS(132), + [anon_sym_f32] = ACTIONS(132), + [anon_sym_f64] = ACTIONS(132), + [anon_sym_bool] = ACTIONS(132), + [anon_sym_str] = ACTIONS(132), + [anon_sym_char] = ACTIONS(132), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_async] = ACTIONS(138), + [anon_sym_break] = ACTIONS(141), + [anon_sym_const] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_default] = ACTIONS(150), + [anon_sym_enum] = ACTIONS(153), + [anon_sym_fn] = ACTIONS(156), + [anon_sym_for] = ACTIONS(159), + [anon_sym_if] = ACTIONS(162), + [anon_sym_impl] = ACTIONS(165), + [anon_sym_let] = ACTIONS(168), + [anon_sym_loop] = ACTIONS(171), + [anon_sym_match] = ACTIONS(174), + [anon_sym_mod] = ACTIONS(177), + [anon_sym_pub] = ACTIONS(180), + [anon_sym_return] = ACTIONS(183), + [anon_sym_static] = ACTIONS(186), + [anon_sym_struct] = ACTIONS(189), + [anon_sym_trait] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_union] = ACTIONS(198), + [anon_sym_unsafe] = ACTIONS(201), + [anon_sym_use] = ACTIONS(204), + [anon_sym_while] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_yield] = ACTIONS(231), + [anon_sym_move] = ACTIONS(234), + [sym_integer_literal] = ACTIONS(237), + [aux_sym_string_literal_token1] = ACTIONS(240), + [sym_char_literal] = ACTIONS(237), + [anon_sym_true] = ACTIONS(243), + [anon_sym_false] = ACTIONS(243), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(246), + [sym_super] = ACTIONS(249), + [sym_crate] = ACTIONS(252), + [sym_metavariable] = ACTIONS(255), + [sym_raw_string_literal] = ACTIONS(237), + [sym_float_literal] = ACTIONS(237), + [sym_block_comment] = ACTIONS(3), + }, + [5] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1249), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(258), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -17974,84 +15662,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_macro_definition] = STATE(11), - [sym_attribute_item] = STATE(11), - [sym_inner_attribute_item] = STATE(11), - [sym_mod_item] = STATE(11), - [sym_foreign_mod_item] = STATE(11), - [sym_struct_item] = STATE(11), - [sym_union_item] = STATE(11), - [sym_enum_item] = STATE(11), - [sym_extern_crate_declaration] = STATE(11), - [sym_const_item] = STATE(11), - [sym_static_item] = STATE(11), - [sym_type_item] = STATE(11), - [sym_function_item] = STATE(11), - [sym_function_signature_item] = STATE(11), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(11), - [sym_trait_item] = STATE(11), - [sym_associated_type] = STATE(11), - [sym_let_declaration] = STATE(11), - [sym_use_declaration] = STATE(11), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [6] = { + [sym__statement] = STATE(5), + [sym_empty_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_macro_definition] = STATE(5), + [sym_attribute_item] = STATE(5), + [sym_inner_attribute_item] = STATE(5), + [sym_mod_item] = STATE(5), + [sym_foreign_mod_item] = STATE(5), + [sym_struct_item] = STATE(5), + [sym_union_item] = STATE(5), + [sym_enum_item] = STATE(5), + [sym_extern_crate_declaration] = STATE(5), + [sym_const_item] = STATE(5), + [sym_static_item] = STATE(5), + [sym_type_item] = STATE(5), + [sym_function_item] = STATE(5), + [sym_function_signature_item] = STATE(5), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(5), + [sym_trait_item] = STATE(5), + [sym_associated_type] = STATE(5), + [sym_let_declaration] = STATE(5), + [sym_use_declaration] = STATE(5), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1248), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18121,84 +15809,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym_attribute_item] = STATE(14), - [sym_inner_attribute_item] = STATE(14), - [sym_mod_item] = STATE(14), - [sym_foreign_mod_item] = STATE(14), - [sym_struct_item] = STATE(14), - [sym_union_item] = STATE(14), - [sym_enum_item] = STATE(14), - [sym_extern_crate_declaration] = STATE(14), - [sym_const_item] = STATE(14), - [sym_static_item] = STATE(14), - [sym_type_item] = STATE(14), - [sym_function_item] = STATE(14), - [sym_function_signature_item] = STATE(14), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(14), - [sym_trait_item] = STATE(14), - [sym_associated_type] = STATE(14), - [sym_let_declaration] = STATE(14), - [sym_use_declaration] = STATE(14), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1230), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [7] = { + [sym__statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_macro_definition] = STATE(8), + [sym_attribute_item] = STATE(8), + [sym_inner_attribute_item] = STATE(8), + [sym_mod_item] = STATE(8), + [sym_foreign_mod_item] = STATE(8), + [sym_struct_item] = STATE(8), + [sym_union_item] = STATE(8), + [sym_enum_item] = STATE(8), + [sym_extern_crate_declaration] = STATE(8), + [sym_const_item] = STATE(8), + [sym_static_item] = STATE(8), + [sym_type_item] = STATE(8), + [sym_function_item] = STATE(8), + [sym_function_signature_item] = STATE(8), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(8), + [sym_trait_item] = STATE(8), + [sym_associated_type] = STATE(8), + [sym_let_declaration] = STATE(8), + [sym_use_declaration] = STATE(8), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1260), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(262), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18268,84 +15956,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [7] = { - [sym__statement] = STATE(4), - [sym_empty_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_macro_definition] = STATE(4), - [sym_attribute_item] = STATE(4), - [sym_inner_attribute_item] = STATE(4), - [sym_mod_item] = STATE(4), - [sym_foreign_mod_item] = STATE(4), - [sym_struct_item] = STATE(4), - [sym_union_item] = STATE(4), - [sym_enum_item] = STATE(4), - [sym_extern_crate_declaration] = STATE(4), - [sym_const_item] = STATE(4), - [sym_static_item] = STATE(4), - [sym_type_item] = STATE(4), - [sym_function_item] = STATE(4), - [sym_function_signature_item] = STATE(4), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(4), - [sym_trait_item] = STATE(4), - [sym_associated_type] = STATE(4), - [sym_let_declaration] = STATE(4), - [sym_use_declaration] = STATE(4), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1260), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [8] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1204), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(264), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18415,231 +16103,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [8] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(117), - [sym_identifier] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(122), - [anon_sym_macro_rules_BANG] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LBRACK] = ACTIONS(134), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_u8] = ACTIONS(140), - [anon_sym_i8] = ACTIONS(140), - [anon_sym_u16] = ACTIONS(140), - [anon_sym_i16] = ACTIONS(140), - [anon_sym_u32] = ACTIONS(140), - [anon_sym_i32] = ACTIONS(140), - [anon_sym_u64] = ACTIONS(140), - [anon_sym_i64] = ACTIONS(140), - [anon_sym_u128] = ACTIONS(140), - [anon_sym_i128] = ACTIONS(140), - [anon_sym_isize] = ACTIONS(140), - [anon_sym_usize] = ACTIONS(140), - [anon_sym_f32] = ACTIONS(140), - [anon_sym_f64] = ACTIONS(140), - [anon_sym_bool] = ACTIONS(140), - [anon_sym_str] = ACTIONS(140), - [anon_sym_char] = ACTIONS(140), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(146), - [anon_sym_break] = ACTIONS(149), - [anon_sym_const] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_default] = ACTIONS(158), - [anon_sym_enum] = ACTIONS(161), - [anon_sym_fn] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_if] = ACTIONS(170), - [anon_sym_impl] = ACTIONS(173), - [anon_sym_let] = ACTIONS(176), - [anon_sym_loop] = ACTIONS(179), - [anon_sym_match] = ACTIONS(182), - [anon_sym_mod] = ACTIONS(185), - [anon_sym_pub] = ACTIONS(188), - [anon_sym_return] = ACTIONS(191), - [anon_sym_static] = ACTIONS(194), - [anon_sym_struct] = ACTIONS(197), - [anon_sym_trait] = ACTIONS(200), - [anon_sym_type] = ACTIONS(203), - [anon_sym_union] = ACTIONS(206), - [anon_sym_unsafe] = ACTIONS(209), - [anon_sym_use] = ACTIONS(212), - [anon_sym_while] = ACTIONS(215), - [anon_sym_POUND] = ACTIONS(218), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(224), - [anon_sym_COLON_COLON] = ACTIONS(227), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_yield] = ACTIONS(239), - [anon_sym_move] = ACTIONS(242), - [sym_integer_literal] = ACTIONS(245), - [aux_sym_string_literal_token1] = ACTIONS(248), - [sym_char_literal] = ACTIONS(245), - [anon_sym_true] = ACTIONS(251), - [anon_sym_false] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(254), - [sym_super] = ACTIONS(257), - [sym_crate] = ACTIONS(260), - [sym_metavariable] = ACTIONS(263), - [sym_raw_string_literal] = ACTIONS(245), - [sym_float_literal] = ACTIONS(245), - [sym_block_comment] = ACTIONS(3), - }, [9] = { - [sym__statement] = STATE(8), - [sym_empty_statement] = STATE(8), - [sym_expression_statement] = STATE(8), - [sym_macro_definition] = STATE(8), - [sym_attribute_item] = STATE(8), - [sym_inner_attribute_item] = STATE(8), - [sym_mod_item] = STATE(8), - [sym_foreign_mod_item] = STATE(8), - [sym_struct_item] = STATE(8), - [sym_union_item] = STATE(8), - [sym_enum_item] = STATE(8), - [sym_extern_crate_declaration] = STATE(8), - [sym_const_item] = STATE(8), - [sym_static_item] = STATE(8), - [sym_type_item] = STATE(8), - [sym_function_item] = STATE(8), - [sym_function_signature_item] = STATE(8), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(8), - [sym_trait_item] = STATE(8), - [sym_associated_type] = STATE(8), - [sym_let_declaration] = STATE(8), - [sym_use_declaration] = STATE(8), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(266), + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1252), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(266), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -18710,77 +16251,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(3), - [sym_empty_statement] = STATE(3), - [sym_expression_statement] = STATE(3), - [sym_macro_definition] = STATE(3), - [sym_attribute_item] = STATE(3), - [sym_inner_attribute_item] = STATE(3), - [sym_mod_item] = STATE(3), - [sym_foreign_mod_item] = STATE(3), - [sym_struct_item] = STATE(3), - [sym_union_item] = STATE(3), - [sym_enum_item] = STATE(3), - [sym_extern_crate_declaration] = STATE(3), - [sym_const_item] = STATE(3), - [sym_static_item] = STATE(3), - [sym_type_item] = STATE(3), - [sym_function_item] = STATE(3), - [sym_function_signature_item] = STATE(3), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(3), - [sym_trait_item] = STATE(3), - [sym_associated_type] = STATE(3), - [sym_let_declaration] = STATE(3), - [sym_use_declaration] = STATE(3), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1228), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1253), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -18857,77 +16398,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [11] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym__statement] = STATE(3), + [sym_empty_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_macro_definition] = STATE(3), + [sym_attribute_item] = STATE(3), + [sym_inner_attribute_item] = STATE(3), + [sym_mod_item] = STATE(3), + [sym_foreign_mod_item] = STATE(3), + [sym_struct_item] = STATE(3), + [sym_union_item] = STATE(3), + [sym_enum_item] = STATE(3), + [sym_extern_crate_declaration] = STATE(3), + [sym_const_item] = STATE(3), + [sym_static_item] = STATE(3), + [sym_type_item] = STATE(3), + [sym_function_item] = STATE(3), + [sym_function_signature_item] = STATE(3), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(3), + [sym_trait_item] = STATE(3), + [sym_associated_type] = STATE(3), + [sym_let_declaration] = STATE(3), + [sym_use_declaration] = STATE(3), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19004,230 +16545,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [12] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1266), - [sym_macro_invocation] = STATE(96), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(119), - [anon_sym_SEMI] = ACTIONS(122), - [anon_sym_macro_rules_BANG] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(128), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(134), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_u8] = ACTIONS(140), - [anon_sym_i8] = ACTIONS(140), - [anon_sym_u16] = ACTIONS(140), - [anon_sym_i16] = ACTIONS(140), - [anon_sym_u32] = ACTIONS(140), - [anon_sym_i32] = ACTIONS(140), - [anon_sym_u64] = ACTIONS(140), - [anon_sym_i64] = ACTIONS(140), - [anon_sym_u128] = ACTIONS(140), - [anon_sym_i128] = ACTIONS(140), - [anon_sym_isize] = ACTIONS(140), - [anon_sym_usize] = ACTIONS(140), - [anon_sym_f32] = ACTIONS(140), - [anon_sym_f64] = ACTIONS(140), - [anon_sym_bool] = ACTIONS(140), - [anon_sym_str] = ACTIONS(140), - [anon_sym_char] = ACTIONS(140), - [anon_sym_SQUOTE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(146), - [anon_sym_break] = ACTIONS(149), - [anon_sym_const] = ACTIONS(152), - [anon_sym_continue] = ACTIONS(155), - [anon_sym_default] = ACTIONS(158), - [anon_sym_enum] = ACTIONS(161), - [anon_sym_fn] = ACTIONS(164), - [anon_sym_for] = ACTIONS(167), - [anon_sym_if] = ACTIONS(170), - [anon_sym_impl] = ACTIONS(173), - [anon_sym_let] = ACTIONS(176), - [anon_sym_loop] = ACTIONS(179), - [anon_sym_match] = ACTIONS(182), - [anon_sym_mod] = ACTIONS(185), - [anon_sym_pub] = ACTIONS(188), - [anon_sym_return] = ACTIONS(191), - [anon_sym_static] = ACTIONS(194), - [anon_sym_struct] = ACTIONS(197), - [anon_sym_trait] = ACTIONS(200), - [anon_sym_type] = ACTIONS(203), - [anon_sym_union] = ACTIONS(206), - [anon_sym_unsafe] = ACTIONS(209), - [anon_sym_use] = ACTIONS(212), - [anon_sym_while] = ACTIONS(215), - [anon_sym_POUND] = ACTIONS(218), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_extern] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(224), - [anon_sym_COLON_COLON] = ACTIONS(227), - [anon_sym_AMP] = ACTIONS(230), - [anon_sym_DOT_DOT] = ACTIONS(233), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_yield] = ACTIONS(239), - [anon_sym_move] = ACTIONS(242), - [sym_integer_literal] = ACTIONS(245), - [aux_sym_string_literal_token1] = ACTIONS(248), - [sym_char_literal] = ACTIONS(245), - [anon_sym_true] = ACTIONS(251), - [anon_sym_false] = ACTIONS(251), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(254), - [sym_super] = ACTIONS(257), - [sym_crate] = ACTIONS(260), - [sym_metavariable] = ACTIONS(263), - [sym_raw_string_literal] = ACTIONS(245), - [sym_float_literal] = ACTIONS(245), - [sym_block_comment] = ACTIONS(3), - }, - [13] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1220), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym_expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(272), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(272), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -19297,78 +16691,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1219), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [13] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1244), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19444,78 +16838,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [15] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2528), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), + [14] = { + [sym__statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_macro_definition] = STATE(15), + [sym_attribute_item] = STATE(15), + [sym_inner_attribute_item] = STATE(15), + [sym_mod_item] = STATE(15), + [sym_foreign_mod_item] = STATE(15), + [sym_struct_item] = STATE(15), + [sym_union_item] = STATE(15), + [sym_enum_item] = STATE(15), + [sym_extern_crate_declaration] = STATE(15), + [sym_const_item] = STATE(15), + [sym_static_item] = STATE(15), + [sym_type_item] = STATE(15), + [sym_function_item] = STATE(15), + [sym_function_signature_item] = STATE(15), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(15), + [sym_trait_item] = STATE(15), + [sym_associated_type] = STATE(15), + [sym_let_declaration] = STATE(15), + [sym_use_declaration] = STATE(15), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), [sym__expression] = STATE(1257), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19591,7 +16985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [16] = { + [15] = { [sym__statement] = STATE(15), [sym_empty_statement] = STATE(15), [sym_expression_statement] = STATE(15), @@ -19609,60 +17003,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(15), [sym_function_item] = STATE(15), [sym_function_signature_item] = STATE(15), - [sym_function_modifiers] = STATE(2528), + [sym_function_modifiers] = STATE(2477), [sym_impl_item] = STATE(15), [sym_trait_item] = STATE(15), [sym_associated_type] = STATE(15), [sym_let_declaration] = STATE(15), [sym_use_declaration] = STATE(15), - [sym_extern_modifier] = STATE(1484), - [sym_visibility_modifier] = STATE(1339), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1261), - [sym_macro_invocation] = STATE(68), - [sym_scoped_identifier] = STATE(1172), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(70), - [sym_match_expression] = STATE(70), - [sym_while_expression] = STATE(70), - [sym_loop_expression] = STATE(70), - [sym_for_expression] = STATE(70), - [sym_const_block] = STATE(70), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2521), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(70), - [sym_async_block] = STATE(70), - [sym_block] = STATE(70), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1273), + [sym_macro_invocation] = STATE(92), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(114), + [anon_sym_macro_rules_BANG] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_u8] = ACTIONS(132), + [anon_sym_i8] = ACTIONS(132), + [anon_sym_u16] = ACTIONS(132), + [anon_sym_i16] = ACTIONS(132), + [anon_sym_u32] = ACTIONS(132), + [anon_sym_i32] = ACTIONS(132), + [anon_sym_u64] = ACTIONS(132), + [anon_sym_i64] = ACTIONS(132), + [anon_sym_u128] = ACTIONS(132), + [anon_sym_i128] = ACTIONS(132), + [anon_sym_isize] = ACTIONS(132), + [anon_sym_usize] = ACTIONS(132), + [anon_sym_f32] = ACTIONS(132), + [anon_sym_f64] = ACTIONS(132), + [anon_sym_bool] = ACTIONS(132), + [anon_sym_str] = ACTIONS(132), + [anon_sym_char] = ACTIONS(132), + [anon_sym_SQUOTE] = ACTIONS(135), + [anon_sym_async] = ACTIONS(138), + [anon_sym_break] = ACTIONS(141), + [anon_sym_const] = ACTIONS(144), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_default] = ACTIONS(150), + [anon_sym_enum] = ACTIONS(153), + [anon_sym_fn] = ACTIONS(156), + [anon_sym_for] = ACTIONS(159), + [anon_sym_if] = ACTIONS(162), + [anon_sym_impl] = ACTIONS(165), + [anon_sym_let] = ACTIONS(168), + [anon_sym_loop] = ACTIONS(171), + [anon_sym_match] = ACTIONS(174), + [anon_sym_mod] = ACTIONS(177), + [anon_sym_pub] = ACTIONS(180), + [anon_sym_return] = ACTIONS(183), + [anon_sym_static] = ACTIONS(186), + [anon_sym_struct] = ACTIONS(189), + [anon_sym_trait] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_union] = ACTIONS(198), + [anon_sym_unsafe] = ACTIONS(201), + [anon_sym_use] = ACTIONS(204), + [anon_sym_while] = ACTIONS(207), + [anon_sym_POUND] = ACTIONS(210), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_extern] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(216), + [anon_sym_COLON_COLON] = ACTIONS(219), + [anon_sym_AMP] = ACTIONS(222), + [anon_sym_DOT_DOT] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_yield] = ACTIONS(231), + [anon_sym_move] = ACTIONS(234), + [sym_integer_literal] = ACTIONS(237), + [aux_sym_string_literal_token1] = ACTIONS(240), + [sym_char_literal] = ACTIONS(237), + [anon_sym_true] = ACTIONS(243), + [anon_sym_false] = ACTIONS(243), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(246), + [sym_super] = ACTIONS(249), + [sym_crate] = ACTIONS(252), + [sym_metavariable] = ACTIONS(255), + [sym_raw_string_literal] = ACTIONS(237), + [sym_float_literal] = ACTIONS(237), + [sym_block_comment] = ACTIONS(3), + }, + [16] = { + [sym__statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym_attribute_item] = STATE(13), + [sym_inner_attribute_item] = STATE(13), + [sym_mod_item] = STATE(13), + [sym_foreign_mod_item] = STATE(13), + [sym_struct_item] = STATE(13), + [sym_union_item] = STATE(13), + [sym_enum_item] = STATE(13), + [sym_extern_crate_declaration] = STATE(13), + [sym_const_item] = STATE(13), + [sym_static_item] = STATE(13), + [sym_type_item] = STATE(13), + [sym_function_item] = STATE(13), + [sym_function_signature_item] = STATE(13), + [sym_function_modifiers] = STATE(2477), + [sym_impl_item] = STATE(13), + [sym_trait_item] = STATE(13), + [sym_associated_type] = STATE(13), + [sym_let_declaration] = STATE(13), + [sym_use_declaration] = STATE(13), + [sym_extern_modifier] = STATE(1511), + [sym_visibility_modifier] = STATE(1335), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1242), + [sym_macro_invocation] = STATE(60), + [sym_scoped_identifier] = STATE(1171), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(63), + [sym_match_expression] = STATE(63), + [sym_while_expression] = STATE(63), + [sym_loop_expression] = STATE(63), + [sym_for_expression] = STATE(63), + [sym_const_block] = STATE(63), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2468), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(63), + [sym_async_block] = STATE(63), + [sym_block] = STATE(63), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -19739,50 +17280,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [17] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(282), [anon_sym_LPAREN] = ACTIONS(282), @@ -19880,53 +17421,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1128), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(310), [anon_sym_RPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_RBRACE] = ACTIONS(310), @@ -19953,7 +17494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), @@ -20020,62 +17561,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(915), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_EQ_GT] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20094,7 +17635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20109,42 +17650,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), - [anon_sym_else] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_else] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20160,62 +17701,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(915), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(314), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(314), + [anon_sym_SEMI] = ACTIONS(316), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_RPAREN] = ACTIONS(316), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(314), - [anon_sym_EQ_GT] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_RBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_EQ_GT] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_RBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20234,7 +17775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20249,42 +17790,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_COMMA] = ACTIONS(314), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), - [anon_sym_else] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_COMMA] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), + [anon_sym_else] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20300,62 +17841,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LPAREN] = ACTIONS(310), - [anon_sym_RPAREN] = ACTIONS(310), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(320), [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(310), - [anon_sym_EQ_GT] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_RBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -20374,7 +17915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(322), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), @@ -20389,42 +17930,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_COMMA] = ACTIONS(310), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), - [anon_sym_else] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_else] = ACTIONS(322), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(322), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -20440,190 +17981,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_SEMI] = ACTIONS(318), - [anon_sym_LPAREN] = ACTIONS(318), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(318), - [anon_sym_EQ_GT] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(318), - [anon_sym_RBRACK] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(318), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(322), - [anon_sym_as] = ACTIONS(320), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(308), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_COMMA] = ACTIONS(318), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(320), - [anon_sym_else] = ACTIONS(320), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(320), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(320), - [anon_sym_SLASH] = ACTIONS(320), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_PLUS_EQ] = ACTIONS(318), - [anon_sym_DASH_EQ] = ACTIONS(318), - [anon_sym_STAR_EQ] = ACTIONS(318), - [anon_sym_SLASH_EQ] = ACTIONS(318), - [anon_sym_PERCENT_EQ] = ACTIONS(318), - [anon_sym_AMP_EQ] = ACTIONS(318), - [anon_sym_PIPE_EQ] = ACTIONS(318), - [anon_sym_CARET_EQ] = ACTIONS(318), - [anon_sym_LT_LT_EQ] = ACTIONS(318), - [anon_sym_GT_GT_EQ] = ACTIONS(318), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(320), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [23] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(324), [anon_sym_LPAREN] = ACTIONS(13), @@ -20719,51 +18120,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [24] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1132), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [23] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1139), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_SEMI] = ACTIONS(336), [anon_sym_LPAREN] = ACTIONS(13), @@ -20859,51 +18260,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [24] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), + [anon_sym_SEMI] = ACTIONS(320), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_RPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_EQ_GT] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_RBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(308), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_COMMA] = ACTIONS(320), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_else] = ACTIONS(322), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(322), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [25] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1227), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(282), [anon_sym_LBRACE] = ACTIONS(282), @@ -20994,50 +18535,316 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [26] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(322), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [27] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_LBRACE] = ACTIONS(320), + [anon_sym_LBRACK] = ACTIONS(320), + [anon_sym_PLUS] = ACTIONS(322), + [anon_sym_STAR] = ACTIONS(322), + [anon_sym_QMARK] = ACTIONS(320), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(322), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_EQ] = ACTIONS(322), + [anon_sym_LT] = ACTIONS(322), + [anon_sym_GT] = ACTIONS(322), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(320), + [anon_sym_DOT_DOT] = ACTIONS(322), + [anon_sym_DOT_DOT_EQ] = ACTIONS(320), + [anon_sym_DASH] = ACTIONS(322), + [anon_sym_AMP_AMP] = ACTIONS(320), + [anon_sym_PIPE_PIPE] = ACTIONS(320), + [anon_sym_PIPE] = ACTIONS(322), + [anon_sym_CARET] = ACTIONS(322), + [anon_sym_EQ_EQ] = ACTIONS(320), + [anon_sym_BANG_EQ] = ACTIONS(320), + [anon_sym_LT_EQ] = ACTIONS(320), + [anon_sym_GT_EQ] = ACTIONS(320), + [anon_sym_LT_LT] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(322), + [anon_sym_SLASH] = ACTIONS(322), + [anon_sym_PERCENT] = ACTIONS(322), + [anon_sym_PLUS_EQ] = ACTIONS(320), + [anon_sym_DASH_EQ] = ACTIONS(320), + [anon_sym_STAR_EQ] = ACTIONS(320), + [anon_sym_SLASH_EQ] = ACTIONS(320), + [anon_sym_PERCENT_EQ] = ACTIONS(320), + [anon_sym_AMP_EQ] = ACTIONS(320), + [anon_sym_PIPE_EQ] = ACTIONS(320), + [anon_sym_CARET_EQ] = ACTIONS(320), + [anon_sym_LT_LT_EQ] = ACTIONS(320), + [anon_sym_GT_GT_EQ] = ACTIONS(320), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [anon_sym_DOT] = ACTIONS(322), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [28] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(25), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(310), [anon_sym_LBRACE] = ACTIONS(310), @@ -21062,7 +18869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(314), [anon_sym_as] = ACTIONS(312), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), @@ -21126,191 +18933,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [27] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1221), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(326), - [anon_sym_STAR] = ACTIONS(350), - [anon_sym_QMARK] = ACTIONS(324), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(326), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(326), - [anon_sym_LT] = ACTIONS(328), - [anon_sym_GT] = ACTIONS(326), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(364), - [anon_sym_DOT_DOT_DOT] = ACTIONS(324), - [anon_sym_DOT_DOT] = ACTIONS(366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(324), - [anon_sym_DASH] = ACTIONS(350), - [anon_sym_AMP_AMP] = ACTIONS(324), - [anon_sym_PIPE_PIPE] = ACTIONS(324), - [anon_sym_PIPE] = ACTIONS(334), - [anon_sym_CARET] = ACTIONS(326), - [anon_sym_EQ_EQ] = ACTIONS(324), - [anon_sym_BANG_EQ] = ACTIONS(324), - [anon_sym_LT_EQ] = ACTIONS(324), - [anon_sym_GT_EQ] = ACTIONS(324), - [anon_sym_LT_LT] = ACTIONS(326), - [anon_sym_GT_GT] = ACTIONS(326), - [anon_sym_SLASH] = ACTIONS(326), - [anon_sym_PERCENT] = ACTIONS(326), - [anon_sym_PLUS_EQ] = ACTIONS(324), - [anon_sym_DASH_EQ] = ACTIONS(324), - [anon_sym_STAR_EQ] = ACTIONS(324), - [anon_sym_SLASH_EQ] = ACTIONS(324), - [anon_sym_PERCENT_EQ] = ACTIONS(324), - [anon_sym_AMP_EQ] = ACTIONS(324), - [anon_sym_PIPE_EQ] = ACTIONS(324), - [anon_sym_CARET_EQ] = ACTIONS(324), - [anon_sym_LT_LT_EQ] = ACTIONS(324), - [anon_sym_GT_GT_EQ] = ACTIONS(324), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(326), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [28] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [29] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(915), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), + [anon_sym_LPAREN] = ACTIONS(316), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21329,7 +19003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21344,40 +19018,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21392,51 +19066,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [29] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1263), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [30] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1222), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -21525,58 +19199,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [30] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1238), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(25), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [31] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1224), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(318), - [anon_sym_LBRACE] = ACTIONS(318), - [anon_sym_LBRACK] = ACTIONS(318), - [anon_sym_PLUS] = ACTIONS(320), - [anon_sym_STAR] = ACTIONS(320), - [anon_sym_QMARK] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(326), + [anon_sym_STAR] = ACTIONS(350), + [anon_sym_QMARK] = ACTIONS(324), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21594,8 +19268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(342), [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(322), - [anon_sym_as] = ACTIONS(320), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(326), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21610,40 +19284,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(320), - [anon_sym_LT] = ACTIONS(320), - [anon_sym_GT] = ACTIONS(320), + [anon_sym_EQ] = ACTIONS(326), + [anon_sym_LT] = ACTIONS(328), + [anon_sym_GT] = ACTIONS(326), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(318), - [anon_sym_DOT_DOT] = ACTIONS(320), - [anon_sym_DOT_DOT_EQ] = ACTIONS(318), - [anon_sym_DASH] = ACTIONS(320), - [anon_sym_AMP_AMP] = ACTIONS(318), - [anon_sym_PIPE_PIPE] = ACTIONS(318), - [anon_sym_PIPE] = ACTIONS(320), - [anon_sym_CARET] = ACTIONS(320), - [anon_sym_EQ_EQ] = ACTIONS(318), - [anon_sym_BANG_EQ] = ACTIONS(318), - [anon_sym_LT_EQ] = ACTIONS(318), - [anon_sym_GT_EQ] = ACTIONS(318), - [anon_sym_LT_LT] = ACTIONS(320), - [anon_sym_GT_GT] = ACTIONS(320), - [anon_sym_SLASH] = ACTIONS(320), - [anon_sym_PERCENT] = ACTIONS(320), - [anon_sym_PLUS_EQ] = ACTIONS(318), - [anon_sym_DASH_EQ] = ACTIONS(318), - [anon_sym_STAR_EQ] = ACTIONS(318), - [anon_sym_SLASH_EQ] = ACTIONS(318), - [anon_sym_PERCENT_EQ] = ACTIONS(318), - [anon_sym_AMP_EQ] = ACTIONS(318), - [anon_sym_PIPE_EQ] = ACTIONS(318), - [anon_sym_CARET_EQ] = ACTIONS(318), - [anon_sym_LT_LT_EQ] = ACTIONS(318), - [anon_sym_GT_GT_EQ] = ACTIONS(318), + [anon_sym_AMP] = ACTIONS(364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(324), + [anon_sym_DOT_DOT] = ACTIONS(366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(324), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP_AMP] = ACTIONS(324), + [anon_sym_PIPE_PIPE] = ACTIONS(324), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_CARET] = ACTIONS(326), + [anon_sym_EQ_EQ] = ACTIONS(324), + [anon_sym_BANG_EQ] = ACTIONS(324), + [anon_sym_LT_EQ] = ACTIONS(324), + [anon_sym_GT_EQ] = ACTIONS(324), + [anon_sym_LT_LT] = ACTIONS(326), + [anon_sym_GT_GT] = ACTIONS(326), + [anon_sym_SLASH] = ACTIONS(326), + [anon_sym_PERCENT] = ACTIONS(326), + [anon_sym_PLUS_EQ] = ACTIONS(324), + [anon_sym_DASH_EQ] = ACTIONS(324), + [anon_sym_STAR_EQ] = ACTIONS(324), + [anon_sym_SLASH_EQ] = ACTIONS(324), + [anon_sym_PERCENT_EQ] = ACTIONS(324), + [anon_sym_AMP_EQ] = ACTIONS(324), + [anon_sym_PIPE_EQ] = ACTIONS(324), + [anon_sym_CARET_EQ] = ACTIONS(324), + [anon_sym_LT_LT_EQ] = ACTIONS(324), + [anon_sym_GT_GT_EQ] = ACTIONS(324), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(320), + [anon_sym_DOT] = ACTIONS(326), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21658,58 +19332,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [31] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [32] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(915), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(310), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_PLUS] = ACTIONS(312), - [anon_sym_STAR] = ACTIONS(312), - [anon_sym_QMARK] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(316), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_STAR] = ACTIONS(318), + [anon_sym_QMARK] = ACTIONS(316), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -21728,7 +19402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(342), [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(312), + [anon_sym_as] = ACTIONS(318), [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), @@ -21743,40 +19417,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(312), - [anon_sym_LT] = ACTIONS(312), - [anon_sym_GT] = ACTIONS(312), + [anon_sym_EQ] = ACTIONS(318), + [anon_sym_LT] = ACTIONS(318), + [anon_sym_GT] = ACTIONS(318), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(312), - [anon_sym_DOT_DOT_DOT] = ACTIONS(310), - [anon_sym_DOT_DOT] = ACTIONS(312), - [anon_sym_DOT_DOT_EQ] = ACTIONS(310), - [anon_sym_DASH] = ACTIONS(312), - [anon_sym_AMP_AMP] = ACTIONS(310), - [anon_sym_PIPE_PIPE] = ACTIONS(310), - [anon_sym_PIPE] = ACTIONS(312), - [anon_sym_CARET] = ACTIONS(312), - [anon_sym_EQ_EQ] = ACTIONS(310), - [anon_sym_BANG_EQ] = ACTIONS(310), - [anon_sym_LT_EQ] = ACTIONS(310), - [anon_sym_GT_EQ] = ACTIONS(310), - [anon_sym_LT_LT] = ACTIONS(312), - [anon_sym_GT_GT] = ACTIONS(312), - [anon_sym_SLASH] = ACTIONS(312), - [anon_sym_PERCENT] = ACTIONS(312), - [anon_sym_PLUS_EQ] = ACTIONS(310), - [anon_sym_DASH_EQ] = ACTIONS(310), - [anon_sym_STAR_EQ] = ACTIONS(310), - [anon_sym_SLASH_EQ] = ACTIONS(310), - [anon_sym_PERCENT_EQ] = ACTIONS(310), - [anon_sym_AMP_EQ] = ACTIONS(310), - [anon_sym_PIPE_EQ] = ACTIONS(310), - [anon_sym_CARET_EQ] = ACTIONS(310), - [anon_sym_LT_LT_EQ] = ACTIONS(310), - [anon_sym_GT_GT_EQ] = ACTIONS(310), + [anon_sym_AMP] = ACTIONS(318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(316), + [anon_sym_DOT_DOT] = ACTIONS(318), + [anon_sym_DOT_DOT_EQ] = ACTIONS(316), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_AMP_AMP] = ACTIONS(316), + [anon_sym_PIPE_PIPE] = ACTIONS(316), + [anon_sym_PIPE] = ACTIONS(318), + [anon_sym_CARET] = ACTIONS(318), + [anon_sym_EQ_EQ] = ACTIONS(316), + [anon_sym_BANG_EQ] = ACTIONS(316), + [anon_sym_LT_EQ] = ACTIONS(316), + [anon_sym_GT_EQ] = ACTIONS(316), + [anon_sym_LT_LT] = ACTIONS(318), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(318), + [anon_sym_PERCENT] = ACTIONS(318), + [anon_sym_PLUS_EQ] = ACTIONS(316), + [anon_sym_DASH_EQ] = ACTIONS(316), + [anon_sym_STAR_EQ] = ACTIONS(316), + [anon_sym_SLASH_EQ] = ACTIONS(316), + [anon_sym_PERCENT_EQ] = ACTIONS(316), + [anon_sym_AMP_EQ] = ACTIONS(316), + [anon_sym_PIPE_EQ] = ACTIONS(316), + [anon_sym_CARET_EQ] = ACTIONS(316), + [anon_sym_LT_LT_EQ] = ACTIONS(316), + [anon_sym_GT_GT_EQ] = ACTIONS(316), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(312), + [anon_sym_DOT] = ACTIONS(318), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), @@ -21791,189 +19465,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [32] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(314), - [anon_sym_LBRACE] = ACTIONS(314), - [anon_sym_LBRACK] = ACTIONS(314), - [anon_sym_PLUS] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(316), - [anon_sym_QMARK] = ACTIONS(314), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [33] = { + [sym_attribute_item] = STATE(35), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1183), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(35), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(368), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(316), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_EQ] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(316), - [anon_sym_GT] = ACTIONS(316), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(314), - [anon_sym_DOT_DOT] = ACTIONS(316), - [anon_sym_DOT_DOT_EQ] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(316), - [anon_sym_AMP_AMP] = ACTIONS(314), - [anon_sym_PIPE_PIPE] = ACTIONS(314), - [anon_sym_PIPE] = ACTIONS(316), - [anon_sym_CARET] = ACTIONS(316), - [anon_sym_EQ_EQ] = ACTIONS(314), - [anon_sym_BANG_EQ] = ACTIONS(314), - [anon_sym_LT_EQ] = ACTIONS(314), - [anon_sym_GT_EQ] = ACTIONS(314), - [anon_sym_LT_LT] = ACTIONS(316), - [anon_sym_GT_GT] = ACTIONS(316), - [anon_sym_SLASH] = ACTIONS(316), - [anon_sym_PERCENT] = ACTIONS(316), - [anon_sym_PLUS_EQ] = ACTIONS(314), - [anon_sym_DASH_EQ] = ACTIONS(314), - [anon_sym_STAR_EQ] = ACTIONS(314), - [anon_sym_SLASH_EQ] = ACTIONS(314), - [anon_sym_PERCENT_EQ] = ACTIONS(314), - [anon_sym_AMP_EQ] = ACTIONS(314), - [anon_sym_PIPE_EQ] = ACTIONS(314), - [anon_sym_CARET_EQ] = ACTIONS(314), - [anon_sym_LT_LT_EQ] = ACTIONS(314), - [anon_sym_GT_GT_EQ] = ACTIONS(314), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [anon_sym_DOT] = ACTIONS(316), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [33] = { + [34] = { [sym_attribute_item] = STATE(55), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [aux_sym_enum_variant_list_repeat1] = STATE(55), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(368), + [anon_sym_RPAREN] = ACTIONS(374), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -22010,7 +19660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(306), [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(376), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -22033,58 +19683,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [34] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(621), + [35] = { + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1185), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(374), + [anon_sym_RBRACK] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -22119,116 +19769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(306), [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [35] = { - [sym_attribute_item] = STATE(34), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(34), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_COMMA] = ACTIONS(380), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -22252,166 +19793,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1287), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2243), - [sym__let_chain] = STATE(2107), - [sym__condition] = STATE(2544), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2248), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(382), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [37] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2278), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_else_clause] = STATE(87), + [ts_builtin_sym_end] = ACTIONS(390), + [sym_identifier] = ACTIONS(392), + [anon_sym_SEMI] = ACTIONS(390), + [anon_sym_macro_rules_BANG] = ACTIONS(390), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_LBRACE] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(392), + [anon_sym_i8] = ACTIONS(392), + [anon_sym_u16] = ACTIONS(392), + [anon_sym_i16] = ACTIONS(392), + [anon_sym_u32] = ACTIONS(392), + [anon_sym_i32] = ACTIONS(392), + [anon_sym_u64] = ACTIONS(392), + [anon_sym_i64] = ACTIONS(392), + [anon_sym_u128] = ACTIONS(392), + [anon_sym_i128] = ACTIONS(392), + [anon_sym_isize] = ACTIONS(392), + [anon_sym_usize] = ACTIONS(392), + [anon_sym_f32] = ACTIONS(392), + [anon_sym_f64] = ACTIONS(392), + [anon_sym_bool] = ACTIONS(392), + [anon_sym_str] = ACTIONS(392), + [anon_sym_char] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(392), + [anon_sym_as] = ACTIONS(392), + [anon_sym_async] = ACTIONS(392), + [anon_sym_break] = ACTIONS(392), + [anon_sym_const] = ACTIONS(392), + [anon_sym_continue] = ACTIONS(392), + [anon_sym_default] = ACTIONS(392), + [anon_sym_enum] = ACTIONS(392), + [anon_sym_fn] = ACTIONS(392), + [anon_sym_for] = ACTIONS(392), + [anon_sym_if] = ACTIONS(392), + [anon_sym_impl] = ACTIONS(392), + [anon_sym_let] = ACTIONS(392), + [anon_sym_loop] = ACTIONS(392), + [anon_sym_match] = ACTIONS(392), + [anon_sym_mod] = ACTIONS(392), + [anon_sym_pub] = ACTIONS(392), + [anon_sym_return] = ACTIONS(392), + [anon_sym_static] = ACTIONS(392), + [anon_sym_struct] = ACTIONS(392), + [anon_sym_trait] = ACTIONS(392), + [anon_sym_type] = ACTIONS(392), + [anon_sym_union] = ACTIONS(392), + [anon_sym_unsafe] = ACTIONS(392), + [anon_sym_use] = ACTIONS(392), + [anon_sym_while] = ACTIONS(392), + [anon_sym_POUND] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(392), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_extern] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(392), + [anon_sym_else] = ACTIONS(394), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_yield] = ACTIONS(392), + [anon_sym_move] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(392), + [sym_integer_literal] = ACTIONS(390), + [aux_sym_string_literal_token1] = ACTIONS(390), + [sym_char_literal] = ACTIONS(390), + [anon_sym_true] = ACTIONS(392), + [anon_sym_false] = ACTIONS(392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(392), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(390), + [sym_raw_string_literal] = ACTIONS(390), + [sym_float_literal] = ACTIONS(390), + [sym_block_comment] = ACTIONS(3), + }, + [38] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2288), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22437,19 +20086,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22467,167 +20116,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [38] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(280), + [39] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2310), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [39] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2240), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [40] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2222), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22653,19 +20302,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22683,59 +20332,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [40] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2300), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [41] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2295), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22761,19 +20410,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22791,59 +20440,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [41] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2217), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [42] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2208), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -22869,19 +20518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -22899,56 +20548,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [42] = { - [sym_attribute_item] = STATE(51), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1226), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(51), + [43] = { + [sym_attribute_item] = STATE(52), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(52), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(394), + [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23007,272 +20656,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [43] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2183), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [44] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2134), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [sym_attribute_item] = STATE(52), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(398), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1276), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2253), + [sym__let_chain] = STATE(2251), + [sym__condition] = STATE(2544), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23301,13 +20842,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(400), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -23332,163 +20873,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [46] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2136), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [47] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [sym_attribute_item] = STATE(52), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(52), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(398), + [anon_sym_RPAREN] = ACTIONS(402), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -23547,167 +20980,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [48] = { - [sym_else_clause] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(400), - [sym_identifier] = ACTIONS(402), - [anon_sym_SEMI] = ACTIONS(400), - [anon_sym_macro_rules_BANG] = ACTIONS(400), - [anon_sym_LPAREN] = ACTIONS(400), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_PLUS] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_QMARK] = ACTIONS(400), - [anon_sym_u8] = ACTIONS(402), - [anon_sym_i8] = ACTIONS(402), - [anon_sym_u16] = ACTIONS(402), - [anon_sym_i16] = ACTIONS(402), - [anon_sym_u32] = ACTIONS(402), - [anon_sym_i32] = ACTIONS(402), - [anon_sym_u64] = ACTIONS(402), - [anon_sym_i64] = ACTIONS(402), - [anon_sym_u128] = ACTIONS(402), - [anon_sym_i128] = ACTIONS(402), - [anon_sym_isize] = ACTIONS(402), - [anon_sym_usize] = ACTIONS(402), - [anon_sym_f32] = ACTIONS(402), - [anon_sym_f64] = ACTIONS(402), - [anon_sym_bool] = ACTIONS(402), - [anon_sym_str] = ACTIONS(402), - [anon_sym_char] = ACTIONS(402), - [anon_sym_SQUOTE] = ACTIONS(402), - [anon_sym_as] = ACTIONS(402), - [anon_sym_async] = ACTIONS(402), - [anon_sym_break] = ACTIONS(402), - [anon_sym_const] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(402), - [anon_sym_default] = ACTIONS(402), - [anon_sym_enum] = ACTIONS(402), - [anon_sym_fn] = ACTIONS(402), - [anon_sym_for] = ACTIONS(402), - [anon_sym_if] = ACTIONS(402), - [anon_sym_impl] = ACTIONS(402), - [anon_sym_let] = ACTIONS(402), - [anon_sym_loop] = ACTIONS(402), - [anon_sym_match] = ACTIONS(402), - [anon_sym_mod] = ACTIONS(402), - [anon_sym_pub] = ACTIONS(402), - [anon_sym_return] = ACTIONS(402), - [anon_sym_static] = ACTIONS(402), - [anon_sym_struct] = ACTIONS(402), - [anon_sym_trait] = ACTIONS(402), - [anon_sym_type] = ACTIONS(402), - [anon_sym_union] = ACTIONS(402), - [anon_sym_unsafe] = ACTIONS(402), - [anon_sym_use] = ACTIONS(402), - [anon_sym_while] = ACTIONS(402), - [anon_sym_POUND] = ACTIONS(400), - [anon_sym_BANG] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(402), - [anon_sym_extern] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), - [anon_sym_else] = ACTIONS(404), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(400), - [anon_sym_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_PIPE_PIPE] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(402), - [anon_sym_CARET] = ACTIONS(402), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT_EQ] = ACTIONS(400), - [anon_sym_GT_EQ] = ACTIONS(400), - [anon_sym_LT_LT] = ACTIONS(402), - [anon_sym_GT_GT] = ACTIONS(402), - [anon_sym_SLASH] = ACTIONS(402), - [anon_sym_PERCENT] = ACTIONS(402), - [anon_sym_PLUS_EQ] = ACTIONS(400), - [anon_sym_DASH_EQ] = ACTIONS(400), - [anon_sym_STAR_EQ] = ACTIONS(400), - [anon_sym_SLASH_EQ] = ACTIONS(400), - [anon_sym_PERCENT_EQ] = ACTIONS(400), - [anon_sym_AMP_EQ] = ACTIONS(400), - [anon_sym_PIPE_EQ] = ACTIONS(400), - [anon_sym_CARET_EQ] = ACTIONS(400), - [anon_sym_LT_LT_EQ] = ACTIONS(400), - [anon_sym_GT_GT_EQ] = ACTIONS(400), - [anon_sym_yield] = ACTIONS(402), - [anon_sym_move] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(402), - [sym_integer_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(400), - [sym_char_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(402), - [sym_super] = ACTIONS(402), - [sym_crate] = ACTIONS(402), - [sym_metavariable] = ACTIONS(400), - [sym_raw_string_literal] = ACTIONS(400), - [sym_float_literal] = ACTIONS(400), - [sym_block_comment] = ACTIONS(3), - }, - [49] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2275), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [47] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2146), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23733,19 +21058,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23763,59 +21088,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [50] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1272), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(2190), - [sym__let_chain] = STATE(2118), - [sym__condition] = STATE(2137), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [48] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2225), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -23841,19 +21166,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(348), [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -23871,162 +21196,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [51] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1273), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(280), + [49] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1279), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(2286), + [sym__let_chain] = STATE(2294), + [sym__condition] = STATE(2285), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [52] = { - [sym_attribute_item] = STATE(57), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1223), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(57), + [50] = { + [sym_attribute_item] = STATE(54), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(54), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(404), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -24085,7 +21412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [53] = { + [51] = { [ts_builtin_sym_end] = ACTIONS(406), [sym_identifier] = ACTIONS(408), [anon_sym_SEMI] = ACTIONS(406), @@ -24192,27 +21519,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, - [54] = { - [ts_builtin_sym_end] = ACTIONS(410), - [sym_identifier] = ACTIONS(412), - [anon_sym_SEMI] = ACTIONS(410), - [anon_sym_macro_rules_BANG] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_LBRACE] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(410), - [anon_sym_u8] = ACTIONS(412), - [anon_sym_i8] = ACTIONS(412), - [anon_sym_u16] = ACTIONS(412), - [anon_sym_i16] = ACTIONS(412), - [anon_sym_u32] = ACTIONS(412), - [anon_sym_i32] = ACTIONS(412), - [anon_sym_u64] = ACTIONS(412), - [anon_sym_i64] = ACTIONS(412), - [anon_sym_u128] = ACTIONS(412), + [52] = { + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1259), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [53] = { + [ts_builtin_sym_end] = ACTIONS(410), + [sym_identifier] = ACTIONS(412), + [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_macro_rules_BANG] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), [anon_sym_i128] = ACTIONS(412), [anon_sym_isize] = ACTIONS(412), [anon_sym_usize] = ACTIONS(412), @@ -24299,53 +21733,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, + [54] = { + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1278), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [55] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(623), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24514,52 +22055,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [57] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1255), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_enum_variant_list_repeat1] = STATE(621), + [sym_attribute_item] = STATE(52), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_enum_variant_list_repeat1] = STATE(52), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24621,157 +22162,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [58] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(1962), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_tuple_expression_repeat1] = STATE(82), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(418), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [59] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(1962), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [ts_builtin_sym_end] = ACTIONS(420), + [sym_identifier] = ACTIONS(422), + [anon_sym_SEMI] = ACTIONS(420), + [anon_sym_macro_rules_BANG] = ACTIONS(420), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(422), + [anon_sym_QMARK] = ACTIONS(420), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_isize] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_f32] = ACTIONS(422), + [anon_sym_f64] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_str] = ACTIONS(422), + [anon_sym_char] = ACTIONS(422), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_as] = ACTIONS(422), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_const] = ACTIONS(422), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_default] = ACTIONS(422), + [anon_sym_enum] = ACTIONS(422), + [anon_sym_fn] = ACTIONS(422), + [anon_sym_for] = ACTIONS(422), + [anon_sym_if] = ACTIONS(422), + [anon_sym_impl] = ACTIONS(422), + [anon_sym_let] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(422), + [anon_sym_match] = ACTIONS(422), + [anon_sym_mod] = ACTIONS(422), + [anon_sym_pub] = ACTIONS(422), + [anon_sym_return] = ACTIONS(422), + [anon_sym_static] = ACTIONS(422), + [anon_sym_struct] = ACTIONS(422), + [anon_sym_trait] = ACTIONS(422), + [anon_sym_type] = ACTIONS(422), + [anon_sym_union] = ACTIONS(422), + [anon_sym_unsafe] = ACTIONS(422), + [anon_sym_use] = ACTIONS(422), + [anon_sym_while] = ACTIONS(422), + [anon_sym_POUND] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(422), + [anon_sym_EQ] = ACTIONS(422), + [anon_sym_extern] = ACTIONS(422), + [anon_sym_LT] = ACTIONS(422), + [anon_sym_GT] = ACTIONS(422), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_AMP] = ACTIONS(422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(422), + [anon_sym_DOT_DOT_EQ] = ACTIONS(420), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_AMP_AMP] = ACTIONS(420), + [anon_sym_PIPE_PIPE] = ACTIONS(420), + [anon_sym_PIPE] = ACTIONS(422), + [anon_sym_CARET] = ACTIONS(422), + [anon_sym_EQ_EQ] = ACTIONS(420), + [anon_sym_BANG_EQ] = ACTIONS(420), + [anon_sym_LT_EQ] = ACTIONS(420), + [anon_sym_GT_EQ] = ACTIONS(420), + [anon_sym_LT_LT] = ACTIONS(422), + [anon_sym_GT_GT] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(422), + [anon_sym_PERCENT] = ACTIONS(422), + [anon_sym_PLUS_EQ] = ACTIONS(420), + [anon_sym_DASH_EQ] = ACTIONS(420), + [anon_sym_STAR_EQ] = ACTIONS(420), + [anon_sym_SLASH_EQ] = ACTIONS(420), + [anon_sym_PERCENT_EQ] = ACTIONS(420), + [anon_sym_AMP_EQ] = ACTIONS(420), + [anon_sym_PIPE_EQ] = ACTIONS(420), + [anon_sym_CARET_EQ] = ACTIONS(420), + [anon_sym_LT_LT_EQ] = ACTIONS(420), + [anon_sym_GT_GT_EQ] = ACTIONS(420), + [anon_sym_yield] = ACTIONS(422), + [anon_sym_move] = ACTIONS(422), + [anon_sym_DOT] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(420), + [aux_sym_string_literal_token1] = ACTIONS(420), + [sym_char_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(422), + [sym_super] = ACTIONS(422), + [sym_crate] = ACTIONS(422), + [sym_metavariable] = ACTIONS(420), + [sym_raw_string_literal] = ACTIONS(420), + [sym_float_literal] = ACTIONS(420), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(424), + [sym_identifier] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_macro_rules_BANG] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_u8] = ACTIONS(426), + [anon_sym_i8] = ACTIONS(426), + [anon_sym_u16] = ACTIONS(426), + [anon_sym_i16] = ACTIONS(426), + [anon_sym_u32] = ACTIONS(426), + [anon_sym_i32] = ACTIONS(426), + [anon_sym_u64] = ACTIONS(426), + [anon_sym_i64] = ACTIONS(426), + [anon_sym_u128] = ACTIONS(426), + [anon_sym_i128] = ACTIONS(426), + [anon_sym_isize] = ACTIONS(426), + [anon_sym_usize] = ACTIONS(426), + [anon_sym_f32] = ACTIONS(426), + [anon_sym_f64] = ACTIONS(426), + [anon_sym_bool] = ACTIONS(426), + [anon_sym_str] = ACTIONS(426), + [anon_sym_char] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), + [anon_sym_as] = ACTIONS(430), + [anon_sym_async] = ACTIONS(426), + [anon_sym_break] = ACTIONS(426), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(426), + [anon_sym_default] = ACTIONS(426), + [anon_sym_enum] = ACTIONS(426), + [anon_sym_fn] = ACTIONS(426), + [anon_sym_for] = ACTIONS(426), + [anon_sym_if] = ACTIONS(426), + [anon_sym_impl] = ACTIONS(426), + [anon_sym_let] = ACTIONS(426), + [anon_sym_loop] = ACTIONS(426), + [anon_sym_match] = ACTIONS(426), + [anon_sym_mod] = ACTIONS(426), + [anon_sym_pub] = ACTIONS(426), + [anon_sym_return] = ACTIONS(426), + [anon_sym_static] = ACTIONS(426), + [anon_sym_struct] = ACTIONS(426), + [anon_sym_trait] = ACTIONS(426), + [anon_sym_type] = ACTIONS(426), + [anon_sym_union] = ACTIONS(426), + [anon_sym_unsafe] = ACTIONS(426), + [anon_sym_use] = ACTIONS(426), + [anon_sym_while] = ACTIONS(426), + [anon_sym_POUND] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(426), + [anon_sym_move] = ACTIONS(426), + [anon_sym_DOT] = ACTIONS(430), + [sym_integer_literal] = ACTIONS(424), + [aux_sym_string_literal_token1] = ACTIONS(424), + [sym_char_literal] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(424), + [sym_raw_string_literal] = ACTIONS(424), + [sym_float_literal] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + }, + [61] = { + [ts_builtin_sym_end] = ACTIONS(432), + [sym_identifier] = ACTIONS(434), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_macro_rules_BANG] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(432), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_isize] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_f32] = ACTIONS(434), + [anon_sym_f64] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_str] = ACTIONS(434), + [anon_sym_char] = ACTIONS(434), + [anon_sym_SQUOTE] = ACTIONS(434), + [anon_sym_as] = ACTIONS(434), + [anon_sym_async] = ACTIONS(434), + [anon_sym_break] = ACTIONS(434), + [anon_sym_const] = ACTIONS(434), + [anon_sym_continue] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_enum] = ACTIONS(434), + [anon_sym_fn] = ACTIONS(434), + [anon_sym_for] = ACTIONS(434), + [anon_sym_if] = ACTIONS(434), + [anon_sym_impl] = ACTIONS(434), + [anon_sym_let] = ACTIONS(434), + [anon_sym_loop] = ACTIONS(434), + [anon_sym_match] = ACTIONS(434), + [anon_sym_mod] = ACTIONS(434), + [anon_sym_pub] = ACTIONS(434), + [anon_sym_return] = ACTIONS(434), + [anon_sym_static] = ACTIONS(434), + [anon_sym_struct] = ACTIONS(434), + [anon_sym_trait] = ACTIONS(434), + [anon_sym_type] = ACTIONS(434), + [anon_sym_union] = ACTIONS(434), + [anon_sym_unsafe] = ACTIONS(434), + [anon_sym_use] = ACTIONS(434), + [anon_sym_while] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(434), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_extern] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym_AMP] = ACTIONS(434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(432), + [anon_sym_DOT_DOT] = ACTIONS(434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_AMP_AMP] = ACTIONS(432), + [anon_sym_PIPE_PIPE] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(434), + [anon_sym_CARET] = ACTIONS(434), + [anon_sym_EQ_EQ] = ACTIONS(432), + [anon_sym_BANG_EQ] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(432), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(434), + [anon_sym_GT_GT] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_yield] = ACTIONS(434), + [anon_sym_move] = ACTIONS(434), + [anon_sym_DOT] = ACTIONS(434), + [sym_integer_literal] = ACTIONS(432), + [aux_sym_string_literal_token1] = ACTIONS(432), + [sym_char_literal] = ACTIONS(432), + [anon_sym_true] = ACTIONS(434), + [anon_sym_false] = ACTIONS(434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(434), + [sym_super] = ACTIONS(434), + [sym_crate] = ACTIONS(434), + [sym_metavariable] = ACTIONS(432), + [sym_raw_string_literal] = ACTIONS(432), + [sym_float_literal] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1284), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(1879), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -24802,7 +22661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(382), + [anon_sym_let] = ACTIONS(400), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -24813,7 +22672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -24832,749 +22691,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(422), - [sym_identifier] = ACTIONS(424), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_macro_rules_BANG] = ACTIONS(422), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_LBRACE] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_u8] = ACTIONS(424), - [anon_sym_i8] = ACTIONS(424), - [anon_sym_u16] = ACTIONS(424), - [anon_sym_i16] = ACTIONS(424), - [anon_sym_u32] = ACTIONS(424), - [anon_sym_i32] = ACTIONS(424), - [anon_sym_u64] = ACTIONS(424), - [anon_sym_i64] = ACTIONS(424), - [anon_sym_u128] = ACTIONS(424), - [anon_sym_i128] = ACTIONS(424), - [anon_sym_isize] = ACTIONS(424), - [anon_sym_usize] = ACTIONS(424), - [anon_sym_f32] = ACTIONS(424), - [anon_sym_f64] = ACTIONS(424), - [anon_sym_bool] = ACTIONS(424), - [anon_sym_str] = ACTIONS(424), - [anon_sym_char] = ACTIONS(424), - [anon_sym_SQUOTE] = ACTIONS(424), - [anon_sym_as] = ACTIONS(424), - [anon_sym_async] = ACTIONS(424), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(424), - [anon_sym_continue] = ACTIONS(424), - [anon_sym_default] = ACTIONS(424), - [anon_sym_enum] = ACTIONS(424), - [anon_sym_fn] = ACTIONS(424), - [anon_sym_for] = ACTIONS(424), - [anon_sym_if] = ACTIONS(424), - [anon_sym_impl] = ACTIONS(424), - [anon_sym_let] = ACTIONS(424), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(424), - [anon_sym_mod] = ACTIONS(424), - [anon_sym_pub] = ACTIONS(424), - [anon_sym_return] = ACTIONS(424), - [anon_sym_static] = ACTIONS(424), - [anon_sym_struct] = ACTIONS(424), - [anon_sym_trait] = ACTIONS(424), - [anon_sym_type] = ACTIONS(424), - [anon_sym_union] = ACTIONS(424), - [anon_sym_unsafe] = ACTIONS(424), - [anon_sym_use] = ACTIONS(424), - [anon_sym_while] = ACTIONS(424), - [anon_sym_POUND] = ACTIONS(422), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_extern] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(422), - [anon_sym_DOT_DOT] = ACTIONS(424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_CARET] = ACTIONS(424), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(424), - [anon_sym_PERCENT] = ACTIONS(424), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_yield] = ACTIONS(424), - [anon_sym_move] = ACTIONS(424), - [anon_sym_DOT] = ACTIONS(424), - [sym_integer_literal] = ACTIONS(422), - [aux_sym_string_literal_token1] = ACTIONS(422), - [sym_char_literal] = ACTIONS(422), - [anon_sym_true] = ACTIONS(424), - [anon_sym_false] = ACTIONS(424), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(424), - [sym_super] = ACTIONS(424), - [sym_crate] = ACTIONS(424), - [sym_metavariable] = ACTIONS(422), - [sym_raw_string_literal] = ACTIONS(422), - [sym_float_literal] = ACTIONS(422), - [sym_block_comment] = ACTIONS(3), - }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(426), - [sym_identifier] = ACTIONS(428), - [anon_sym_SEMI] = ACTIONS(426), - [anon_sym_macro_rules_BANG] = ACTIONS(426), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_LBRACE] = ACTIONS(426), - [anon_sym_RBRACE] = ACTIONS(426), - [anon_sym_LBRACK] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_STAR] = ACTIONS(428), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(428), - [anon_sym_i8] = ACTIONS(428), - [anon_sym_u16] = ACTIONS(428), - [anon_sym_i16] = ACTIONS(428), - [anon_sym_u32] = ACTIONS(428), - [anon_sym_i32] = ACTIONS(428), - [anon_sym_u64] = ACTIONS(428), - [anon_sym_i64] = ACTIONS(428), - [anon_sym_u128] = ACTIONS(428), - [anon_sym_i128] = ACTIONS(428), - [anon_sym_isize] = ACTIONS(428), - [anon_sym_usize] = ACTIONS(428), - [anon_sym_f32] = ACTIONS(428), - [anon_sym_f64] = ACTIONS(428), - [anon_sym_bool] = ACTIONS(428), - [anon_sym_str] = ACTIONS(428), - [anon_sym_char] = ACTIONS(428), - [anon_sym_SQUOTE] = ACTIONS(428), - [anon_sym_as] = ACTIONS(428), - [anon_sym_async] = ACTIONS(428), - [anon_sym_break] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_fn] = ACTIONS(428), - [anon_sym_for] = ACTIONS(428), - [anon_sym_if] = ACTIONS(428), - [anon_sym_impl] = ACTIONS(428), - [anon_sym_let] = ACTIONS(428), - [anon_sym_loop] = ACTIONS(428), - [anon_sym_match] = ACTIONS(428), - [anon_sym_mod] = ACTIONS(428), - [anon_sym_pub] = ACTIONS(428), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(428), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_trait] = ACTIONS(428), - [anon_sym_type] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [anon_sym_unsafe] = ACTIONS(428), - [anon_sym_use] = ACTIONS(428), - [anon_sym_while] = ACTIONS(428), - [anon_sym_POUND] = ACTIONS(426), - [anon_sym_BANG] = ACTIONS(428), - [anon_sym_EQ] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_GT] = ACTIONS(428), - [anon_sym_COLON_COLON] = ACTIONS(426), - [anon_sym_AMP] = ACTIONS(428), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), - [anon_sym_DOT_DOT] = ACTIONS(428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_EQ_EQ] = ACTIONS(426), - [anon_sym_BANG_EQ] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(426), - [anon_sym_GT_EQ] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(428), - [anon_sym_GT_GT] = ACTIONS(428), - [anon_sym_SLASH] = ACTIONS(428), - [anon_sym_PERCENT] = ACTIONS(428), - [anon_sym_PLUS_EQ] = ACTIONS(426), - [anon_sym_DASH_EQ] = ACTIONS(426), - [anon_sym_STAR_EQ] = ACTIONS(426), - [anon_sym_SLASH_EQ] = ACTIONS(426), - [anon_sym_PERCENT_EQ] = ACTIONS(426), - [anon_sym_AMP_EQ] = ACTIONS(426), - [anon_sym_PIPE_EQ] = ACTIONS(426), - [anon_sym_CARET_EQ] = ACTIONS(426), - [anon_sym_LT_LT_EQ] = ACTIONS(426), - [anon_sym_GT_GT_EQ] = ACTIONS(426), - [anon_sym_yield] = ACTIONS(428), - [anon_sym_move] = ACTIONS(428), - [anon_sym_DOT] = ACTIONS(428), - [sym_integer_literal] = ACTIONS(426), - [aux_sym_string_literal_token1] = ACTIONS(426), - [sym_char_literal] = ACTIONS(426), - [anon_sym_true] = ACTIONS(428), - [anon_sym_false] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(428), - [sym_super] = ACTIONS(428), - [sym_crate] = ACTIONS(428), - [sym_metavariable] = ACTIONS(426), - [sym_raw_string_literal] = ACTIONS(426), - [sym_float_literal] = ACTIONS(426), - [sym_block_comment] = ACTIONS(3), - }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(430), - [sym_identifier] = ACTIONS(432), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_macro_rules_BANG] = ACTIONS(430), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_u8] = ACTIONS(432), - [anon_sym_i8] = ACTIONS(432), - [anon_sym_u16] = ACTIONS(432), - [anon_sym_i16] = ACTIONS(432), - [anon_sym_u32] = ACTIONS(432), - [anon_sym_i32] = ACTIONS(432), - [anon_sym_u64] = ACTIONS(432), - [anon_sym_i64] = ACTIONS(432), - [anon_sym_u128] = ACTIONS(432), - [anon_sym_i128] = ACTIONS(432), - [anon_sym_isize] = ACTIONS(432), - [anon_sym_usize] = ACTIONS(432), - [anon_sym_f32] = ACTIONS(432), - [anon_sym_f64] = ACTIONS(432), - [anon_sym_bool] = ACTIONS(432), - [anon_sym_str] = ACTIONS(432), - [anon_sym_char] = ACTIONS(432), - [anon_sym_SQUOTE] = ACTIONS(432), - [anon_sym_as] = ACTIONS(432), - [anon_sym_async] = ACTIONS(432), - [anon_sym_break] = ACTIONS(432), - [anon_sym_const] = ACTIONS(432), - [anon_sym_continue] = ACTIONS(432), - [anon_sym_default] = ACTIONS(432), - [anon_sym_enum] = ACTIONS(432), - [anon_sym_fn] = ACTIONS(432), - [anon_sym_for] = ACTIONS(432), - [anon_sym_if] = ACTIONS(432), - [anon_sym_impl] = ACTIONS(432), - [anon_sym_let] = ACTIONS(432), - [anon_sym_loop] = ACTIONS(432), - [anon_sym_match] = ACTIONS(432), - [anon_sym_mod] = ACTIONS(432), - [anon_sym_pub] = ACTIONS(432), - [anon_sym_return] = ACTIONS(432), - [anon_sym_static] = ACTIONS(432), - [anon_sym_struct] = ACTIONS(432), - [anon_sym_trait] = ACTIONS(432), - [anon_sym_type] = ACTIONS(432), - [anon_sym_union] = ACTIONS(432), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_use] = ACTIONS(432), - [anon_sym_while] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_BANG] = ACTIONS(432), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_extern] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(432), - [anon_sym_COLON_COLON] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(430), - [anon_sym_DOT_DOT] = ACTIONS(432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(430), - [anon_sym_LT_LT] = ACTIONS(432), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_PLUS_EQ] = ACTIONS(430), - [anon_sym_DASH_EQ] = ACTIONS(430), - [anon_sym_STAR_EQ] = ACTIONS(430), - [anon_sym_SLASH_EQ] = ACTIONS(430), - [anon_sym_PERCENT_EQ] = ACTIONS(430), - [anon_sym_AMP_EQ] = ACTIONS(430), - [anon_sym_PIPE_EQ] = ACTIONS(430), - [anon_sym_CARET_EQ] = ACTIONS(430), - [anon_sym_LT_LT_EQ] = ACTIONS(430), - [anon_sym_GT_GT_EQ] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(432), - [anon_sym_move] = ACTIONS(432), - [anon_sym_DOT] = ACTIONS(432), - [sym_integer_literal] = ACTIONS(430), - [aux_sym_string_literal_token1] = ACTIONS(430), - [sym_char_literal] = ACTIONS(430), - [anon_sym_true] = ACTIONS(432), - [anon_sym_false] = ACTIONS(432), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(432), - [sym_super] = ACTIONS(432), - [sym_crate] = ACTIONS(432), - [sym_metavariable] = ACTIONS(430), - [sym_raw_string_literal] = ACTIONS(430), - [sym_float_literal] = ACTIONS(430), - [sym_block_comment] = ACTIONS(3), - }, [63] = { - [ts_builtin_sym_end] = ACTIONS(434), - [sym_identifier] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(434), - [anon_sym_macro_rules_BANG] = ACTIONS(434), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_LBRACE] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(434), - [anon_sym_u8] = ACTIONS(436), - [anon_sym_i8] = ACTIONS(436), - [anon_sym_u16] = ACTIONS(436), - [anon_sym_i16] = ACTIONS(436), - [anon_sym_u32] = ACTIONS(436), - [anon_sym_i32] = ACTIONS(436), - [anon_sym_u64] = ACTIONS(436), - [anon_sym_i64] = ACTIONS(436), - [anon_sym_u128] = ACTIONS(436), - [anon_sym_i128] = ACTIONS(436), - [anon_sym_isize] = ACTIONS(436), - [anon_sym_usize] = ACTIONS(436), - [anon_sym_f32] = ACTIONS(436), - [anon_sym_f64] = ACTIONS(436), - [anon_sym_bool] = ACTIONS(436), - [anon_sym_str] = ACTIONS(436), - [anon_sym_char] = ACTIONS(436), - [anon_sym_SQUOTE] = ACTIONS(436), - [anon_sym_as] = ACTIONS(436), - [anon_sym_async] = ACTIONS(436), - [anon_sym_break] = ACTIONS(436), - [anon_sym_const] = ACTIONS(436), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_default] = ACTIONS(436), - [anon_sym_enum] = ACTIONS(436), - [anon_sym_fn] = ACTIONS(436), - [anon_sym_for] = ACTIONS(436), - [anon_sym_if] = ACTIONS(436), - [anon_sym_impl] = ACTIONS(436), - [anon_sym_let] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(436), - [anon_sym_match] = ACTIONS(436), - [anon_sym_mod] = ACTIONS(436), - [anon_sym_pub] = ACTIONS(436), - [anon_sym_return] = ACTIONS(436), - [anon_sym_static] = ACTIONS(436), - [anon_sym_struct] = ACTIONS(436), - [anon_sym_trait] = ACTIONS(436), - [anon_sym_type] = ACTIONS(436), - [anon_sym_union] = ACTIONS(436), - [anon_sym_unsafe] = ACTIONS(436), - [anon_sym_use] = ACTIONS(436), - [anon_sym_while] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(434), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_extern] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_COLON_COLON] = ACTIONS(434), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(434), - [anon_sym_DOT_DOT] = ACTIONS(436), - [anon_sym_DOT_DOT_EQ] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(434), - [anon_sym_BANG_EQ] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(436), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_PLUS_EQ] = ACTIONS(434), - [anon_sym_DASH_EQ] = ACTIONS(434), - [anon_sym_STAR_EQ] = ACTIONS(434), - [anon_sym_SLASH_EQ] = ACTIONS(434), - [anon_sym_PERCENT_EQ] = ACTIONS(434), - [anon_sym_AMP_EQ] = ACTIONS(434), - [anon_sym_PIPE_EQ] = ACTIONS(434), - [anon_sym_CARET_EQ] = ACTIONS(434), - [anon_sym_LT_LT_EQ] = ACTIONS(434), - [anon_sym_GT_GT_EQ] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(436), - [anon_sym_DOT] = ACTIONS(436), - [sym_integer_literal] = ACTIONS(434), - [aux_sym_string_literal_token1] = ACTIONS(434), - [sym_char_literal] = ACTIONS(434), - [anon_sym_true] = ACTIONS(436), - [anon_sym_false] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(436), - [sym_super] = ACTIONS(436), - [sym_crate] = ACTIONS(436), - [sym_metavariable] = ACTIONS(434), - [sym_raw_string_literal] = ACTIONS(434), - [sym_float_literal] = ACTIONS(434), + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_macro_rules_BANG] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_u8] = ACTIONS(438), + [anon_sym_i8] = ACTIONS(438), + [anon_sym_u16] = ACTIONS(438), + [anon_sym_i16] = ACTIONS(438), + [anon_sym_u32] = ACTIONS(438), + [anon_sym_i32] = ACTIONS(438), + [anon_sym_u64] = ACTIONS(438), + [anon_sym_i64] = ACTIONS(438), + [anon_sym_u128] = ACTIONS(438), + [anon_sym_i128] = ACTIONS(438), + [anon_sym_isize] = ACTIONS(438), + [anon_sym_usize] = ACTIONS(438), + [anon_sym_f32] = ACTIONS(438), + [anon_sym_f64] = ACTIONS(438), + [anon_sym_bool] = ACTIONS(438), + [anon_sym_str] = ACTIONS(438), + [anon_sym_char] = ACTIONS(438), + [anon_sym_SQUOTE] = ACTIONS(438), + [anon_sym_as] = ACTIONS(430), + [anon_sym_async] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_const] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_enum] = ACTIONS(438), + [anon_sym_fn] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_impl] = ACTIONS(438), + [anon_sym_let] = ACTIONS(438), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(438), + [anon_sym_mod] = ACTIONS(438), + [anon_sym_pub] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_static] = ACTIONS(438), + [anon_sym_struct] = ACTIONS(438), + [anon_sym_trait] = ACTIONS(438), + [anon_sym_type] = ACTIONS(438), + [anon_sym_union] = ACTIONS(438), + [anon_sym_unsafe] = ACTIONS(438), + [anon_sym_use] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [anon_sym_POUND] = ACTIONS(436), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_move] = ACTIONS(438), + [anon_sym_DOT] = ACTIONS(430), + [sym_integer_literal] = ACTIONS(436), + [aux_sym_string_literal_token1] = ACTIONS(436), + [sym_char_literal] = ACTIONS(436), + [anon_sym_true] = ACTIONS(438), + [anon_sym_false] = ACTIONS(438), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(438), + [sym_super] = ACTIONS(438), + [sym_crate] = ACTIONS(438), + [sym_metavariable] = ACTIONS(436), + [sym_raw_string_literal] = ACTIONS(436), + [sym_float_literal] = ACTIONS(436), [sym_block_comment] = ACTIONS(3), }, [64] = { - [ts_builtin_sym_end] = ACTIONS(438), - [sym_identifier] = ACTIONS(440), - [anon_sym_SEMI] = ACTIONS(438), - [anon_sym_macro_rules_BANG] = ACTIONS(438), - [anon_sym_LPAREN] = ACTIONS(438), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(438), - [anon_sym_PLUS] = ACTIONS(440), - [anon_sym_STAR] = ACTIONS(440), - [anon_sym_QMARK] = ACTIONS(438), - [anon_sym_u8] = ACTIONS(440), - [anon_sym_i8] = ACTIONS(440), - [anon_sym_u16] = ACTIONS(440), - [anon_sym_i16] = ACTIONS(440), - [anon_sym_u32] = ACTIONS(440), - [anon_sym_i32] = ACTIONS(440), - [anon_sym_u64] = ACTIONS(440), - [anon_sym_i64] = ACTIONS(440), - [anon_sym_u128] = ACTIONS(440), - [anon_sym_i128] = ACTIONS(440), - [anon_sym_isize] = ACTIONS(440), - [anon_sym_usize] = ACTIONS(440), - [anon_sym_f32] = ACTIONS(440), - [anon_sym_f64] = ACTIONS(440), - [anon_sym_bool] = ACTIONS(440), - [anon_sym_str] = ACTIONS(440), - [anon_sym_char] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_as] = ACTIONS(440), - [anon_sym_async] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_const] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_default] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(440), - [anon_sym_fn] = ACTIONS(440), - [anon_sym_for] = ACTIONS(440), - [anon_sym_if] = ACTIONS(440), - [anon_sym_impl] = ACTIONS(440), - [anon_sym_let] = ACTIONS(440), - [anon_sym_loop] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_mod] = ACTIONS(440), - [anon_sym_pub] = ACTIONS(440), - [anon_sym_return] = ACTIONS(440), - [anon_sym_static] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(440), - [anon_sym_trait] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_union] = ACTIONS(440), - [anon_sym_unsafe] = ACTIONS(440), - [anon_sym_use] = ACTIONS(440), - [anon_sym_while] = ACTIONS(440), - [anon_sym_POUND] = ACTIONS(438), - [anon_sym_BANG] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(440), - [anon_sym_extern] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(440), - [anon_sym_GT] = ACTIONS(440), - [anon_sym_COLON_COLON] = ACTIONS(438), - [anon_sym_AMP] = ACTIONS(440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(438), - [anon_sym_DOT_DOT] = ACTIONS(440), - [anon_sym_DOT_DOT_EQ] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(440), - [anon_sym_AMP_AMP] = ACTIONS(438), - [anon_sym_PIPE_PIPE] = ACTIONS(438), - [anon_sym_PIPE] = ACTIONS(440), - [anon_sym_CARET] = ACTIONS(440), - [anon_sym_EQ_EQ] = ACTIONS(438), - [anon_sym_BANG_EQ] = ACTIONS(438), - [anon_sym_LT_EQ] = ACTIONS(438), - [anon_sym_GT_EQ] = ACTIONS(438), - [anon_sym_LT_LT] = ACTIONS(440), - [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_SLASH] = ACTIONS(440), - [anon_sym_PERCENT] = ACTIONS(440), - [anon_sym_PLUS_EQ] = ACTIONS(438), - [anon_sym_DASH_EQ] = ACTIONS(438), - [anon_sym_STAR_EQ] = ACTIONS(438), - [anon_sym_SLASH_EQ] = ACTIONS(438), - [anon_sym_PERCENT_EQ] = ACTIONS(438), - [anon_sym_AMP_EQ] = ACTIONS(438), - [anon_sym_PIPE_EQ] = ACTIONS(438), - [anon_sym_CARET_EQ] = ACTIONS(438), - [anon_sym_LT_LT_EQ] = ACTIONS(438), - [anon_sym_GT_GT_EQ] = ACTIONS(438), - [anon_sym_yield] = ACTIONS(440), - [anon_sym_move] = ACTIONS(440), - [anon_sym_DOT] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(438), - [aux_sym_string_literal_token1] = ACTIONS(438), - [sym_char_literal] = ACTIONS(438), - [anon_sym_true] = ACTIONS(440), - [anon_sym_false] = ACTIONS(440), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(440), - [sym_super] = ACTIONS(440), - [sym_crate] = ACTIONS(440), - [sym_metavariable] = ACTIONS(438), - [sym_raw_string_literal] = ACTIONS(438), - [sym_float_literal] = ACTIONS(438), + [ts_builtin_sym_end] = ACTIONS(440), + [sym_identifier] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_macro_rules_BANG] = ACTIONS(440), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_LBRACE] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_u8] = ACTIONS(442), + [anon_sym_i8] = ACTIONS(442), + [anon_sym_u16] = ACTIONS(442), + [anon_sym_i16] = ACTIONS(442), + [anon_sym_u32] = ACTIONS(442), + [anon_sym_i32] = ACTIONS(442), + [anon_sym_u64] = ACTIONS(442), + [anon_sym_i64] = ACTIONS(442), + [anon_sym_u128] = ACTIONS(442), + [anon_sym_i128] = ACTIONS(442), + [anon_sym_isize] = ACTIONS(442), + [anon_sym_usize] = ACTIONS(442), + [anon_sym_f32] = ACTIONS(442), + [anon_sym_f64] = ACTIONS(442), + [anon_sym_bool] = ACTIONS(442), + [anon_sym_str] = ACTIONS(442), + [anon_sym_char] = ACTIONS(442), + [anon_sym_SQUOTE] = ACTIONS(442), + [anon_sym_as] = ACTIONS(442), + [anon_sym_async] = ACTIONS(442), + [anon_sym_break] = ACTIONS(442), + [anon_sym_const] = ACTIONS(442), + [anon_sym_continue] = ACTIONS(442), + [anon_sym_default] = ACTIONS(442), + [anon_sym_enum] = ACTIONS(442), + [anon_sym_fn] = ACTIONS(442), + [anon_sym_for] = ACTIONS(442), + [anon_sym_if] = ACTIONS(442), + [anon_sym_impl] = ACTIONS(442), + [anon_sym_let] = ACTIONS(442), + [anon_sym_loop] = ACTIONS(442), + [anon_sym_match] = ACTIONS(442), + [anon_sym_mod] = ACTIONS(442), + [anon_sym_pub] = ACTIONS(442), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(442), + [anon_sym_struct] = ACTIONS(442), + [anon_sym_trait] = ACTIONS(442), + [anon_sym_type] = ACTIONS(442), + [anon_sym_union] = ACTIONS(442), + [anon_sym_unsafe] = ACTIONS(442), + [anon_sym_use] = ACTIONS(442), + [anon_sym_while] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(440), + [anon_sym_BANG] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_extern] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(440), + [anon_sym_AMP] = ACTIONS(442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [anon_sym_DOT_DOT] = ACTIONS(442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(440), + [anon_sym_BANG_EQ] = ACTIONS(440), + [anon_sym_LT_EQ] = ACTIONS(440), + [anon_sym_GT_EQ] = ACTIONS(440), + [anon_sym_LT_LT] = ACTIONS(442), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_PLUS_EQ] = ACTIONS(440), + [anon_sym_DASH_EQ] = ACTIONS(440), + [anon_sym_STAR_EQ] = ACTIONS(440), + [anon_sym_SLASH_EQ] = ACTIONS(440), + [anon_sym_PERCENT_EQ] = ACTIONS(440), + [anon_sym_AMP_EQ] = ACTIONS(440), + [anon_sym_PIPE_EQ] = ACTIONS(440), + [anon_sym_CARET_EQ] = ACTIONS(440), + [anon_sym_LT_LT_EQ] = ACTIONS(440), + [anon_sym_GT_GT_EQ] = ACTIONS(440), + [anon_sym_yield] = ACTIONS(442), + [anon_sym_move] = ACTIONS(442), + [anon_sym_DOT] = ACTIONS(442), + [sym_integer_literal] = ACTIONS(440), + [aux_sym_string_literal_token1] = ACTIONS(440), + [sym_char_literal] = ACTIONS(440), + [anon_sym_true] = ACTIONS(442), + [anon_sym_false] = ACTIONS(442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(442), + [sym_super] = ACTIONS(442), + [sym_crate] = ACTIONS(442), + [sym_metavariable] = ACTIONS(440), + [sym_raw_string_literal] = ACTIONS(440), + [sym_float_literal] = ACTIONS(440), [sym_block_comment] = ACTIONS(3), }, [65] = { - [ts_builtin_sym_end] = ACTIONS(442), - [sym_identifier] = ACTIONS(444), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_macro_rules_BANG] = ACTIONS(442), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_LBRACE] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_u8] = ACTIONS(444), - [anon_sym_i8] = ACTIONS(444), - [anon_sym_u16] = ACTIONS(444), - [anon_sym_i16] = ACTIONS(444), - [anon_sym_u32] = ACTIONS(444), - [anon_sym_i32] = ACTIONS(444), - [anon_sym_u64] = ACTIONS(444), - [anon_sym_i64] = ACTIONS(444), - [anon_sym_u128] = ACTIONS(444), - [anon_sym_i128] = ACTIONS(444), - [anon_sym_isize] = ACTIONS(444), - [anon_sym_usize] = ACTIONS(444), - [anon_sym_f32] = ACTIONS(444), - [anon_sym_f64] = ACTIONS(444), - [anon_sym_bool] = ACTIONS(444), - [anon_sym_str] = ACTIONS(444), - [anon_sym_char] = ACTIONS(444), - [anon_sym_SQUOTE] = ACTIONS(444), - [anon_sym_as] = ACTIONS(444), - [anon_sym_async] = ACTIONS(444), - [anon_sym_break] = ACTIONS(444), - [anon_sym_const] = ACTIONS(444), - [anon_sym_continue] = ACTIONS(444), - [anon_sym_default] = ACTIONS(444), - [anon_sym_enum] = ACTIONS(444), - [anon_sym_fn] = ACTIONS(444), - [anon_sym_for] = ACTIONS(444), - [anon_sym_if] = ACTIONS(444), - [anon_sym_impl] = ACTIONS(444), - [anon_sym_let] = ACTIONS(444), - [anon_sym_loop] = ACTIONS(444), - [anon_sym_match] = ACTIONS(444), - [anon_sym_mod] = ACTIONS(444), - [anon_sym_pub] = ACTIONS(444), - [anon_sym_return] = ACTIONS(444), - [anon_sym_static] = ACTIONS(444), - [anon_sym_struct] = ACTIONS(444), - [anon_sym_trait] = ACTIONS(444), - [anon_sym_type] = ACTIONS(444), - [anon_sym_union] = ACTIONS(444), - [anon_sym_unsafe] = ACTIONS(444), - [anon_sym_use] = ACTIONS(444), - [anon_sym_while] = ACTIONS(444), - [anon_sym_POUND] = ACTIONS(442), - [anon_sym_BANG] = ACTIONS(444), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_extern] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(444), - [anon_sym_COLON_COLON] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(442), - [anon_sym_DOT_DOT] = ACTIONS(444), - [anon_sym_DOT_DOT_EQ] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_LT_LT] = ACTIONS(444), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PERCENT] = ACTIONS(444), - [anon_sym_PLUS_EQ] = ACTIONS(442), - [anon_sym_DASH_EQ] = ACTIONS(442), - [anon_sym_STAR_EQ] = ACTIONS(442), - [anon_sym_SLASH_EQ] = ACTIONS(442), - [anon_sym_PERCENT_EQ] = ACTIONS(442), - [anon_sym_AMP_EQ] = ACTIONS(442), - [anon_sym_PIPE_EQ] = ACTIONS(442), - [anon_sym_CARET_EQ] = ACTIONS(442), - [anon_sym_LT_LT_EQ] = ACTIONS(442), - [anon_sym_GT_GT_EQ] = ACTIONS(442), - [anon_sym_yield] = ACTIONS(444), - [anon_sym_move] = ACTIONS(444), - [anon_sym_DOT] = ACTIONS(444), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(442), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(444), - [anon_sym_false] = ACTIONS(444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(444), - [sym_super] = ACTIONS(444), - [sym_crate] = ACTIONS(444), - [sym_metavariable] = ACTIONS(442), - [sym_raw_string_literal] = ACTIONS(442), - [sym_float_literal] = ACTIONS(442), + [ts_builtin_sym_end] = ACTIONS(444), + [sym_identifier] = ACTIONS(446), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_macro_rules_BANG] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_u8] = ACTIONS(446), + [anon_sym_i8] = ACTIONS(446), + [anon_sym_u16] = ACTIONS(446), + [anon_sym_i16] = ACTIONS(446), + [anon_sym_u32] = ACTIONS(446), + [anon_sym_i32] = ACTIONS(446), + [anon_sym_u64] = ACTIONS(446), + [anon_sym_i64] = ACTIONS(446), + [anon_sym_u128] = ACTIONS(446), + [anon_sym_i128] = ACTIONS(446), + [anon_sym_isize] = ACTIONS(446), + [anon_sym_usize] = ACTIONS(446), + [anon_sym_f32] = ACTIONS(446), + [anon_sym_f64] = ACTIONS(446), + [anon_sym_bool] = ACTIONS(446), + [anon_sym_str] = ACTIONS(446), + [anon_sym_char] = ACTIONS(446), + [anon_sym_SQUOTE] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_async] = ACTIONS(446), + [anon_sym_break] = ACTIONS(446), + [anon_sym_const] = ACTIONS(446), + [anon_sym_continue] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_enum] = ACTIONS(446), + [anon_sym_fn] = ACTIONS(446), + [anon_sym_for] = ACTIONS(446), + [anon_sym_if] = ACTIONS(446), + [anon_sym_impl] = ACTIONS(446), + [anon_sym_let] = ACTIONS(446), + [anon_sym_loop] = ACTIONS(446), + [anon_sym_match] = ACTIONS(446), + [anon_sym_mod] = ACTIONS(446), + [anon_sym_pub] = ACTIONS(446), + [anon_sym_return] = ACTIONS(446), + [anon_sym_static] = ACTIONS(446), + [anon_sym_struct] = ACTIONS(446), + [anon_sym_trait] = ACTIONS(446), + [anon_sym_type] = ACTIONS(446), + [anon_sym_union] = ACTIONS(446), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_use] = ACTIONS(446), + [anon_sym_while] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_BANG] = ACTIONS(446), + [anon_sym_EQ] = ACTIONS(446), + [anon_sym_extern] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(446), + [anon_sym_GT] = ACTIONS(446), + [anon_sym_COLON_COLON] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [anon_sym_DOT_DOT] = ACTIONS(446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(444), + [anon_sym_PIPE_PIPE] = ACTIONS(444), + [anon_sym_PIPE] = ACTIONS(446), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_EQ_EQ] = ACTIONS(444), + [anon_sym_BANG_EQ] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(444), + [anon_sym_DASH_EQ] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(444), + [anon_sym_SLASH_EQ] = ACTIONS(444), + [anon_sym_PERCENT_EQ] = ACTIONS(444), + [anon_sym_AMP_EQ] = ACTIONS(444), + [anon_sym_PIPE_EQ] = ACTIONS(444), + [anon_sym_CARET_EQ] = ACTIONS(444), + [anon_sym_LT_LT_EQ] = ACTIONS(444), + [anon_sym_GT_GT_EQ] = ACTIONS(444), + [anon_sym_yield] = ACTIONS(446), + [anon_sym_move] = ACTIONS(446), + [anon_sym_DOT] = ACTIONS(446), + [sym_integer_literal] = ACTIONS(444), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(444), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(446), + [sym_super] = ACTIONS(446), + [sym_crate] = ACTIONS(446), + [sym_metavariable] = ACTIONS(444), + [sym_raw_string_literal] = ACTIONS(444), + [sym_float_literal] = ACTIONS(444), [sym_block_comment] = ACTIONS(3), }, [66] = { - [ts_builtin_sym_end] = ACTIONS(446), - [sym_identifier] = ACTIONS(448), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_macro_rules_BANG] = ACTIONS(446), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_LBRACE] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(446), - [anon_sym_u8] = ACTIONS(448), - [anon_sym_i8] = ACTIONS(448), - [anon_sym_u16] = ACTIONS(448), - [anon_sym_i16] = ACTIONS(448), - [anon_sym_u32] = ACTIONS(448), - [anon_sym_i32] = ACTIONS(448), - [anon_sym_u64] = ACTIONS(448), - [anon_sym_i64] = ACTIONS(448), - [anon_sym_u128] = ACTIONS(448), - [anon_sym_i128] = ACTIONS(448), - [anon_sym_isize] = ACTIONS(448), - [anon_sym_usize] = ACTIONS(448), - [anon_sym_f32] = ACTIONS(448), - [anon_sym_f64] = ACTIONS(448), - [anon_sym_bool] = ACTIONS(448), - [anon_sym_str] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_SQUOTE] = ACTIONS(448), - [anon_sym_as] = ACTIONS(448), - [anon_sym_async] = ACTIONS(448), - [anon_sym_break] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_enum] = ACTIONS(448), - [anon_sym_fn] = ACTIONS(448), - [anon_sym_for] = ACTIONS(448), - [anon_sym_if] = ACTIONS(448), - [anon_sym_impl] = ACTIONS(448), - [anon_sym_let] = ACTIONS(448), - [anon_sym_loop] = ACTIONS(448), - [anon_sym_match] = ACTIONS(448), - [anon_sym_mod] = ACTIONS(448), - [anon_sym_pub] = ACTIONS(448), - [anon_sym_return] = ACTIONS(448), - [anon_sym_static] = ACTIONS(448), - [anon_sym_struct] = ACTIONS(448), - [anon_sym_trait] = ACTIONS(448), - [anon_sym_type] = ACTIONS(448), - [anon_sym_union] = ACTIONS(448), - [anon_sym_unsafe] = ACTIONS(448), - [anon_sym_use] = ACTIONS(448), - [anon_sym_while] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(448), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_COLON_COLON] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(446), - [anon_sym_DOT_DOT] = ACTIONS(448), - [anon_sym_DOT_DOT_EQ] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(448), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_PLUS_EQ] = ACTIONS(446), - [anon_sym_DASH_EQ] = ACTIONS(446), - [anon_sym_STAR_EQ] = ACTIONS(446), - [anon_sym_SLASH_EQ] = ACTIONS(446), - [anon_sym_PERCENT_EQ] = ACTIONS(446), - [anon_sym_AMP_EQ] = ACTIONS(446), - [anon_sym_PIPE_EQ] = ACTIONS(446), - [anon_sym_CARET_EQ] = ACTIONS(446), - [anon_sym_LT_LT_EQ] = ACTIONS(446), - [anon_sym_GT_GT_EQ] = ACTIONS(446), - [anon_sym_yield] = ACTIONS(448), - [anon_sym_move] = ACTIONS(448), - [anon_sym_DOT] = ACTIONS(448), - [sym_integer_literal] = ACTIONS(446), - [aux_sym_string_literal_token1] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(448), - [sym_crate] = ACTIONS(448), - [sym_metavariable] = ACTIONS(446), - [sym_raw_string_literal] = ACTIONS(446), - [sym_float_literal] = ACTIONS(446), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1286), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(1879), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [67] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(1879), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(384), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { [ts_builtin_sym_end] = ACTIONS(450), [sym_identifier] = ACTIONS(452), [anon_sym_SEMI] = ACTIONS(450), @@ -25680,18 +23327,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(450), [sym_block_comment] = ACTIONS(3), }, - [68] = { + [69] = { [ts_builtin_sym_end] = ACTIONS(454), [sym_identifier] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_macro_rules_BANG] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(454), [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_QMARK] = ACTIONS(454), [anon_sym_u8] = ACTIONS(456), [anon_sym_i8] = ACTIONS(456), [anon_sym_u16] = ACTIONS(456), @@ -25710,7 +23357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(456), [anon_sym_char] = ACTIONS(456), [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_as] = ACTIONS(460), + [anon_sym_as] = ACTIONS(456), [anon_sym_async] = ACTIONS(456), [anon_sym_break] = ACTIONS(456), [anon_sym_const] = ACTIONS(456), @@ -25737,11 +23384,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(456), [anon_sym_POUND] = ACTIONS(454), [anon_sym_BANG] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(456), [anon_sym_extern] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(454), + [anon_sym_DOT_DOT] = ACTIONS(456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(456), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(456), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_PLUS_EQ] = ACTIONS(454), + [anon_sym_DASH_EQ] = ACTIONS(454), + [anon_sym_STAR_EQ] = ACTIONS(454), + [anon_sym_SLASH_EQ] = ACTIONS(454), + [anon_sym_PERCENT_EQ] = ACTIONS(454), + [anon_sym_AMP_EQ] = ACTIONS(454), + [anon_sym_PIPE_EQ] = ACTIONS(454), + [anon_sym_CARET_EQ] = ACTIONS(454), + [anon_sym_LT_LT_EQ] = ACTIONS(454), + [anon_sym_GT_GT_EQ] = ACTIONS(454), + [anon_sym_yield] = ACTIONS(456), + [anon_sym_move] = ACTIONS(456), + [anon_sym_DOT] = ACTIONS(456), + [sym_integer_literal] = ACTIONS(454), + [aux_sym_string_literal_token1] = ACTIONS(454), + [sym_char_literal] = ACTIONS(454), + [anon_sym_true] = ACTIONS(456), + [anon_sym_false] = ACTIONS(456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_crate] = ACTIONS(456), + [sym_metavariable] = ACTIONS(454), + [sym_raw_string_literal] = ACTIONS(454), + [sym_float_literal] = ACTIONS(454), + [sym_block_comment] = ACTIONS(3), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(458), + [sym_identifier] = ACTIONS(460), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_macro_rules_BANG] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(460), + [anon_sym_i8] = ACTIONS(460), + [anon_sym_u16] = ACTIONS(460), + [anon_sym_i16] = ACTIONS(460), + [anon_sym_u32] = ACTIONS(460), + [anon_sym_i32] = ACTIONS(460), + [anon_sym_u64] = ACTIONS(460), + [anon_sym_i64] = ACTIONS(460), + [anon_sym_u128] = ACTIONS(460), + [anon_sym_i128] = ACTIONS(460), + [anon_sym_isize] = ACTIONS(460), + [anon_sym_usize] = ACTIONS(460), + [anon_sym_f32] = ACTIONS(460), + [anon_sym_f64] = ACTIONS(460), + [anon_sym_bool] = ACTIONS(460), + [anon_sym_str] = ACTIONS(460), + [anon_sym_char] = ACTIONS(460), + [anon_sym_SQUOTE] = ACTIONS(460), + [anon_sym_as] = ACTIONS(460), + [anon_sym_async] = ACTIONS(460), + [anon_sym_break] = ACTIONS(460), + [anon_sym_const] = ACTIONS(460), + [anon_sym_continue] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_fn] = ACTIONS(460), + [anon_sym_for] = ACTIONS(460), + [anon_sym_if] = ACTIONS(460), + [anon_sym_impl] = ACTIONS(460), + [anon_sym_let] = ACTIONS(460), + [anon_sym_loop] = ACTIONS(460), + [anon_sym_match] = ACTIONS(460), + [anon_sym_mod] = ACTIONS(460), + [anon_sym_pub] = ACTIONS(460), + [anon_sym_return] = ACTIONS(460), + [anon_sym_static] = ACTIONS(460), + [anon_sym_struct] = ACTIONS(460), + [anon_sym_trait] = ACTIONS(460), + [anon_sym_type] = ACTIONS(460), + [anon_sym_union] = ACTIONS(460), + [anon_sym_unsafe] = ACTIONS(460), + [anon_sym_use] = ACTIONS(460), + [anon_sym_while] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_extern] = ACTIONS(460), [anon_sym_LT] = ACTIONS(460), [anon_sym_GT] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym_COLON_COLON] = ACTIONS(458), [anon_sym_AMP] = ACTIONS(460), [anon_sym_DOT_DOT_DOT] = ACTIONS(458), [anon_sym_DOT_DOT] = ACTIONS(460), @@ -25769,24 +23522,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(458), [anon_sym_LT_LT_EQ] = ACTIONS(458), [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_move] = ACTIONS(456), + [anon_sym_yield] = ACTIONS(460), + [anon_sym_move] = ACTIONS(460), [anon_sym_DOT] = ACTIONS(460), - [sym_integer_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(454), - [sym_char_literal] = ACTIONS(454), - [anon_sym_true] = ACTIONS(456), - [anon_sym_false] = ACTIONS(456), + [sym_integer_literal] = ACTIONS(458), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_crate] = ACTIONS(456), - [sym_metavariable] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(454), - [sym_float_literal] = ACTIONS(454), + [sym_self] = ACTIONS(460), + [sym_super] = ACTIONS(460), + [sym_crate] = ACTIONS(460), + [sym_metavariable] = ACTIONS(458), + [sym_raw_string_literal] = ACTIONS(458), + [sym_float_literal] = ACTIONS(458), [sym_block_comment] = ACTIONS(3), }, - [69] = { + [71] = { [ts_builtin_sym_end] = ACTIONS(462), [sym_identifier] = ACTIONS(464), [anon_sym_SEMI] = ACTIONS(462), @@ -25892,7 +23645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(462), [sym_block_comment] = ACTIONS(3), }, - [70] = { + [72] = { [ts_builtin_sym_end] = ACTIONS(466), [sym_identifier] = ACTIONS(468), [anon_sym_SEMI] = ACTIONS(466), @@ -25901,9 +23654,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(466), [anon_sym_RBRACE] = ACTIONS(466), [anon_sym_LBRACK] = ACTIONS(466), - [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(468), [anon_sym_STAR] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_QMARK] = ACTIONS(466), [anon_sym_u8] = ACTIONS(468), [anon_sym_i8] = ACTIONS(468), [anon_sym_u16] = ACTIONS(468), @@ -25922,7 +23675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(468), [anon_sym_char] = ACTIONS(468), [anon_sym_SQUOTE] = ACTIONS(468), - [anon_sym_as] = ACTIONS(460), + [anon_sym_as] = ACTIONS(468), [anon_sym_async] = ACTIONS(468), [anon_sym_break] = ACTIONS(468), [anon_sym_const] = ACTIONS(468), @@ -25949,41 +23702,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(468), [anon_sym_POUND] = ACTIONS(466), [anon_sym_BANG] = ACTIONS(468), - [anon_sym_EQ] = ACTIONS(460), + [anon_sym_EQ] = ACTIONS(468), [anon_sym_extern] = ACTIONS(468), [anon_sym_LT] = ACTIONS(468), - [anon_sym_GT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(468), [anon_sym_COLON_COLON] = ACTIONS(466), [anon_sym_AMP] = ACTIONS(468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(466), [anon_sym_DOT_DOT] = ACTIONS(468), - [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DOT_DOT_EQ] = ACTIONS(466), [anon_sym_DASH] = ACTIONS(468), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), [anon_sym_PIPE] = ACTIONS(468), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_LT_EQ] = ACTIONS(466), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(468), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_PLUS_EQ] = ACTIONS(466), + [anon_sym_DASH_EQ] = ACTIONS(466), + [anon_sym_STAR_EQ] = ACTIONS(466), + [anon_sym_SLASH_EQ] = ACTIONS(466), + [anon_sym_PERCENT_EQ] = ACTIONS(466), + [anon_sym_AMP_EQ] = ACTIONS(466), + [anon_sym_PIPE_EQ] = ACTIONS(466), + [anon_sym_CARET_EQ] = ACTIONS(466), + [anon_sym_LT_LT_EQ] = ACTIONS(466), + [anon_sym_GT_GT_EQ] = ACTIONS(466), [anon_sym_yield] = ACTIONS(468), [anon_sym_move] = ACTIONS(468), - [anon_sym_DOT] = ACTIONS(460), + [anon_sym_DOT] = ACTIONS(468), [sym_integer_literal] = ACTIONS(466), [aux_sym_string_literal_token1] = ACTIONS(466), [sym_char_literal] = ACTIONS(466), @@ -25998,55 +23751,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(466), [sym_block_comment] = ACTIONS(3), }, - [71] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1243), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_tuple_expression_repeat1] = STATE(87), + [73] = { + [ts_builtin_sym_end] = ACTIONS(470), + [sym_identifier] = ACTIONS(472), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_macro_rules_BANG] = ACTIONS(470), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_SQUOTE] = ACTIONS(472), + [anon_sym_as] = ACTIONS(472), + [anon_sym_async] = ACTIONS(472), + [anon_sym_break] = ACTIONS(472), + [anon_sym_const] = ACTIONS(472), + [anon_sym_continue] = ACTIONS(472), + [anon_sym_default] = ACTIONS(472), + [anon_sym_enum] = ACTIONS(472), + [anon_sym_fn] = ACTIONS(472), + [anon_sym_for] = ACTIONS(472), + [anon_sym_if] = ACTIONS(472), + [anon_sym_impl] = ACTIONS(472), + [anon_sym_let] = ACTIONS(472), + [anon_sym_loop] = ACTIONS(472), + [anon_sym_match] = ACTIONS(472), + [anon_sym_mod] = ACTIONS(472), + [anon_sym_pub] = ACTIONS(472), + [anon_sym_return] = ACTIONS(472), + [anon_sym_static] = ACTIONS(472), + [anon_sym_struct] = ACTIONS(472), + [anon_sym_trait] = ACTIONS(472), + [anon_sym_type] = ACTIONS(472), + [anon_sym_union] = ACTIONS(472), + [anon_sym_unsafe] = ACTIONS(472), + [anon_sym_use] = ACTIONS(472), + [anon_sym_while] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_extern] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(472), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(470), + [anon_sym_DASH_EQ] = ACTIONS(470), + [anon_sym_STAR_EQ] = ACTIONS(470), + [anon_sym_SLASH_EQ] = ACTIONS(470), + [anon_sym_PERCENT_EQ] = ACTIONS(470), + [anon_sym_AMP_EQ] = ACTIONS(470), + [anon_sym_PIPE_EQ] = ACTIONS(470), + [anon_sym_CARET_EQ] = ACTIONS(470), + [anon_sym_LT_LT_EQ] = ACTIONS(470), + [anon_sym_GT_GT_EQ] = ACTIONS(470), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(472), + [anon_sym_DOT] = ACTIONS(472), + [sym_integer_literal] = ACTIONS(470), + [aux_sym_string_literal_token1] = ACTIONS(470), + [sym_char_literal] = ACTIONS(470), + [anon_sym_true] = ACTIONS(472), + [anon_sym_false] = ACTIONS(472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(472), + [sym_super] = ACTIONS(472), + [sym_crate] = ACTIONS(472), + [sym_metavariable] = ACTIONS(470), + [sym_raw_string_literal] = ACTIONS(470), + [sym_float_literal] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + }, + [74] = { + [ts_builtin_sym_end] = ACTIONS(474), + [sym_identifier] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_macro_rules_BANG] = ACTIONS(474), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_u8] = ACTIONS(476), + [anon_sym_i8] = ACTIONS(476), + [anon_sym_u16] = ACTIONS(476), + [anon_sym_i16] = ACTIONS(476), + [anon_sym_u32] = ACTIONS(476), + [anon_sym_i32] = ACTIONS(476), + [anon_sym_u64] = ACTIONS(476), + [anon_sym_i64] = ACTIONS(476), + [anon_sym_u128] = ACTIONS(476), + [anon_sym_i128] = ACTIONS(476), + [anon_sym_isize] = ACTIONS(476), + [anon_sym_usize] = ACTIONS(476), + [anon_sym_f32] = ACTIONS(476), + [anon_sym_f64] = ACTIONS(476), + [anon_sym_bool] = ACTIONS(476), + [anon_sym_str] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(476), + [anon_sym_as] = ACTIONS(476), + [anon_sym_async] = ACTIONS(476), + [anon_sym_break] = ACTIONS(476), + [anon_sym_const] = ACTIONS(476), + [anon_sym_continue] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_enum] = ACTIONS(476), + [anon_sym_fn] = ACTIONS(476), + [anon_sym_for] = ACTIONS(476), + [anon_sym_if] = ACTIONS(476), + [anon_sym_impl] = ACTIONS(476), + [anon_sym_let] = ACTIONS(476), + [anon_sym_loop] = ACTIONS(476), + [anon_sym_match] = ACTIONS(476), + [anon_sym_mod] = ACTIONS(476), + [anon_sym_pub] = ACTIONS(476), + [anon_sym_return] = ACTIONS(476), + [anon_sym_static] = ACTIONS(476), + [anon_sym_struct] = ACTIONS(476), + [anon_sym_trait] = ACTIONS(476), + [anon_sym_type] = ACTIONS(476), + [anon_sym_union] = ACTIONS(476), + [anon_sym_unsafe] = ACTIONS(476), + [anon_sym_use] = ACTIONS(476), + [anon_sym_while] = ACTIONS(476), + [anon_sym_POUND] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_extern] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(474), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(474), + [anon_sym_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_EQ_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(476), + [anon_sym_SLASH] = ACTIONS(476), + [anon_sym_PERCENT] = ACTIONS(476), + [anon_sym_PLUS_EQ] = ACTIONS(474), + [anon_sym_DASH_EQ] = ACTIONS(474), + [anon_sym_STAR_EQ] = ACTIONS(474), + [anon_sym_SLASH_EQ] = ACTIONS(474), + [anon_sym_PERCENT_EQ] = ACTIONS(474), + [anon_sym_AMP_EQ] = ACTIONS(474), + [anon_sym_PIPE_EQ] = ACTIONS(474), + [anon_sym_CARET_EQ] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(474), + [anon_sym_GT_GT_EQ] = ACTIONS(474), + [anon_sym_yield] = ACTIONS(476), + [anon_sym_move] = ACTIONS(476), + [anon_sym_DOT] = ACTIONS(476), + [sym_integer_literal] = ACTIONS(474), + [aux_sym_string_literal_token1] = ACTIONS(474), + [sym_char_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_crate] = ACTIONS(476), + [sym_metavariable] = ACTIONS(474), + [sym_raw_string_literal] = ACTIONS(474), + [sym_float_literal] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + }, + [75] = { + [ts_builtin_sym_end] = ACTIONS(478), + [sym_identifier] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_macro_rules_BANG] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_u8] = ACTIONS(480), + [anon_sym_i8] = ACTIONS(480), + [anon_sym_u16] = ACTIONS(480), + [anon_sym_i16] = ACTIONS(480), + [anon_sym_u32] = ACTIONS(480), + [anon_sym_i32] = ACTIONS(480), + [anon_sym_u64] = ACTIONS(480), + [anon_sym_i64] = ACTIONS(480), + [anon_sym_u128] = ACTIONS(480), + [anon_sym_i128] = ACTIONS(480), + [anon_sym_isize] = ACTIONS(480), + [anon_sym_usize] = ACTIONS(480), + [anon_sym_f32] = ACTIONS(480), + [anon_sym_f64] = ACTIONS(480), + [anon_sym_bool] = ACTIONS(480), + [anon_sym_str] = ACTIONS(480), + [anon_sym_char] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(480), + [anon_sym_as] = ACTIONS(480), + [anon_sym_async] = ACTIONS(480), + [anon_sym_break] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_enum] = ACTIONS(480), + [anon_sym_fn] = ACTIONS(480), + [anon_sym_for] = ACTIONS(480), + [anon_sym_if] = ACTIONS(480), + [anon_sym_impl] = ACTIONS(480), + [anon_sym_let] = ACTIONS(480), + [anon_sym_loop] = ACTIONS(480), + [anon_sym_match] = ACTIONS(480), + [anon_sym_mod] = ACTIONS(480), + [anon_sym_pub] = ACTIONS(480), + [anon_sym_return] = ACTIONS(480), + [anon_sym_static] = ACTIONS(480), + [anon_sym_struct] = ACTIONS(480), + [anon_sym_trait] = ACTIONS(480), + [anon_sym_type] = ACTIONS(480), + [anon_sym_union] = ACTIONS(480), + [anon_sym_unsafe] = ACTIONS(480), + [anon_sym_use] = ACTIONS(480), + [anon_sym_while] = ACTIONS(480), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_extern] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(478), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [anon_sym_DOT_DOT] = ACTIONS(480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(480), + [anon_sym_EQ_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(480), + [anon_sym_PLUS_EQ] = ACTIONS(478), + [anon_sym_DASH_EQ] = ACTIONS(478), + [anon_sym_STAR_EQ] = ACTIONS(478), + [anon_sym_SLASH_EQ] = ACTIONS(478), + [anon_sym_PERCENT_EQ] = ACTIONS(478), + [anon_sym_AMP_EQ] = ACTIONS(478), + [anon_sym_PIPE_EQ] = ACTIONS(478), + [anon_sym_CARET_EQ] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(478), + [anon_sym_GT_GT_EQ] = ACTIONS(478), + [anon_sym_yield] = ACTIONS(480), + [anon_sym_move] = ACTIONS(480), + [anon_sym_DOT] = ACTIONS(480), + [sym_integer_literal] = ACTIONS(478), + [aux_sym_string_literal_token1] = ACTIONS(478), + [sym_char_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_crate] = ACTIONS(480), + [sym_metavariable] = ACTIONS(478), + [sym_raw_string_literal] = ACTIONS(478), + [sym_float_literal] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + }, + [76] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_tuple_expression_repeat1] = STATE(83), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(482), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -26104,325 +24175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(472), - [sym_identifier] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(472), - [anon_sym_macro_rules_BANG] = ACTIONS(472), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_LBRACE] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(472), - [anon_sym_u8] = ACTIONS(474), - [anon_sym_i8] = ACTIONS(474), - [anon_sym_u16] = ACTIONS(474), - [anon_sym_i16] = ACTIONS(474), - [anon_sym_u32] = ACTIONS(474), - [anon_sym_i32] = ACTIONS(474), - [anon_sym_u64] = ACTIONS(474), - [anon_sym_i64] = ACTIONS(474), - [anon_sym_u128] = ACTIONS(474), - [anon_sym_i128] = ACTIONS(474), - [anon_sym_isize] = ACTIONS(474), - [anon_sym_usize] = ACTIONS(474), - [anon_sym_f32] = ACTIONS(474), - [anon_sym_f64] = ACTIONS(474), - [anon_sym_bool] = ACTIONS(474), - [anon_sym_str] = ACTIONS(474), - [anon_sym_char] = ACTIONS(474), - [anon_sym_SQUOTE] = ACTIONS(474), - [anon_sym_as] = ACTIONS(474), - [anon_sym_async] = ACTIONS(474), - [anon_sym_break] = ACTIONS(474), - [anon_sym_const] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_enum] = ACTIONS(474), - [anon_sym_fn] = ACTIONS(474), - [anon_sym_for] = ACTIONS(474), - [anon_sym_if] = ACTIONS(474), - [anon_sym_impl] = ACTIONS(474), - [anon_sym_let] = ACTIONS(474), - [anon_sym_loop] = ACTIONS(474), - [anon_sym_match] = ACTIONS(474), - [anon_sym_mod] = ACTIONS(474), - [anon_sym_pub] = ACTIONS(474), - [anon_sym_return] = ACTIONS(474), - [anon_sym_static] = ACTIONS(474), - [anon_sym_struct] = ACTIONS(474), - [anon_sym_trait] = ACTIONS(474), - [anon_sym_type] = ACTIONS(474), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(474), - [anon_sym_use] = ACTIONS(474), - [anon_sym_while] = ACTIONS(474), - [anon_sym_POUND] = ACTIONS(472), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(474), - [anon_sym_extern] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_COLON_COLON] = ACTIONS(472), - [anon_sym_AMP] = ACTIONS(474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(472), - [anon_sym_DOT_DOT] = ACTIONS(474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(472), - [anon_sym_DASH_EQ] = ACTIONS(472), - [anon_sym_STAR_EQ] = ACTIONS(472), - [anon_sym_SLASH_EQ] = ACTIONS(472), - [anon_sym_PERCENT_EQ] = ACTIONS(472), - [anon_sym_AMP_EQ] = ACTIONS(472), - [anon_sym_PIPE_EQ] = ACTIONS(472), - [anon_sym_CARET_EQ] = ACTIONS(472), - [anon_sym_LT_LT_EQ] = ACTIONS(472), - [anon_sym_GT_GT_EQ] = ACTIONS(472), - [anon_sym_yield] = ACTIONS(474), - [anon_sym_move] = ACTIONS(474), - [anon_sym_DOT] = ACTIONS(474), - [sym_integer_literal] = ACTIONS(472), - [aux_sym_string_literal_token1] = ACTIONS(472), - [sym_char_literal] = ACTIONS(472), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(474), - [sym_super] = ACTIONS(474), - [sym_crate] = ACTIONS(474), - [sym_metavariable] = ACTIONS(472), - [sym_raw_string_literal] = ACTIONS(472), - [sym_float_literal] = ACTIONS(472), - [sym_block_comment] = ACTIONS(3), - }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(476), - [sym_identifier] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(476), - [anon_sym_macro_rules_BANG] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_u8] = ACTIONS(478), - [anon_sym_i8] = ACTIONS(478), - [anon_sym_u16] = ACTIONS(478), - [anon_sym_i16] = ACTIONS(478), - [anon_sym_u32] = ACTIONS(478), - [anon_sym_i32] = ACTIONS(478), - [anon_sym_u64] = ACTIONS(478), - [anon_sym_i64] = ACTIONS(478), - [anon_sym_u128] = ACTIONS(478), - [anon_sym_i128] = ACTIONS(478), - [anon_sym_isize] = ACTIONS(478), - [anon_sym_usize] = ACTIONS(478), - [anon_sym_f32] = ACTIONS(478), - [anon_sym_f64] = ACTIONS(478), - [anon_sym_bool] = ACTIONS(478), - [anon_sym_str] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_SQUOTE] = ACTIONS(478), - [anon_sym_as] = ACTIONS(478), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(478), - [anon_sym_const] = ACTIONS(478), - [anon_sym_continue] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_enum] = ACTIONS(478), - [anon_sym_fn] = ACTIONS(478), - [anon_sym_for] = ACTIONS(478), - [anon_sym_if] = ACTIONS(478), - [anon_sym_impl] = ACTIONS(478), - [anon_sym_let] = ACTIONS(478), - [anon_sym_loop] = ACTIONS(478), - [anon_sym_match] = ACTIONS(478), - [anon_sym_mod] = ACTIONS(478), - [anon_sym_pub] = ACTIONS(478), - [anon_sym_return] = ACTIONS(478), - [anon_sym_static] = ACTIONS(478), - [anon_sym_struct] = ACTIONS(478), - [anon_sym_trait] = ACTIONS(478), - [anon_sym_type] = ACTIONS(478), - [anon_sym_union] = ACTIONS(478), - [anon_sym_unsafe] = ACTIONS(478), - [anon_sym_use] = ACTIONS(478), - [anon_sym_while] = ACTIONS(478), - [anon_sym_POUND] = ACTIONS(476), - [anon_sym_BANG] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [anon_sym_extern] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_AMP] = ACTIONS(478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(476), - [anon_sym_DOT_DOT] = ACTIONS(478), - [anon_sym_DOT_DOT_EQ] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(476), - [anon_sym_DASH_EQ] = ACTIONS(476), - [anon_sym_STAR_EQ] = ACTIONS(476), - [anon_sym_SLASH_EQ] = ACTIONS(476), - [anon_sym_PERCENT_EQ] = ACTIONS(476), - [anon_sym_AMP_EQ] = ACTIONS(476), - [anon_sym_PIPE_EQ] = ACTIONS(476), - [anon_sym_CARET_EQ] = ACTIONS(476), - [anon_sym_LT_LT_EQ] = ACTIONS(476), - [anon_sym_GT_GT_EQ] = ACTIONS(476), - [anon_sym_yield] = ACTIONS(478), - [anon_sym_move] = ACTIONS(478), - [anon_sym_DOT] = ACTIONS(478), - [sym_integer_literal] = ACTIONS(476), - [aux_sym_string_literal_token1] = ACTIONS(476), - [sym_char_literal] = ACTIONS(476), - [anon_sym_true] = ACTIONS(478), - [anon_sym_false] = ACTIONS(478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(478), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(476), - [sym_raw_string_literal] = ACTIONS(476), - [sym_float_literal] = ACTIONS(476), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(480), - [sym_identifier] = ACTIONS(482), - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_macro_rules_BANG] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_u8] = ACTIONS(482), - [anon_sym_i8] = ACTIONS(482), - [anon_sym_u16] = ACTIONS(482), - [anon_sym_i16] = ACTIONS(482), - [anon_sym_u32] = ACTIONS(482), - [anon_sym_i32] = ACTIONS(482), - [anon_sym_u64] = ACTIONS(482), - [anon_sym_i64] = ACTIONS(482), - [anon_sym_u128] = ACTIONS(482), - [anon_sym_i128] = ACTIONS(482), - [anon_sym_isize] = ACTIONS(482), - [anon_sym_usize] = ACTIONS(482), - [anon_sym_f32] = ACTIONS(482), - [anon_sym_f64] = ACTIONS(482), - [anon_sym_bool] = ACTIONS(482), - [anon_sym_str] = ACTIONS(482), - [anon_sym_char] = ACTIONS(482), - [anon_sym_SQUOTE] = ACTIONS(482), - [anon_sym_as] = ACTIONS(482), - [anon_sym_async] = ACTIONS(482), - [anon_sym_break] = ACTIONS(482), - [anon_sym_const] = ACTIONS(482), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_default] = ACTIONS(482), - [anon_sym_enum] = ACTIONS(482), - [anon_sym_fn] = ACTIONS(482), - [anon_sym_for] = ACTIONS(482), - [anon_sym_if] = ACTIONS(482), - [anon_sym_impl] = ACTIONS(482), - [anon_sym_let] = ACTIONS(482), - [anon_sym_loop] = ACTIONS(482), - [anon_sym_match] = ACTIONS(482), - [anon_sym_mod] = ACTIONS(482), - [anon_sym_pub] = ACTIONS(482), - [anon_sym_return] = ACTIONS(482), - [anon_sym_static] = ACTIONS(482), - [anon_sym_struct] = ACTIONS(482), - [anon_sym_trait] = ACTIONS(482), - [anon_sym_type] = ACTIONS(482), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(482), - [anon_sym_use] = ACTIONS(482), - [anon_sym_while] = ACTIONS(482), - [anon_sym_POUND] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_extern] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - [anon_sym_DOT_DOT] = ACTIONS(482), - [anon_sym_DOT_DOT_EQ] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(482), - [anon_sym_EQ_EQ] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_PLUS_EQ] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(480), - [anon_sym_STAR_EQ] = ACTIONS(480), - [anon_sym_SLASH_EQ] = ACTIONS(480), - [anon_sym_PERCENT_EQ] = ACTIONS(480), - [anon_sym_AMP_EQ] = ACTIONS(480), - [anon_sym_PIPE_EQ] = ACTIONS(480), - [anon_sym_CARET_EQ] = ACTIONS(480), - [anon_sym_LT_LT_EQ] = ACTIONS(480), - [anon_sym_GT_GT_EQ] = ACTIONS(480), - [anon_sym_yield] = ACTIONS(482), - [anon_sym_move] = ACTIONS(482), - [anon_sym_DOT] = ACTIONS(482), - [sym_integer_literal] = ACTIONS(480), - [aux_sym_string_literal_token1] = ACTIONS(480), - [sym_char_literal] = ACTIONS(480), - [anon_sym_true] = ACTIONS(482), - [anon_sym_false] = ACTIONS(482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(482), - [sym_super] = ACTIONS(482), - [sym_crate] = ACTIONS(482), - [sym_metavariable] = ACTIONS(480), - [sym_raw_string_literal] = ACTIONS(480), - [sym_float_literal] = ACTIONS(480), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { + [77] = { [ts_builtin_sym_end] = ACTIONS(484), [sym_identifier] = ACTIONS(486), [anon_sym_SEMI] = ACTIONS(484), @@ -26528,7 +24281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(484), [sym_block_comment] = ACTIONS(3), }, - [76] = { + [78] = { [ts_builtin_sym_end] = ACTIONS(488), [sym_identifier] = ACTIONS(490), [anon_sym_SEMI] = ACTIONS(488), @@ -26634,7 +24387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(488), [sym_block_comment] = ACTIONS(3), }, - [77] = { + [79] = { [ts_builtin_sym_end] = ACTIONS(492), [sym_identifier] = ACTIONS(494), [anon_sym_SEMI] = ACTIONS(492), @@ -26740,161 +24493,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(492), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1291), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_tuple_expression_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(496), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_RPAREN] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(504), - [anon_sym_LBRACK] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_u8] = ACTIONS(513), - [anon_sym_i8] = ACTIONS(513), - [anon_sym_u16] = ACTIONS(513), - [anon_sym_i16] = ACTIONS(513), - [anon_sym_u32] = ACTIONS(513), - [anon_sym_i32] = ACTIONS(513), - [anon_sym_u64] = ACTIONS(513), - [anon_sym_i64] = ACTIONS(513), - [anon_sym_u128] = ACTIONS(513), - [anon_sym_i128] = ACTIONS(513), - [anon_sym_isize] = ACTIONS(513), - [anon_sym_usize] = ACTIONS(513), - [anon_sym_f32] = ACTIONS(513), - [anon_sym_f64] = ACTIONS(513), - [anon_sym_bool] = ACTIONS(513), - [anon_sym_str] = ACTIONS(513), - [anon_sym_char] = ACTIONS(513), - [anon_sym_SQUOTE] = ACTIONS(516), - [anon_sym_async] = ACTIONS(519), - [anon_sym_break] = ACTIONS(522), - [anon_sym_const] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_default] = ACTIONS(531), - [anon_sym_for] = ACTIONS(534), - [anon_sym_if] = ACTIONS(537), - [anon_sym_loop] = ACTIONS(540), - [anon_sym_match] = ACTIONS(543), - [anon_sym_return] = ACTIONS(546), - [anon_sym_union] = ACTIONS(531), - [anon_sym_unsafe] = ACTIONS(549), - [anon_sym_while] = ACTIONS(552), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_COLON_COLON] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_DOT_DOT] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_yield] = ACTIONS(570), - [anon_sym_move] = ACTIONS(573), - [sym_integer_literal] = ACTIONS(576), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(576), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(585), - [sym_super] = ACTIONS(588), - [sym_crate] = ACTIONS(588), - [sym_metavariable] = ACTIONS(591), - [sym_raw_string_literal] = ACTIONS(576), - [sym_float_literal] = ACTIONS(576), + [80] = { + [ts_builtin_sym_end] = ACTIONS(496), + [sym_identifier] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(496), + [anon_sym_macro_rules_BANG] = ACTIONS(496), + [anon_sym_LPAREN] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u8] = ACTIONS(498), + [anon_sym_i8] = ACTIONS(498), + [anon_sym_u16] = ACTIONS(498), + [anon_sym_i16] = ACTIONS(498), + [anon_sym_u32] = ACTIONS(498), + [anon_sym_i32] = ACTIONS(498), + [anon_sym_u64] = ACTIONS(498), + [anon_sym_i64] = ACTIONS(498), + [anon_sym_u128] = ACTIONS(498), + [anon_sym_i128] = ACTIONS(498), + [anon_sym_isize] = ACTIONS(498), + [anon_sym_usize] = ACTIONS(498), + [anon_sym_f32] = ACTIONS(498), + [anon_sym_f64] = ACTIONS(498), + [anon_sym_bool] = ACTIONS(498), + [anon_sym_str] = ACTIONS(498), + [anon_sym_char] = ACTIONS(498), + [anon_sym_SQUOTE] = ACTIONS(498), + [anon_sym_as] = ACTIONS(498), + [anon_sym_async] = ACTIONS(498), + [anon_sym_break] = ACTIONS(498), + [anon_sym_const] = ACTIONS(498), + [anon_sym_continue] = ACTIONS(498), + [anon_sym_default] = ACTIONS(498), + [anon_sym_enum] = ACTIONS(498), + [anon_sym_fn] = ACTIONS(498), + [anon_sym_for] = ACTIONS(498), + [anon_sym_if] = ACTIONS(498), + [anon_sym_impl] = ACTIONS(498), + [anon_sym_let] = ACTIONS(498), + [anon_sym_loop] = ACTIONS(498), + [anon_sym_match] = ACTIONS(498), + [anon_sym_mod] = ACTIONS(498), + [anon_sym_pub] = ACTIONS(498), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(498), + [anon_sym_struct] = ACTIONS(498), + [anon_sym_trait] = ACTIONS(498), + [anon_sym_type] = ACTIONS(498), + [anon_sym_union] = ACTIONS(498), + [anon_sym_unsafe] = ACTIONS(498), + [anon_sym_use] = ACTIONS(498), + [anon_sym_while] = ACTIONS(498), + [anon_sym_POUND] = ACTIONS(496), + [anon_sym_BANG] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(498), + [anon_sym_extern] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(498), + [anon_sym_GT] = ACTIONS(498), + [anon_sym_COLON_COLON] = ACTIONS(496), + [anon_sym_AMP] = ACTIONS(498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(496), + [anon_sym_DOT_DOT] = ACTIONS(498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_AMP_AMP] = ACTIONS(496), + [anon_sym_PIPE_PIPE] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(498), + [anon_sym_CARET] = ACTIONS(498), + [anon_sym_EQ_EQ] = ACTIONS(496), + [anon_sym_BANG_EQ] = ACTIONS(496), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_LT_LT] = ACTIONS(498), + [anon_sym_GT_GT] = ACTIONS(498), + [anon_sym_SLASH] = ACTIONS(498), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_PLUS_EQ] = ACTIONS(496), + [anon_sym_DASH_EQ] = ACTIONS(496), + [anon_sym_STAR_EQ] = ACTIONS(496), + [anon_sym_SLASH_EQ] = ACTIONS(496), + [anon_sym_PERCENT_EQ] = ACTIONS(496), + [anon_sym_AMP_EQ] = ACTIONS(496), + [anon_sym_PIPE_EQ] = ACTIONS(496), + [anon_sym_CARET_EQ] = ACTIONS(496), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_GT_GT_EQ] = ACTIONS(496), + [anon_sym_yield] = ACTIONS(498), + [anon_sym_move] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(498), + [sym_integer_literal] = ACTIONS(496), + [aux_sym_string_literal_token1] = ACTIONS(496), + [sym_char_literal] = ACTIONS(496), + [anon_sym_true] = ACTIONS(498), + [anon_sym_false] = ACTIONS(498), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(498), + [sym_super] = ACTIONS(498), + [sym_crate] = ACTIONS(498), + [sym_metavariable] = ACTIONS(496), + [sym_raw_string_literal] = ACTIONS(496), + [sym_float_literal] = ACTIONS(496), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_tuple_expression_repeat1] = STATE(78), + [81] = { + [ts_builtin_sym_end] = ACTIONS(500), + [sym_identifier] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(500), + [anon_sym_macro_rules_BANG] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_SQUOTE] = ACTIONS(502), + [anon_sym_as] = ACTIONS(502), + [anon_sym_async] = ACTIONS(502), + [anon_sym_break] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_continue] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_enum] = ACTIONS(502), + [anon_sym_fn] = ACTIONS(502), + [anon_sym_for] = ACTIONS(502), + [anon_sym_if] = ACTIONS(502), + [anon_sym_impl] = ACTIONS(502), + [anon_sym_let] = ACTIONS(502), + [anon_sym_loop] = ACTIONS(502), + [anon_sym_match] = ACTIONS(502), + [anon_sym_mod] = ACTIONS(502), + [anon_sym_pub] = ACTIONS(502), + [anon_sym_return] = ACTIONS(502), + [anon_sym_static] = ACTIONS(502), + [anon_sym_struct] = ACTIONS(502), + [anon_sym_trait] = ACTIONS(502), + [anon_sym_type] = ACTIONS(502), + [anon_sym_union] = ACTIONS(502), + [anon_sym_unsafe] = ACTIONS(502), + [anon_sym_use] = ACTIONS(502), + [anon_sym_while] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_extern] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(500), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(502), + [anon_sym_DOT] = ACTIONS(502), + [sym_integer_literal] = ACTIONS(500), + [aux_sym_string_literal_token1] = ACTIONS(500), + [sym_char_literal] = ACTIONS(500), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(502), + [sym_super] = ACTIONS(502), + [sym_crate] = ACTIONS(502), + [sym_metavariable] = ACTIONS(500), + [sym_raw_string_literal] = ACTIONS(500), + [sym_float_literal] = ACTIONS(500), + [sym_block_comment] = ACTIONS(3), + }, + [82] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1226), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_tuple_expression_repeat1] = STATE(84), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(482), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -26952,266 +24811,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(1962), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(386), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [ts_builtin_sym_end] = ACTIONS(596), - [sym_identifier] = ACTIONS(598), - [anon_sym_SEMI] = ACTIONS(596), - [anon_sym_macro_rules_BANG] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_SQUOTE] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_async] = ACTIONS(598), - [anon_sym_break] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_continue] = ACTIONS(598), - [anon_sym_default] = ACTIONS(598), - [anon_sym_enum] = ACTIONS(598), - [anon_sym_fn] = ACTIONS(598), - [anon_sym_for] = ACTIONS(598), - [anon_sym_if] = ACTIONS(598), - [anon_sym_impl] = ACTIONS(598), - [anon_sym_let] = ACTIONS(598), - [anon_sym_loop] = ACTIONS(598), - [anon_sym_match] = ACTIONS(598), - [anon_sym_mod] = ACTIONS(598), - [anon_sym_pub] = ACTIONS(598), - [anon_sym_return] = ACTIONS(598), - [anon_sym_static] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(598), - [anon_sym_trait] = ACTIONS(598), - [anon_sym_type] = ACTIONS(598), - [anon_sym_union] = ACTIONS(598), - [anon_sym_unsafe] = ACTIONS(598), - [anon_sym_use] = ACTIONS(598), - [anon_sym_while] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_extern] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [anon_sym_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(598), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_yield] = ACTIONS(598), - [anon_sym_move] = ACTIONS(598), - [anon_sym_DOT] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [82] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1280), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_let_condition] = STATE(1962), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [83] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1254), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_tuple_expression_repeat1] = STATE(84), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(504), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27240,7 +24888,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), - [anon_sym_let] = ACTIONS(382), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -27270,113 +24917,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [ts_builtin_sym_end] = ACTIONS(600), - [sym_identifier] = ACTIONS(602), - [anon_sym_SEMI] = ACTIONS(600), - [anon_sym_macro_rules_BANG] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(602), - [anon_sym_i8] = ACTIONS(602), - [anon_sym_u16] = ACTIONS(602), - [anon_sym_i16] = ACTIONS(602), - [anon_sym_u32] = ACTIONS(602), - [anon_sym_i32] = ACTIONS(602), - [anon_sym_u64] = ACTIONS(602), - [anon_sym_i64] = ACTIONS(602), - [anon_sym_u128] = ACTIONS(602), - [anon_sym_i128] = ACTIONS(602), - [anon_sym_isize] = ACTIONS(602), - [anon_sym_usize] = ACTIONS(602), - [anon_sym_f32] = ACTIONS(602), - [anon_sym_f64] = ACTIONS(602), - [anon_sym_bool] = ACTIONS(602), - [anon_sym_str] = ACTIONS(602), - [anon_sym_char] = ACTIONS(602), - [anon_sym_SQUOTE] = ACTIONS(602), - [anon_sym_as] = ACTIONS(602), - [anon_sym_async] = ACTIONS(602), - [anon_sym_break] = ACTIONS(602), - [anon_sym_const] = ACTIONS(602), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_default] = ACTIONS(602), - [anon_sym_enum] = ACTIONS(602), - [anon_sym_fn] = ACTIONS(602), - [anon_sym_for] = ACTIONS(602), - [anon_sym_if] = ACTIONS(602), - [anon_sym_impl] = ACTIONS(602), - [anon_sym_let] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(602), - [anon_sym_match] = ACTIONS(602), - [anon_sym_mod] = ACTIONS(602), - [anon_sym_pub] = ACTIONS(602), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(602), - [anon_sym_struct] = ACTIONS(602), - [anon_sym_trait] = ACTIONS(602), - [anon_sym_type] = ACTIONS(602), - [anon_sym_union] = ACTIONS(602), - [anon_sym_unsafe] = ACTIONS(602), - [anon_sym_use] = ACTIONS(602), - [anon_sym_while] = ACTIONS(602), - [anon_sym_POUND] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_extern] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_COLON_COLON] = ACTIONS(600), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(600), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_EQ] = ACTIONS(600), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(600), - [anon_sym_PIPE_PIPE] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(600), - [anon_sym_BANG_EQ] = ACTIONS(600), - [anon_sym_LT_EQ] = ACTIONS(600), - [anon_sym_GT_EQ] = ACTIONS(600), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(600), - [anon_sym_DASH_EQ] = ACTIONS(600), - [anon_sym_STAR_EQ] = ACTIONS(600), - [anon_sym_SLASH_EQ] = ACTIONS(600), - [anon_sym_PERCENT_EQ] = ACTIONS(600), - [anon_sym_AMP_EQ] = ACTIONS(600), - [anon_sym_PIPE_EQ] = ACTIONS(600), - [anon_sym_CARET_EQ] = ACTIONS(600), - [anon_sym_LT_LT_EQ] = ACTIONS(600), - [anon_sym_GT_GT_EQ] = ACTIONS(600), - [anon_sym_yield] = ACTIONS(602), - [anon_sym_move] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [sym_integer_literal] = ACTIONS(600), - [aux_sym_string_literal_token1] = ACTIONS(600), - [sym_char_literal] = ACTIONS(600), - [anon_sym_true] = ACTIONS(602), - [anon_sym_false] = ACTIONS(602), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(602), - [sym_super] = ACTIONS(602), - [sym_crate] = ACTIONS(602), - [sym_metavariable] = ACTIONS(600), - [sym_raw_string_literal] = ACTIONS(600), - [sym_float_literal] = ACTIONS(600), + [84] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1291), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [aux_sym_tuple_expression_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(520), + [anon_sym_u8] = ACTIONS(523), + [anon_sym_i8] = ACTIONS(523), + [anon_sym_u16] = ACTIONS(523), + [anon_sym_i16] = ACTIONS(523), + [anon_sym_u32] = ACTIONS(523), + [anon_sym_i32] = ACTIONS(523), + [anon_sym_u64] = ACTIONS(523), + [anon_sym_i64] = ACTIONS(523), + [anon_sym_u128] = ACTIONS(523), + [anon_sym_i128] = ACTIONS(523), + [anon_sym_isize] = ACTIONS(523), + [anon_sym_usize] = ACTIONS(523), + [anon_sym_f32] = ACTIONS(523), + [anon_sym_f64] = ACTIONS(523), + [anon_sym_bool] = ACTIONS(523), + [anon_sym_str] = ACTIONS(523), + [anon_sym_char] = ACTIONS(523), + [anon_sym_SQUOTE] = ACTIONS(526), + [anon_sym_async] = ACTIONS(529), + [anon_sym_break] = ACTIONS(532), + [anon_sym_const] = ACTIONS(535), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_default] = ACTIONS(541), + [anon_sym_for] = ACTIONS(544), + [anon_sym_if] = ACTIONS(547), + [anon_sym_loop] = ACTIONS(550), + [anon_sym_match] = ACTIONS(553), + [anon_sym_return] = ACTIONS(556), + [anon_sym_union] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(559), + [anon_sym_while] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_COLON_COLON] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_DOT_DOT] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_yield] = ACTIONS(580), + [anon_sym_move] = ACTIONS(583), + [sym_integer_literal] = ACTIONS(586), + [aux_sym_string_literal_token1] = ACTIONS(589), + [sym_char_literal] = ACTIONS(586), + [anon_sym_true] = ACTIONS(592), + [anon_sym_false] = ACTIONS(592), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(595), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(601), + [sym_raw_string_literal] = ACTIONS(586), + [sym_float_literal] = ACTIONS(586), [sym_block_comment] = ACTIONS(3), }, - [84] = { + [85] = { [ts_builtin_sym_end] = ACTIONS(604), [sym_identifier] = ACTIONS(606), [anon_sym_SEMI] = ACTIONS(604), @@ -27482,161 +25129,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(604), [sym_block_comment] = ACTIONS(3), }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(608), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_macro_rules_BANG] = ACTIONS(608), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_LBRACE] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_async] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_fn] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_impl] = ACTIONS(610), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(610), - [anon_sym_match] = ACTIONS(610), - [anon_sym_mod] = ACTIONS(610), - [anon_sym_pub] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_struct] = ACTIONS(610), - [anon_sym_trait] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_unsafe] = ACTIONS(610), - [anon_sym_use] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_extern] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_EQ] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_yield] = ACTIONS(610), - [anon_sym_move] = ACTIONS(610), - [anon_sym_DOT] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(608), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(608), - [sym_raw_string_literal] = ACTIONS(608), - [sym_float_literal] = ACTIONS(608), - [sym_block_comment] = ACTIONS(3), - }, [86] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_tuple_expression_repeat1] = STATE(79), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_let_condition] = STATE(1879), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(612), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -27665,6 +25205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), + [anon_sym_let] = ACTIONS(400), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), @@ -27675,7 +25216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -27695,109 +25236,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [87] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1234), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [aux_sym_tuple_expression_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(612), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), + [ts_builtin_sym_end] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_macro_rules_BANG] = ACTIONS(610), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(610), + [anon_sym_u8] = ACTIONS(612), + [anon_sym_i8] = ACTIONS(612), + [anon_sym_u16] = ACTIONS(612), + [anon_sym_i16] = ACTIONS(612), + [anon_sym_u32] = ACTIONS(612), + [anon_sym_i32] = ACTIONS(612), + [anon_sym_u64] = ACTIONS(612), + [anon_sym_i64] = ACTIONS(612), + [anon_sym_u128] = ACTIONS(612), + [anon_sym_i128] = ACTIONS(612), + [anon_sym_isize] = ACTIONS(612), + [anon_sym_usize] = ACTIONS(612), + [anon_sym_f32] = ACTIONS(612), + [anon_sym_f64] = ACTIONS(612), + [anon_sym_bool] = ACTIONS(612), + [anon_sym_str] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_SQUOTE] = ACTIONS(612), + [anon_sym_as] = ACTIONS(612), + [anon_sym_async] = ACTIONS(612), + [anon_sym_break] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_continue] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_enum] = ACTIONS(612), + [anon_sym_fn] = ACTIONS(612), + [anon_sym_for] = ACTIONS(612), + [anon_sym_if] = ACTIONS(612), + [anon_sym_impl] = ACTIONS(612), + [anon_sym_let] = ACTIONS(612), + [anon_sym_loop] = ACTIONS(612), + [anon_sym_match] = ACTIONS(612), + [anon_sym_mod] = ACTIONS(612), + [anon_sym_pub] = ACTIONS(612), + [anon_sym_return] = ACTIONS(612), + [anon_sym_static] = ACTIONS(612), + [anon_sym_struct] = ACTIONS(612), + [anon_sym_trait] = ACTIONS(612), + [anon_sym_type] = ACTIONS(612), + [anon_sym_union] = ACTIONS(612), + [anon_sym_unsafe] = ACTIONS(612), + [anon_sym_use] = ACTIONS(612), + [anon_sym_while] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(612), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_extern] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_COLON_COLON] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_PERCENT_EQ] = ACTIONS(610), + [anon_sym_AMP_EQ] = ACTIONS(610), + [anon_sym_PIPE_EQ] = ACTIONS(610), + [anon_sym_CARET_EQ] = ACTIONS(610), + [anon_sym_LT_LT_EQ] = ACTIONS(610), + [anon_sym_GT_GT_EQ] = ACTIONS(610), + [anon_sym_yield] = ACTIONS(612), + [anon_sym_move] = ACTIONS(612), + [anon_sym_DOT] = ACTIONS(612), + [sym_integer_literal] = ACTIONS(610), + [aux_sym_string_literal_token1] = ACTIONS(610), + [sym_char_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(612), + [anon_sym_false] = ACTIONS(612), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_crate] = ACTIONS(612), + [sym_metavariable] = ACTIONS(610), + [sym_raw_string_literal] = ACTIONS(610), + [sym_float_literal] = ACTIONS(610), [sym_block_comment] = ACTIONS(3), }, [88] = { @@ -27907,155 +25448,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [89] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [90] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -28093,11 +25529,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_DASH_GT] = ACTIONS(618), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28116,55 +25552,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, + [90] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1223), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [sym_mutable_specifier] = ACTIONS(620), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, [91] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1228), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DASH_GT] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [92] = { + [sym_identifier] = ACTIONS(426), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_macro_rules_BANG] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_u8] = ACTIONS(426), + [anon_sym_i8] = ACTIONS(426), + [anon_sym_u16] = ACTIONS(426), + [anon_sym_i16] = ACTIONS(426), + [anon_sym_u32] = ACTIONS(426), + [anon_sym_i32] = ACTIONS(426), + [anon_sym_u64] = ACTIONS(426), + [anon_sym_i64] = ACTIONS(426), + [anon_sym_u128] = ACTIONS(426), + [anon_sym_i128] = ACTIONS(426), + [anon_sym_isize] = ACTIONS(426), + [anon_sym_usize] = ACTIONS(426), + [anon_sym_f32] = ACTIONS(426), + [anon_sym_f64] = ACTIONS(426), + [anon_sym_bool] = ACTIONS(426), + [anon_sym_str] = ACTIONS(426), + [anon_sym_char] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), + [anon_sym_as] = ACTIONS(430), + [anon_sym_async] = ACTIONS(426), + [anon_sym_break] = ACTIONS(426), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(426), + [anon_sym_default] = ACTIONS(426), + [anon_sym_enum] = ACTIONS(426), + [anon_sym_fn] = ACTIONS(426), + [anon_sym_for] = ACTIONS(426), + [anon_sym_if] = ACTIONS(426), + [anon_sym_impl] = ACTIONS(426), + [anon_sym_let] = ACTIONS(426), + [anon_sym_loop] = ACTIONS(426), + [anon_sym_match] = ACTIONS(426), + [anon_sym_mod] = ACTIONS(426), + [anon_sym_pub] = ACTIONS(426), + [anon_sym_return] = ACTIONS(426), + [anon_sym_static] = ACTIONS(426), + [anon_sym_struct] = ACTIONS(426), + [anon_sym_trait] = ACTIONS(426), + [anon_sym_type] = ACTIONS(426), + [anon_sym_union] = ACTIONS(426), + [anon_sym_unsafe] = ACTIONS(426), + [anon_sym_use] = ACTIONS(426), + [anon_sym_while] = ACTIONS(426), + [anon_sym_POUND] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(424), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(428), + [anon_sym_DOT_DOT] = ACTIONS(430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(426), + [anon_sym_move] = ACTIONS(426), + [anon_sym_DOT] = ACTIONS(430), + [sym_integer_literal] = ACTIONS(424), + [aux_sym_string_literal_token1] = ACTIONS(424), + [sym_char_literal] = ACTIONS(424), + [anon_sym_true] = ACTIONS(426), + [anon_sym_false] = ACTIONS(426), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_crate] = ACTIONS(426), + [sym_metavariable] = ACTIONS(424), + [sym_raw_string_literal] = ACTIONS(424), + [sym_float_literal] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + }, + [93] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(624), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28201,8 +25953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(622), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28221,56 +25972,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [92] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [94] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28326,56 +26077,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [93] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [95] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28412,7 +26162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [sym_mutable_specifier] = ACTIONS(628), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -28431,55 +26182,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [94] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [96] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(630), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -28513,12 +26265,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(628), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(308), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), [anon_sym_move] = ACTIONS(89), @@ -28536,56 +26287,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [95] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1208), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [97] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28617,13 +26368,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_DASH_GT] = ACTIONS(618), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [sym_mutable_specifier] = ACTIONS(630), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(350), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28641,266 +26392,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [96] = { - [sym_identifier] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(458), - [anon_sym_macro_rules_BANG] = ACTIONS(454), - [anon_sym_LPAREN] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(454), - [anon_sym_RBRACE] = ACTIONS(454), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_u8] = ACTIONS(456), - [anon_sym_i8] = ACTIONS(456), - [anon_sym_u16] = ACTIONS(456), - [anon_sym_i16] = ACTIONS(456), - [anon_sym_u32] = ACTIONS(456), - [anon_sym_i32] = ACTIONS(456), - [anon_sym_u64] = ACTIONS(456), - [anon_sym_i64] = ACTIONS(456), - [anon_sym_u128] = ACTIONS(456), - [anon_sym_i128] = ACTIONS(456), - [anon_sym_isize] = ACTIONS(456), - [anon_sym_usize] = ACTIONS(456), - [anon_sym_f32] = ACTIONS(456), - [anon_sym_f64] = ACTIONS(456), - [anon_sym_bool] = ACTIONS(456), - [anon_sym_str] = ACTIONS(456), - [anon_sym_char] = ACTIONS(456), - [anon_sym_SQUOTE] = ACTIONS(456), - [anon_sym_as] = ACTIONS(460), - [anon_sym_async] = ACTIONS(456), - [anon_sym_break] = ACTIONS(456), - [anon_sym_const] = ACTIONS(456), - [anon_sym_continue] = ACTIONS(456), - [anon_sym_default] = ACTIONS(456), - [anon_sym_enum] = ACTIONS(456), - [anon_sym_fn] = ACTIONS(456), - [anon_sym_for] = ACTIONS(456), - [anon_sym_if] = ACTIONS(456), - [anon_sym_impl] = ACTIONS(456), - [anon_sym_let] = ACTIONS(456), - [anon_sym_loop] = ACTIONS(456), - [anon_sym_match] = ACTIONS(456), - [anon_sym_mod] = ACTIONS(456), - [anon_sym_pub] = ACTIONS(456), - [anon_sym_return] = ACTIONS(456), - [anon_sym_static] = ACTIONS(456), - [anon_sym_struct] = ACTIONS(456), - [anon_sym_trait] = ACTIONS(456), - [anon_sym_type] = ACTIONS(456), - [anon_sym_union] = ACTIONS(456), - [anon_sym_unsafe] = ACTIONS(456), - [anon_sym_use] = ACTIONS(456), - [anon_sym_while] = ACTIONS(456), - [anon_sym_POUND] = ACTIONS(454), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_extern] = ACTIONS(456), - [anon_sym_LT] = ACTIONS(460), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(454), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(458), - [anon_sym_DOT_DOT] = ACTIONS(460), - [anon_sym_DOT_DOT_EQ] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(460), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_yield] = ACTIONS(456), - [anon_sym_move] = ACTIONS(456), - [anon_sym_DOT] = ACTIONS(460), - [sym_integer_literal] = ACTIONS(454), - [aux_sym_string_literal_token1] = ACTIONS(454), - [sym_char_literal] = ACTIONS(454), - [anon_sym_true] = ACTIONS(456), - [anon_sym_false] = ACTIONS(456), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(456), - [sym_super] = ACTIONS(456), - [sym_crate] = ACTIONS(456), - [sym_metavariable] = ACTIONS(454), - [sym_raw_string_literal] = ACTIONS(454), - [sym_float_literal] = ACTIONS(454), - [sym_block_comment] = ACTIONS(3), - }, - [97] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1256), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [98] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DASH_GT] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(622), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(308), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [98] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1262), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [99] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -28932,13 +26578,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_DASH_GT] = ACTIONS(620), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(350), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -28956,51 +26601,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [99] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1252), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [100] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29041,7 +26686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -29060,155 +26705,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [100] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [101] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1241), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [101] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1218), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [102] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1236), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29268,51 +26913,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [102] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1282), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [103] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1267), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29372,155 +27017,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [104] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1292), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [105] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1265), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29580,160 +27225,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [105] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [106] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1288), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [106] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1224), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [107] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1264), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -29765,12 +27410,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -29788,51 +27433,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [107] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1281), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [108] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1231), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -29892,54 +27537,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [108] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1279), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [109] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1214), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(218), + [sym_match_expression] = STATE(218), + [sym_while_expression] = STATE(218), + [sym_loop_expression] = STATE(218), + [sym_for_expression] = STATE(218), + [sym_const_block] = STATE(218), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2556), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(218), + [sym_async_block] = STATE(218), + [sym_block] = STATE(218), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -29960,19 +27605,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -29996,264 +27641,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [109] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1232), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [110] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1233), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [110] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1235), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [111] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1277), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [111] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1222), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [112] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1247), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30285,12 +27930,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30308,155 +27953,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [112] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1231), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, [113] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1274), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1129), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30497,7 +28038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30517,50 +28058,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [114] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), [sym__expression] = STATE(1293), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30621,50 +28162,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [115] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1246), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30705,7 +28246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30725,55 +28266,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [116] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1211), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1232), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -30805,12 +28346,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -30829,50 +28370,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [117] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1294), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -30913,7 +28454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -30933,50 +28474,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [118] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1264), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1266), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31037,50 +28578,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [119] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1209), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31141,154 +28682,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [120] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1248), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1282), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, [121] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1233), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1295), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(235), + [sym_match_expression] = STATE(235), + [sym_while_expression] = STATE(235), + [sym_loop_expression] = STATE(235), + [sym_for_expression] = STATE(235), + [sym_const_block] = STATE(235), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2556), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(235), + [sym_async_block] = STATE(235), + [sym_block] = STATE(235), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(634), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [122] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1270), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31348,51 +28993,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1267), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [123] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31433,7 +29078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31452,54 +29097,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1229), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(214), - [sym_match_expression] = STATE(214), - [sym_while_expression] = STATE(214), - [sym_loop_expression] = STATE(214), - [sym_for_expression] = STATE(214), - [sym_const_block] = STATE(214), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2546), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(214), - [sym_async_block] = STATE(214), - [sym_block] = STATE(214), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [124] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1234), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -31520,19 +29165,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -31556,51 +29201,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1277), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [125] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31641,7 +29286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -31660,56 +29305,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1237), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [126] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1221), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31741,12 +29386,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31764,51 +29409,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1278), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [127] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(608), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [128] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1229), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [129] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1235), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -31868,56 +29721,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [127] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1268), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [130] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1215), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -31949,12 +29802,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -31972,56 +29825,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [128] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1236), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [131] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1294), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(294), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1230), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32053,12 +30010,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32076,51 +30033,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [129] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1136), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [133] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [134] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [135] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1220), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32161,7 +30326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32180,51 +30345,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [130] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1285), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [136] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1263), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [137] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1237), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32284,51 +30553,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1286), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(218), - [sym_match_expression] = STATE(218), - [sym_while_expression] = STATE(218), - [sym_loop_expression] = STATE(218), - [sym_for_expression] = STATE(218), - [sym_const_block] = STATE(218), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2546), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(218), - [sym_async_block] = STATE(218), - [sym_block] = STATE(218), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [138] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1258), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(235), + [sym_match_expression] = STATE(235), + [sym_while_expression] = STATE(235), + [sym_loop_expression] = STATE(235), + [sym_for_expression] = STATE(235), + [sym_const_block] = STATE(235), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2556), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(235), + [sym_async_block] = STATE(235), + [sym_block] = STATE(235), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(632), @@ -32388,51 +30657,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [139] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1150), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32473,7 +30742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -32492,51 +30761,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [133] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), + [140] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), [sym__expression] = STATE(1271), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32596,54 +30865,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1292), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(214), - [sym_match_expression] = STATE(214), - [sym_while_expression] = STATE(214), - [sym_loop_expression] = STATE(214), - [sym_for_expression] = STATE(214), - [sym_const_block] = STATE(214), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2546), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(214), - [sym_async_block] = STATE(214), - [sym_block] = STATE(214), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [141] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1285), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), + [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -32664,19 +30933,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), + [anon_sym_async] = ACTIONS(290), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), + [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -32700,51 +30969,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [142] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1262), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32804,56 +31073,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1240), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [143] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -32885,12 +31154,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -32908,51 +31177,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1258), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [144] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -32993,7 +31262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33012,51 +31281,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1290), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [145] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1289), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33116,51 +31385,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [139] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [146] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33201,7 +31470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33220,54 +31489,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [140] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1288), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [147] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1283), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(218), + [sym_match_expression] = STATE(218), + [sym_while_expression] = STATE(218), + [sym_loop_expression] = STATE(218), + [sym_for_expression] = STATE(218), + [sym_const_block] = STATE(218), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2556), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(218), + [sym_async_block] = STATE(218), + [sym_block] = STATE(218), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -33288,19 +31557,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), + [anon_sym_async] = ACTIONS(634), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), + [anon_sym_const] = ACTIONS(636), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), + [anon_sym_for] = ACTIONS(638), + [anon_sym_if] = ACTIONS(640), + [anon_sym_loop] = ACTIONS(642), + [anon_sym_match] = ACTIONS(644), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), + [anon_sym_unsafe] = ACTIONS(646), + [anon_sym_while] = ACTIONS(648), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -33324,51 +31593,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [141] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1144), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [148] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1134), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33409,7 +31678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33428,155 +31697,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [142] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1217), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), + [149] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1198), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), + [anon_sym_default] = ACTIONS(294), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(294), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), + [anon_sym_yield] = ACTIONS(87), + [anon_sym_move] = ACTIONS(89), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), + [sym_self] = ACTIONS(97), + [sym_super] = ACTIONS(99), + [sym_crate] = ACTIONS(99), + [sym_metavariable] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [143] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [150] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33617,7 +31886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33636,56 +31905,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [144] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [151] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1250), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -33717,12 +31986,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -33740,155 +32009,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [145] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1227), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), + [152] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1246), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [153] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1136), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -33929,7 +32198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -33948,51 +32217,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1225), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [154] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1243), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [155] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [156] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1280), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34052,472 +32529,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [148] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1142), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [149] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [150] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [151] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1259), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [152] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1249), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [157] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34549,12 +32610,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34572,56 +32633,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [158] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -34653,12 +32714,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -34676,51 +32737,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1276), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [159] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1287), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34780,155 +32841,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1210), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [156] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1254), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [160] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1269), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -34988,51 +32945,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [157] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1265), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [161] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1240), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35092,51 +33049,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [162] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1238), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(290), + [anon_sym_break] = ACTIONS(344), + [anon_sym_const] = ACTIONS(292), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(346), + [anon_sym_for] = ACTIONS(296), + [anon_sym_if] = ACTIONS(298), + [anon_sym_loop] = ACTIONS(300), + [anon_sym_match] = ACTIONS(302), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), + [anon_sym_unsafe] = ACTIONS(304), + [anon_sym_while] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), + [sym_integer_literal] = ACTIONS(91), + [aux_sym_string_literal_token1] = ACTIONS(93), + [sym_char_literal] = ACTIONS(91), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), + [sym_raw_string_literal] = ACTIONS(91), + [sym_float_literal] = ACTIONS(91), + [sym_block_comment] = ACTIONS(3), + }, + [163] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1239), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35196,51 +33257,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [164] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35300,51 +33361,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1250), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [165] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1272), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35404,56 +33465,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1253), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [166] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1208), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35485,12 +33546,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -35508,56 +33569,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [162] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [167] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35589,12 +33650,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -35612,51 +33673,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(871), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [168] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1274), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35697,7 +33758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -35716,51 +33777,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1284), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [169] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1275), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -35820,56 +33881,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1241), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [170] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1207), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -35901,116 +33962,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(354), - [anon_sym_move] = ACTIONS(356), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(358), - [sym_super] = ACTIONS(360), - [sym_crate] = ACTIONS(360), - [sym_metavariable] = ACTIONS(362), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [166] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1247), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(340), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), - [anon_sym_u8] = ACTIONS(342), - [anon_sym_i8] = ACTIONS(342), - [anon_sym_u16] = ACTIONS(342), - [anon_sym_i16] = ACTIONS(342), - [anon_sym_u32] = ACTIONS(342), - [anon_sym_i32] = ACTIONS(342), - [anon_sym_u64] = ACTIONS(342), - [anon_sym_i64] = ACTIONS(342), - [anon_sym_u128] = ACTIONS(342), - [anon_sym_i128] = ACTIONS(342), - [anon_sym_isize] = ACTIONS(342), - [anon_sym_usize] = ACTIONS(342), - [anon_sym_f32] = ACTIONS(342), - [anon_sym_f64] = ACTIONS(342), - [anon_sym_bool] = ACTIONS(342), - [anon_sym_str] = ACTIONS(342), - [anon_sym_char] = ACTIONS(342), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(344), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(346), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(348), - [anon_sym_union] = ACTIONS(346), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36028,51 +33985,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [167] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [171] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1256), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36113,7 +34070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36132,51 +34089,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1204), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [172] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36217,7 +34174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -36236,56 +34193,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1942), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1244), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(1176), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(97), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [173] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1205), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(384), + [anon_sym_STAR] = ACTIONS(382), [anon_sym_u8] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), [anon_sym_u16] = ACTIONS(342), @@ -36317,12 +34274,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(352), - [anon_sym_AMP] = ACTIONS(388), - [anon_sym_DOT_DOT] = ACTIONS(418), - [anon_sym_DASH] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(354), [anon_sym_move] = ACTIONS(356), @@ -36340,467 +34297,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1251), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [171] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1128), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [172] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(292), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(296), - [anon_sym_if] = ACTIONS(298), - [anon_sym_loop] = ACTIONS(300), - [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(304), - [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [173] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1283), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), + [174] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1027), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(388), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [174] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1275), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [175] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1268), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -36860,155 +34505,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [175] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), + [176] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1892), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(1179), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(91), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), + [sym_identifier] = ACTIONS(340), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_u8] = ACTIONS(342), + [anon_sym_i8] = ACTIONS(342), + [anon_sym_u16] = ACTIONS(342), + [anon_sym_i16] = ACTIONS(342), + [anon_sym_u32] = ACTIONS(342), + [anon_sym_i32] = ACTIONS(342), + [anon_sym_u64] = ACTIONS(342), + [anon_sym_i64] = ACTIONS(342), + [anon_sym_u128] = ACTIONS(342), + [anon_sym_i128] = ACTIONS(342), + [anon_sym_isize] = ACTIONS(342), + [anon_sym_usize] = ACTIONS(342), + [anon_sym_f32] = ACTIONS(342), + [anon_sym_f64] = ACTIONS(342), + [anon_sym_bool] = ACTIONS(342), + [anon_sym_str] = ACTIONS(342), + [anon_sym_char] = ACTIONS(342), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(290), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(344), [anon_sym_const] = ACTIONS(292), [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), + [anon_sym_default] = ACTIONS(346), [anon_sym_for] = ACTIONS(296), [anon_sym_if] = ACTIONS(298), [anon_sym_loop] = ACTIONS(300), [anon_sym_match] = ACTIONS(302), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), + [anon_sym_return] = ACTIONS(348), + [anon_sym_union] = ACTIONS(346), [anon_sym_unsafe] = ACTIONS(304), [anon_sym_while] = ACTIONS(306), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(382), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(448), + [anon_sym_DASH] = ACTIONS(382), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(354), + [anon_sym_move] = ACTIONS(356), [sym_integer_literal] = ACTIONS(91), [aux_sym_string_literal_token1] = ACTIONS(93), [sym_char_literal] = ACTIONS(91), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), + [sym_self] = ACTIONS(358), + [sym_super] = ACTIONS(360), + [sym_crate] = ACTIONS(360), + [sym_metavariable] = ACTIONS(362), [sym_raw_string_literal] = ACTIONS(91), [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [176] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1199), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [177] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1261), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37068,51 +34713,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(91), [sym_block_comment] = ACTIONS(3), }, - [177] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(777), - [sym_match_expression] = STATE(777), - [sym_while_expression] = STATE(777), - [sym_loop_expression] = STATE(777), - [sym_for_expression] = STATE(777), - [sym_const_block] = STATE(777), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2517), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(777), - [sym_async_block] = STATE(777), - [sym_block] = STATE(777), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), + [178] = { + [sym_bracketed_type] = STATE(2474), + [sym_generic_function] = STATE(779), + [sym_generic_type_with_turbofish] = STATE(1964), + [sym__expression_except_range] = STATE(779), + [sym__expression] = STATE(1131), + [sym_macro_invocation] = STATE(779), + [sym_scoped_identifier] = STATE(783), + [sym_scoped_type_identifier_in_expression_position] = STATE(2200), + [sym_range_expression] = STATE(852), + [sym_unary_expression] = STATE(779), + [sym_try_expression] = STATE(779), + [sym_reference_expression] = STATE(779), + [sym_binary_expression] = STATE(779), + [sym_assignment_expression] = STATE(779), + [sym_compound_assignment_expr] = STATE(779), + [sym_type_cast_expression] = STATE(779), + [sym_return_expression] = STATE(779), + [sym_yield_expression] = STATE(779), + [sym_call_expression] = STATE(779), + [sym_array_expression] = STATE(779), + [sym_parenthesized_expression] = STATE(779), + [sym_tuple_expression] = STATE(779), + [sym_unit_expression] = STATE(779), + [sym_struct_expression] = STATE(779), + [sym_if_expression] = STATE(779), + [sym_match_expression] = STATE(779), + [sym_while_expression] = STATE(779), + [sym_loop_expression] = STATE(779), + [sym_for_expression] = STATE(779), + [sym_const_block] = STATE(779), + [sym_closure_expression] = STATE(779), + [sym_closure_parameters] = STATE(98), + [sym_loop_label] = STATE(2527), + [sym_break_expression] = STATE(779), + [sym_continue_expression] = STATE(779), + [sym_index_expression] = STATE(779), + [sym_await_expression] = STATE(779), + [sym_field_expression] = STATE(780), + [sym_unsafe_block] = STATE(779), + [sym_async_block] = STATE(779), + [sym_block] = STATE(779), + [sym__literal] = STATE(779), + [sym_string_literal] = STATE(909), + [sym_boolean_literal] = STATE(909), [sym_identifier] = ACTIONS(280), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(284), @@ -37153,111 +34798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_yield] = ACTIONS(87), - [anon_sym_move] = ACTIONS(89), - [sym_integer_literal] = ACTIONS(91), - [aux_sym_string_literal_token1] = ACTIONS(93), - [sym_char_literal] = ACTIONS(91), - [anon_sym_true] = ACTIONS(95), - [anon_sym_false] = ACTIONS(95), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(97), - [sym_super] = ACTIONS(99), - [sym_crate] = ACTIONS(99), - [sym_metavariable] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(91), - [sym_float_literal] = ACTIONS(91), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_bracketed_type] = STATE(2527), - [sym_generic_function] = STATE(777), - [sym_generic_type_with_turbofish] = STATE(1961), - [sym__expression_except_range] = STATE(777), - [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(777), - [sym_scoped_identifier] = STATE(792), - [sym_scoped_type_identifier_in_expression_position] = STATE(2247), - [sym_range_expression] = STATE(1054), - [sym_unary_expression] = STATE(777), - [sym_try_expression] = STATE(777), - [sym_reference_expression] = STATE(777), - [sym_binary_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_compound_assignment_expr] = STATE(777), - [sym_type_cast_expression] = STATE(777), - [sym_return_expression] = STATE(777), - [sym_yield_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_array_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_tuple_expression] = STATE(777), - [sym_unit_expression] = STATE(777), - [sym_struct_expression] = STATE(777), - [sym_if_expression] = STATE(218), - [sym_match_expression] = STATE(218), - [sym_while_expression] = STATE(218), - [sym_loop_expression] = STATE(218), - [sym_for_expression] = STATE(218), - [sym_const_block] = STATE(218), - [sym_closure_expression] = STATE(777), - [sym_closure_parameters] = STATE(94), - [sym_loop_label] = STATE(2546), - [sym_break_expression] = STATE(777), - [sym_continue_expression] = STATE(777), - [sym_index_expression] = STATE(777), - [sym_await_expression] = STATE(777), - [sym_field_expression] = STATE(778), - [sym_unsafe_block] = STATE(218), - [sym_async_block] = STATE(218), - [sym_block] = STATE(218), - [sym__literal] = STATE(777), - [sym_string_literal] = STATE(815), - [sym_boolean_literal] = STATE(815), - [sym_identifier] = ACTIONS(280), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(634), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(636), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(294), - [anon_sym_for] = ACTIONS(638), - [anon_sym_if] = ACTIONS(640), - [anon_sym_loop] = ACTIONS(642), - [anon_sym_match] = ACTIONS(644), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(294), - [anon_sym_unsafe] = ACTIONS(646), - [anon_sym_while] = ACTIONS(648), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DOT_DOT] = ACTIONS(608), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_yield] = ACTIONS(87), @@ -37278,48 +34819,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [179] = { [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(1901), - [sym_variadic_parameter] = STATE(1901), - [sym_parameter] = STATE(1901), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1781), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(1938), + [sym_variadic_parameter] = STATE(1938), + [sym_parameter] = STATE(1938), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1748), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1753), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(654), @@ -37381,48 +34922,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [180] = { [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(1901), - [sym_variadic_parameter] = STATE(1901), - [sym_parameter] = STATE(1901), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1781), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(1938), + [sym_variadic_parameter] = STATE(1938), + [sym_parameter] = STATE(1938), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1748), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1753), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_RPAREN] = ACTIONS(716), @@ -37484,88 +35025,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [181] = { [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(1901), - [sym_variadic_parameter] = STATE(1901), - [sym_parameter] = STATE(1901), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1781), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(1938), + [sym_variadic_parameter] = STATE(1938), + [sym_parameter] = STATE(1938), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1748), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(720), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(732), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(692), + [anon_sym_COLON_COLON] = ACTIONS(734), + [anon_sym__] = ACTIONS(736), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37577,98 +35118,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(710), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym_attribute_item] = STATE(192), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(1901), - [sym_variadic_parameter] = STATE(1901), - [sym_parameter] = STATE(1901), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1781), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(193), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2090), + [sym_variadic_parameter] = STATE(2090), + [sym_parameter] = STATE(2090), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1779), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(728), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(746), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(736), + [anon_sym_COMMA] = ACTIONS(748), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(740), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(734), + [anon_sym__] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37680,98 +35221,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_attribute_item] = STATE(193), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2080), - [sym_variadic_parameter] = STATE(2080), - [sym_parameter] = STATE(2080), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1787), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(192), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(1938), + [sym_variadic_parameter] = STATE(1938), + [sym_parameter] = STATE(1938), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1836), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(750), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1753), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(752), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(678), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(752), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(676), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_POUND] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(692), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37783,97 +35324,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(710), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [184] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2260), - [sym_variadic_parameter] = STATE(2260), - [sym_parameter] = STATE(2260), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1947), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2259), + [sym_variadic_parameter] = STATE(2259), + [sym_parameter] = STATE(2259), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(756), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37885,97 +35426,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [185] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2260), - [sym_variadic_parameter] = STATE(2260), - [sym_parameter] = STATE(2260), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1947), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2259), + [sym_variadic_parameter] = STATE(2259), + [sym_parameter] = STATE(2259), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -37987,97 +35528,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [186] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2260), - [sym_variadic_parameter] = STATE(2260), - [sym_parameter] = STATE(2260), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1947), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2259), + [sym_variadic_parameter] = STATE(2259), + [sym_parameter] = STATE(2259), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(762), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38089,97 +35630,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [187] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2260), - [sym_variadic_parameter] = STATE(2260), - [sym_parameter] = STATE(2260), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1947), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2259), + [sym_variadic_parameter] = STATE(2259), + [sym_parameter] = STATE(2259), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(764), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38191,97 +35732,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [188] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2260), - [sym_variadic_parameter] = STATE(2260), - [sym_parameter] = STATE(2260), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1947), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2259), + [sym_variadic_parameter] = STATE(2259), + [sym_parameter] = STATE(2259), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(766), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38293,97 +35834,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [189] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2260), - [sym_variadic_parameter] = STATE(2260), - [sym_parameter] = STATE(2260), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1947), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2259), + [sym_variadic_parameter] = STATE(2259), + [sym_parameter] = STATE(2259), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_RPAREN] = ACTIONS(768), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38395,96 +35936,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [190] = { [sym_attribute_item] = STATE(191), - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2260), - [sym_variadic_parameter] = STATE(2260), - [sym_parameter] = STATE(2260), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1947), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2259), + [sym_variadic_parameter] = STATE(2259), + [sym_parameter] = STATE(2259), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1877), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(678), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(758), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38496,94 +36037,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2287), - [sym_variadic_parameter] = STATE(2287), - [sym_parameter] = STATE(2287), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1893), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2235), + [sym_variadic_parameter] = STATE(2235), + [sym_parameter] = STATE(2235), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1864), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(770), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38595,94 +36136,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2069), - [sym_variadic_parameter] = STATE(2069), - [sym_parameter] = STATE(2069), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1802), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2064), + [sym_variadic_parameter] = STATE(2064), + [sym_parameter] = STATE(2064), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1787), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38694,94 +36235,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_function_modifiers] = STATE(2472), - [sym_self_parameter] = STATE(2064), - [sym_variadic_parameter] = STATE(2064), - [sym_parameter] = STATE(2064), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1767), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(1902), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_self_parameter] = STATE(2054), + [sym_variadic_parameter] = STATE(2054), + [sym_parameter] = STATE(2054), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1794), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(1926), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2281), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2215), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), + [anon_sym_COLON_COLON] = ACTIONS(734), [anon_sym__] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(738), [anon_sym_DOT_DOT_DOT] = ACTIONS(694), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(698), @@ -38793,96 +36334,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(744), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(740), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [194] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2009), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1842), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1730), - [sym_scoped_identifier] = STATE(1528), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1791), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(778), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), + [anon_sym_RPAREN] = ACTIONS(776), [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_RBRACK] = ACTIONS(780), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(782), - [anon_sym_i8] = ACTIONS(782), - [anon_sym_u16] = ACTIONS(782), - [anon_sym_i16] = ACTIONS(782), - [anon_sym_u32] = ACTIONS(782), - [anon_sym_i32] = ACTIONS(782), - [anon_sym_u64] = ACTIONS(782), - [anon_sym_i64] = ACTIONS(782), - [anon_sym_u128] = ACTIONS(782), - [anon_sym_i128] = ACTIONS(782), - [anon_sym_isize] = ACTIONS(782), - [anon_sym_usize] = ACTIONS(782), - [anon_sym_f32] = ACTIONS(782), - [anon_sym_f64] = ACTIONS(782), - [anon_sym_bool] = ACTIONS(782), - [anon_sym_str] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(784), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(786), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_COMMA] = ACTIONS(778), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(790), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -38890,57 +36431,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(800), - [sym_super] = ACTIONS(800), - [sym_crate] = ACTIONS(800), - [sym_metavariable] = ACTIONS(802), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1831), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1842), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(804), + [anon_sym_RPAREN] = ACTIONS(788), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), [anon_sym_u8] = ACTIONS(660), @@ -38970,16 +36511,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(806), + [anon_sym_COMMA] = ACTIONS(778), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -38996,48 +36537,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1831), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1842), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(790), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), [anon_sym_u8] = ACTIONS(660), @@ -39067,16 +36608,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(806), + [anon_sym_COMMA] = ACTIONS(778), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39093,87 +36634,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1831), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1901), + [sym_bracketed_type] = STATE(2521), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), - [anon_sym_RPAREN] = ACTIONS(812), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2522), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1542), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1835), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_RBRACK] = ACTIONS(796), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(800), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(802), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), - [anon_sym_COMMA] = ACTIONS(806), + [anon_sym_COMMA] = ACTIONS(804), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), + [anon_sym_COLON_COLON] = ACTIONS(806), + [anon_sym__] = ACTIONS(780), [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39181,10 +36722,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(712), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_crate] = ACTIONS(810), + [sym_metavariable] = ACTIONS(812), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), @@ -39287,85 +36828,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(620), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1433), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(818), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39373,94 +36914,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(820), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(712), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(2521), + [sym_lifetime] = STATE(620), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2522), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1542), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1433), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(818), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(800), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(802), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_COLON_COLON] = ACTIONS(806), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(822), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39468,149 +37009,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_crate] = ACTIONS(810), + [sym_metavariable] = ACTIONS(812), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1730), - [sym_scoped_identifier] = STATE(1528), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(778), - [anon_sym_LBRACK] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(782), - [anon_sym_i8] = ACTIONS(782), - [anon_sym_u16] = ACTIONS(782), - [anon_sym_i16] = ACTIONS(782), - [anon_sym_u32] = ACTIONS(782), - [anon_sym_i32] = ACTIONS(782), - [anon_sym_u64] = ACTIONS(782), - [anon_sym_i64] = ACTIONS(782), - [anon_sym_u128] = ACTIONS(782), - [anon_sym_i128] = ACTIONS(782), - [anon_sym_isize] = ACTIONS(782), - [anon_sym_usize] = ACTIONS(782), - [anon_sym_f32] = ACTIONS(782), - [anon_sym_f64] = ACTIONS(782), - [anon_sym_bool] = ACTIONS(782), - [anon_sym_str] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(784), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(786), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(790), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), - [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(800), - [sym_super] = ACTIONS(800), - [sym_crate] = ACTIONS(800), - [sym_metavariable] = ACTIONS(802), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [202] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1399), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1390), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -39632,7 +37078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), [anon_sym_default] = ACTIONS(668), @@ -39646,11 +37092,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39666,86 +37112,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [203] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1399), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1390), + [202] = { + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_COLON_COLON] = ACTIONS(734), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(826), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39753,94 +37199,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(746), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [204] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1399), - [sym_bracketed_type] = STATE(2504), - [sym_lifetime] = STATE(620), - [sym_array_type] = STATE(1390), + [203] = { + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2505), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1710), - [sym_scoped_identifier] = STATE(1565), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(726), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(730), - [anon_sym_i8] = ACTIONS(730), - [anon_sym_u16] = ACTIONS(730), - [anon_sym_i16] = ACTIONS(730), - [anon_sym_u32] = ACTIONS(730), - [anon_sym_i32] = ACTIONS(730), - [anon_sym_u64] = ACTIONS(730), - [anon_sym_i64] = ACTIONS(730), - [anon_sym_u128] = ACTIONS(730), - [anon_sym_i128] = ACTIONS(730), - [anon_sym_isize] = ACTIONS(730), - [anon_sym_usize] = ACTIONS(730), - [anon_sym_f32] = ACTIONS(730), - [anon_sym_f64] = ACTIONS(730), - [anon_sym_bool] = ACTIONS(730), - [anon_sym_str] = ACTIONS(730), - [anon_sym_char] = ACTIONS(730), - [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(732), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(734), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(738), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(818), + [anon_sym_COLON_COLON] = ACTIONS(734), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39848,94 +37294,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), - [sym_super] = ACTIONS(746), - [sym_crate] = ACTIONS(746), - [sym_metavariable] = ACTIONS(748), + [sym_self] = ACTIONS(826), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [205] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1399), - [sym_bracketed_type] = STATE(2511), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1390), + [204] = { + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2512), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1730), - [sym_scoped_identifier] = STATE(1528), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(778), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(650), + [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(782), - [anon_sym_i8] = ACTIONS(782), - [anon_sym_u16] = ACTIONS(782), - [anon_sym_i16] = ACTIONS(782), - [anon_sym_u32] = ACTIONS(782), - [anon_sym_i32] = ACTIONS(782), - [anon_sym_u64] = ACTIONS(782), - [anon_sym_i64] = ACTIONS(782), - [anon_sym_u128] = ACTIONS(782), - [anon_sym_i128] = ACTIONS(782), - [anon_sym_isize] = ACTIONS(782), - [anon_sym_usize] = ACTIONS(782), - [anon_sym_f32] = ACTIONS(782), - [anon_sym_f64] = ACTIONS(782), - [anon_sym_bool] = ACTIONS(782), - [anon_sym_str] = ACTIONS(782), - [anon_sym_char] = ACTIONS(782), - [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_u8] = ACTIONS(660), + [anon_sym_i8] = ACTIONS(660), + [anon_sym_u16] = ACTIONS(660), + [anon_sym_i16] = ACTIONS(660), + [anon_sym_u32] = ACTIONS(660), + [anon_sym_i32] = ACTIONS(660), + [anon_sym_u64] = ACTIONS(660), + [anon_sym_i64] = ACTIONS(660), + [anon_sym_u128] = ACTIONS(660), + [anon_sym_i128] = ACTIONS(660), + [anon_sym_isize] = ACTIONS(660), + [anon_sym_usize] = ACTIONS(660), + [anon_sym_f32] = ACTIONS(660), + [anon_sym_f64] = ACTIONS(660), + [anon_sym_bool] = ACTIONS(660), + [anon_sym_str] = ACTIONS(660), + [anon_sym_char] = ACTIONS(660), + [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(784), + [anon_sym_default] = ACTIONS(668), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(786), + [anon_sym_union] = ACTIONS(676), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(790), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(794), + [anon_sym_COLON_COLON] = ACTIONS(688), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -39943,54 +37389,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(800), - [sym_super] = ACTIONS(800), - [sym_crate] = ACTIONS(800), - [sym_metavariable] = ACTIONS(802), + [sym_self] = ACTIONS(828), + [sym_super] = ACTIONS(712), + [sym_crate] = ACTIONS(712), + [sym_metavariable] = ACTIONS(714), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [206] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [205] = { + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(2518), + [sym_lifetime] = STATE(621), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2519), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1746), + [sym_scoped_identifier] = STATE(1498), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1433), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(652), [anon_sym_LBRACK] = ACTIONS(656), @@ -40012,7 +37458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(660), [anon_sym_str] = ACTIONS(660), [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_SQUOTE] = ACTIONS(818), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), [anon_sym_default] = ACTIONS(668), @@ -40026,11 +37472,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(782), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(830), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -40038,7 +37484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(834), + [sym_self] = ACTIONS(832), [sym_super] = ACTIONS(712), [sym_crate] = ACTIONS(712), [sym_metavariable] = ACTIONS(714), @@ -40046,86 +37492,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [206] = { + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(2514), + [sym_lifetime] = STATE(621), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1433), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(818), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(666), + [anon_sym_default] = ACTIONS(728), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(730), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(734), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(824), + [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(834), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(836), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, [207] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2508), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2521), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2522), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1759), + [sym_scoped_identifier] = STATE(1542), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(800), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(802), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), + [anon_sym_COLON_COLON] = ACTIONS(806), + [anon_sym__] = ACTIONS(780), [anon_sym_AMP] = ACTIONS(808), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -40133,94 +37674,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(712), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(810), + [sym_super] = ACTIONS(810), + [sym_crate] = ACTIONS(810), + [sym_metavariable] = ACTIONS(812), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1399), - [sym_bracketed_type] = STATE(2508), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(2514), [sym_lifetime] = STATE(620), - [sym_array_type] = STATE(1390), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2509), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1728), - [sym_scoped_identifier] = STATE(1505), - [sym_scoped_type_identifier] = STATE(1474), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(650), - [anon_sym_LPAREN] = ACTIONS(652), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2515), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1726), + [sym_scoped_identifier] = STATE(1594), + [sym_scoped_type_identifier] = STATE(1481), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1433), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(720), + [anon_sym_LPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(656), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(660), - [anon_sym_i8] = ACTIONS(660), - [anon_sym_u16] = ACTIONS(660), - [anon_sym_i16] = ACTIONS(660), - [anon_sym_u32] = ACTIONS(660), - [anon_sym_i32] = ACTIONS(660), - [anon_sym_u64] = ACTIONS(660), - [anon_sym_i64] = ACTIONS(660), - [anon_sym_u128] = ACTIONS(660), - [anon_sym_i128] = ACTIONS(660), - [anon_sym_isize] = ACTIONS(660), - [anon_sym_usize] = ACTIONS(660), - [anon_sym_f32] = ACTIONS(660), - [anon_sym_f64] = ACTIONS(660), - [anon_sym_bool] = ACTIONS(660), - [anon_sym_str] = ACTIONS(660), - [anon_sym_char] = ACTIONS(660), - [anon_sym_SQUOTE] = ACTIONS(822), + [anon_sym_u8] = ACTIONS(726), + [anon_sym_i8] = ACTIONS(726), + [anon_sym_u16] = ACTIONS(726), + [anon_sym_i16] = ACTIONS(726), + [anon_sym_u32] = ACTIONS(726), + [anon_sym_i32] = ACTIONS(726), + [anon_sym_u64] = ACTIONS(726), + [anon_sym_i64] = ACTIONS(726), + [anon_sym_u128] = ACTIONS(726), + [anon_sym_i128] = ACTIONS(726), + [anon_sym_isize] = ACTIONS(726), + [anon_sym_usize] = ACTIONS(726), + [anon_sym_f32] = ACTIONS(726), + [anon_sym_f64] = ACTIONS(726), + [anon_sym_bool] = ACTIONS(726), + [anon_sym_str] = ACTIONS(726), + [anon_sym_char] = ACTIONS(726), + [anon_sym_SQUOTE] = ACTIONS(818), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(666), - [anon_sym_default] = ACTIONS(668), + [anon_sym_default] = ACTIONS(728), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(676), + [anon_sym_union] = ACTIONS(730), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(688), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(808), + [anon_sym_COLON_COLON] = ACTIONS(734), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(824), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(836), - [anon_sym_DOT_DOT] = ACTIONS(798), + [sym_mutable_specifier] = ACTIONS(838), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -40228,38 +37769,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(838), - [sym_super] = ACTIONS(712), - [sym_crate] = ACTIONS(712), - [sym_metavariable] = ACTIONS(714), + [sym_self] = ACTIONS(742), + [sym_super] = ACTIONS(742), + [sym_crate] = ACTIONS(742), + [sym_metavariable] = ACTIONS(744), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [209] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1425), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [sym_identifier] = ACTIONS(840), [anon_sym_LPAREN] = ACTIONS(842), [anon_sym_LBRACE] = ACTIONS(842), @@ -40301,9 +37842,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(842), [anon_sym_LT] = ACTIONS(842), [anon_sym_COLON_COLON] = ACTIONS(842), - [anon_sym__] = ACTIONS(792), + [anon_sym__] = ACTIONS(780), [anon_sym_AMP] = ACTIONS(842), - [sym_mutable_specifier] = ACTIONS(796), + [sym_mutable_specifier] = ACTIONS(784), [anon_sym_DOT_DOT] = ACTIONS(842), [anon_sym_DASH] = ACTIONS(840), [anon_sym_PIPE] = ACTIONS(842), @@ -40325,165 +37866,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [210] = { [sym_else_clause] = STATE(221), - [sym_identifier] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(400), - [anon_sym_RBRACE] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(400), - [anon_sym_PLUS] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_QMARK] = ACTIONS(400), - [anon_sym_u8] = ACTIONS(402), - [anon_sym_i8] = ACTIONS(402), - [anon_sym_u16] = ACTIONS(402), - [anon_sym_i16] = ACTIONS(402), - [anon_sym_u32] = ACTIONS(402), - [anon_sym_i32] = ACTIONS(402), - [anon_sym_u64] = ACTIONS(402), - [anon_sym_i64] = ACTIONS(402), - [anon_sym_u128] = ACTIONS(402), - [anon_sym_i128] = ACTIONS(402), - [anon_sym_isize] = ACTIONS(402), - [anon_sym_usize] = ACTIONS(402), - [anon_sym_f32] = ACTIONS(402), - [anon_sym_f64] = ACTIONS(402), - [anon_sym_bool] = ACTIONS(402), - [anon_sym_str] = ACTIONS(402), - [anon_sym_char] = ACTIONS(402), - [anon_sym_as] = ACTIONS(402), - [anon_sym_const] = ACTIONS(402), - [anon_sym_default] = ACTIONS(402), - [anon_sym_union] = ACTIONS(402), - [anon_sym_POUND] = ACTIONS(400), - [anon_sym_EQ] = ACTIONS(402), - [anon_sym_COMMA] = ACTIONS(400), - [anon_sym_ref] = ACTIONS(402), - [anon_sym_LT] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(402), + [sym_identifier] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(390), + [anon_sym_RBRACE] = ACTIONS(390), + [anon_sym_LBRACK] = ACTIONS(390), + [anon_sym_PLUS] = ACTIONS(392), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(390), + [anon_sym_u8] = ACTIONS(392), + [anon_sym_i8] = ACTIONS(392), + [anon_sym_u16] = ACTIONS(392), + [anon_sym_i16] = ACTIONS(392), + [anon_sym_u32] = ACTIONS(392), + [anon_sym_i32] = ACTIONS(392), + [anon_sym_u64] = ACTIONS(392), + [anon_sym_i64] = ACTIONS(392), + [anon_sym_u128] = ACTIONS(392), + [anon_sym_i128] = ACTIONS(392), + [anon_sym_isize] = ACTIONS(392), + [anon_sym_usize] = ACTIONS(392), + [anon_sym_f32] = ACTIONS(392), + [anon_sym_f64] = ACTIONS(392), + [anon_sym_bool] = ACTIONS(392), + [anon_sym_str] = ACTIONS(392), + [anon_sym_char] = ACTIONS(392), + [anon_sym_as] = ACTIONS(392), + [anon_sym_const] = ACTIONS(392), + [anon_sym_default] = ACTIONS(392), + [anon_sym_union] = ACTIONS(392), + [anon_sym_POUND] = ACTIONS(390), + [anon_sym_EQ] = ACTIONS(392), + [anon_sym_COMMA] = ACTIONS(390), + [anon_sym_ref] = ACTIONS(392), + [anon_sym_LT] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(392), [anon_sym_else] = ACTIONS(844), - [anon_sym_COLON_COLON] = ACTIONS(400), - [anon_sym__] = ACTIONS(402), - [anon_sym_AMP] = ACTIONS(402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(400), - [sym_mutable_specifier] = ACTIONS(402), - [anon_sym_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(402), - [anon_sym_AMP_AMP] = ACTIONS(400), - [anon_sym_PIPE_PIPE] = ACTIONS(400), - [anon_sym_PIPE] = ACTIONS(402), - [anon_sym_CARET] = ACTIONS(402), - [anon_sym_EQ_EQ] = ACTIONS(400), - [anon_sym_BANG_EQ] = ACTIONS(400), - [anon_sym_LT_EQ] = ACTIONS(400), - [anon_sym_GT_EQ] = ACTIONS(400), - [anon_sym_LT_LT] = ACTIONS(402), - [anon_sym_GT_GT] = ACTIONS(402), - [anon_sym_SLASH] = ACTIONS(402), - [anon_sym_PERCENT] = ACTIONS(402), - [anon_sym_PLUS_EQ] = ACTIONS(400), - [anon_sym_DASH_EQ] = ACTIONS(400), - [anon_sym_STAR_EQ] = ACTIONS(400), - [anon_sym_SLASH_EQ] = ACTIONS(400), - [anon_sym_PERCENT_EQ] = ACTIONS(400), - [anon_sym_AMP_EQ] = ACTIONS(400), - [anon_sym_PIPE_EQ] = ACTIONS(400), - [anon_sym_CARET_EQ] = ACTIONS(400), - [anon_sym_LT_LT_EQ] = ACTIONS(400), - [anon_sym_GT_GT_EQ] = ACTIONS(400), - [anon_sym_DOT] = ACTIONS(402), - [sym_integer_literal] = ACTIONS(400), - [aux_sym_string_literal_token1] = ACTIONS(400), - [sym_char_literal] = ACTIONS(400), - [anon_sym_true] = ACTIONS(402), - [anon_sym_false] = ACTIONS(402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(402), - [sym_super] = ACTIONS(402), - [sym_crate] = ACTIONS(402), - [sym_metavariable] = ACTIONS(400), - [sym_raw_string_literal] = ACTIONS(400), - [sym_float_literal] = ACTIONS(400), + [anon_sym_COLON_COLON] = ACTIONS(390), + [anon_sym__] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(390), + [sym_mutable_specifier] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_EQ] = ACTIONS(390), + [anon_sym_DASH] = ACTIONS(392), + [anon_sym_AMP_AMP] = ACTIONS(390), + [anon_sym_PIPE_PIPE] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(392), + [anon_sym_CARET] = ACTIONS(392), + [anon_sym_EQ_EQ] = ACTIONS(390), + [anon_sym_BANG_EQ] = ACTIONS(390), + [anon_sym_LT_EQ] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(390), + [anon_sym_LT_LT] = ACTIONS(392), + [anon_sym_GT_GT] = ACTIONS(392), + [anon_sym_SLASH] = ACTIONS(392), + [anon_sym_PERCENT] = ACTIONS(392), + [anon_sym_PLUS_EQ] = ACTIONS(390), + [anon_sym_DASH_EQ] = ACTIONS(390), + [anon_sym_STAR_EQ] = ACTIONS(390), + [anon_sym_SLASH_EQ] = ACTIONS(390), + [anon_sym_PERCENT_EQ] = ACTIONS(390), + [anon_sym_AMP_EQ] = ACTIONS(390), + [anon_sym_PIPE_EQ] = ACTIONS(390), + [anon_sym_CARET_EQ] = ACTIONS(390), + [anon_sym_LT_LT_EQ] = ACTIONS(390), + [anon_sym_GT_GT_EQ] = ACTIONS(390), + [anon_sym_DOT] = ACTIONS(392), + [sym_integer_literal] = ACTIONS(390), + [aux_sym_string_literal_token1] = ACTIONS(390), + [sym_char_literal] = ACTIONS(390), + [anon_sym_true] = ACTIONS(392), + [anon_sym_false] = ACTIONS(392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(392), + [sym_super] = ACTIONS(392), + [sym_crate] = ACTIONS(392), + [sym_metavariable] = ACTIONS(390), + [sym_raw_string_literal] = ACTIONS(390), + [sym_float_literal] = ACTIONS(390), [sym_block_comment] = ACTIONS(3), }, [211] = { - [sym_identifier] = ACTIONS(408), - [anon_sym_LPAREN] = ACTIONS(406), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(408), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(408), - [anon_sym_i8] = ACTIONS(408), - [anon_sym_u16] = ACTIONS(408), - [anon_sym_i16] = ACTIONS(408), - [anon_sym_u32] = ACTIONS(408), - [anon_sym_i32] = ACTIONS(408), - [anon_sym_u64] = ACTIONS(408), - [anon_sym_i64] = ACTIONS(408), - [anon_sym_u128] = ACTIONS(408), - [anon_sym_i128] = ACTIONS(408), - [anon_sym_isize] = ACTIONS(408), - [anon_sym_usize] = ACTIONS(408), - [anon_sym_f32] = ACTIONS(408), - [anon_sym_f64] = ACTIONS(408), - [anon_sym_bool] = ACTIONS(408), - [anon_sym_str] = ACTIONS(408), - [anon_sym_char] = ACTIONS(408), - [anon_sym_as] = ACTIONS(408), - [anon_sym_const] = ACTIONS(408), - [anon_sym_default] = ACTIONS(408), - [anon_sym_union] = ACTIONS(408), - [anon_sym_POUND] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_COMMA] = ACTIONS(406), - [anon_sym_ref] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(408), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_else] = ACTIONS(408), - [anon_sym_COLON_COLON] = ACTIONS(406), - [anon_sym__] = ACTIONS(408), - [anon_sym_AMP] = ACTIONS(408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [sym_mutable_specifier] = ACTIONS(408), - [anon_sym_DOT_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(408), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), - [sym_integer_literal] = ACTIONS(406), - [aux_sym_string_literal_token1] = ACTIONS(406), - [sym_char_literal] = ACTIONS(406), - [anon_sym_true] = ACTIONS(408), - [anon_sym_false] = ACTIONS(408), + [sym_identifier] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(410), + [anon_sym_RBRACE] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(410), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(412), + [anon_sym_QMARK] = ACTIONS(410), + [anon_sym_u8] = ACTIONS(412), + [anon_sym_i8] = ACTIONS(412), + [anon_sym_u16] = ACTIONS(412), + [anon_sym_i16] = ACTIONS(412), + [anon_sym_u32] = ACTIONS(412), + [anon_sym_i32] = ACTIONS(412), + [anon_sym_u64] = ACTIONS(412), + [anon_sym_i64] = ACTIONS(412), + [anon_sym_u128] = ACTIONS(412), + [anon_sym_i128] = ACTIONS(412), + [anon_sym_isize] = ACTIONS(412), + [anon_sym_usize] = ACTIONS(412), + [anon_sym_f32] = ACTIONS(412), + [anon_sym_f64] = ACTIONS(412), + [anon_sym_bool] = ACTIONS(412), + [anon_sym_str] = ACTIONS(412), + [anon_sym_char] = ACTIONS(412), + [anon_sym_as] = ACTIONS(412), + [anon_sym_const] = ACTIONS(412), + [anon_sym_default] = ACTIONS(412), + [anon_sym_union] = ACTIONS(412), + [anon_sym_POUND] = ACTIONS(410), + [anon_sym_EQ] = ACTIONS(412), + [anon_sym_COMMA] = ACTIONS(410), + [anon_sym_ref] = ACTIONS(412), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_else] = ACTIONS(412), + [anon_sym_COLON_COLON] = ACTIONS(410), + [anon_sym__] = ACTIONS(412), + [anon_sym_AMP] = ACTIONS(412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(410), + [sym_mutable_specifier] = ACTIONS(412), + [anon_sym_DOT_DOT] = ACTIONS(412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(410), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_AMP_AMP] = ACTIONS(410), + [anon_sym_PIPE_PIPE] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(412), + [anon_sym_CARET] = ACTIONS(412), + [anon_sym_EQ_EQ] = ACTIONS(410), + [anon_sym_BANG_EQ] = ACTIONS(410), + [anon_sym_LT_EQ] = ACTIONS(410), + [anon_sym_GT_EQ] = ACTIONS(410), + [anon_sym_LT_LT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(412), + [anon_sym_PERCENT] = ACTIONS(412), + [anon_sym_PLUS_EQ] = ACTIONS(410), + [anon_sym_DASH_EQ] = ACTIONS(410), + [anon_sym_STAR_EQ] = ACTIONS(410), + [anon_sym_SLASH_EQ] = ACTIONS(410), + [anon_sym_PERCENT_EQ] = ACTIONS(410), + [anon_sym_AMP_EQ] = ACTIONS(410), + [anon_sym_PIPE_EQ] = ACTIONS(410), + [anon_sym_CARET_EQ] = ACTIONS(410), + [anon_sym_LT_LT_EQ] = ACTIONS(410), + [anon_sym_GT_GT_EQ] = ACTIONS(410), + [anon_sym_DOT] = ACTIONS(412), + [sym_integer_literal] = ACTIONS(410), + [aux_sym_string_literal_token1] = ACTIONS(410), + [sym_char_literal] = ACTIONS(410), + [anon_sym_true] = ACTIONS(412), + [anon_sym_false] = ACTIONS(412), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_crate] = ACTIONS(408), - [sym_metavariable] = ACTIONS(406), - [sym_raw_string_literal] = ACTIONS(406), - [sym_float_literal] = ACTIONS(406), + [sym_self] = ACTIONS(412), + [sym_super] = ACTIONS(412), + [sym_crate] = ACTIONS(412), + [sym_metavariable] = ACTIONS(410), + [sym_raw_string_literal] = ACTIONS(410), + [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, [212] = { @@ -40568,487 +38109,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [213] = { - [sym_identifier] = ACTIONS(412), - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_RBRACE] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(410), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(410), - [anon_sym_u8] = ACTIONS(412), - [anon_sym_i8] = ACTIONS(412), - [anon_sym_u16] = ACTIONS(412), - [anon_sym_i16] = ACTIONS(412), - [anon_sym_u32] = ACTIONS(412), - [anon_sym_i32] = ACTIONS(412), - [anon_sym_u64] = ACTIONS(412), - [anon_sym_i64] = ACTIONS(412), - [anon_sym_u128] = ACTIONS(412), - [anon_sym_i128] = ACTIONS(412), - [anon_sym_isize] = ACTIONS(412), - [anon_sym_usize] = ACTIONS(412), - [anon_sym_f32] = ACTIONS(412), - [anon_sym_f64] = ACTIONS(412), - [anon_sym_bool] = ACTIONS(412), - [anon_sym_str] = ACTIONS(412), - [anon_sym_char] = ACTIONS(412), - [anon_sym_as] = ACTIONS(412), - [anon_sym_const] = ACTIONS(412), - [anon_sym_default] = ACTIONS(412), - [anon_sym_union] = ACTIONS(412), - [anon_sym_POUND] = ACTIONS(410), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_COMMA] = ACTIONS(410), - [anon_sym_ref] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(412), - [anon_sym_GT] = ACTIONS(412), - [anon_sym_else] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(410), - [anon_sym__] = ACTIONS(412), - [anon_sym_AMP] = ACTIONS(412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(410), - [sym_mutable_specifier] = ACTIONS(412), - [anon_sym_DOT_DOT] = ACTIONS(412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(410), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(410), - [anon_sym_PIPE_PIPE] = ACTIONS(410), - [anon_sym_PIPE] = ACTIONS(412), - [anon_sym_CARET] = ACTIONS(412), - [anon_sym_EQ_EQ] = ACTIONS(410), - [anon_sym_BANG_EQ] = ACTIONS(410), - [anon_sym_LT_EQ] = ACTIONS(410), - [anon_sym_GT_EQ] = ACTIONS(410), - [anon_sym_LT_LT] = ACTIONS(412), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_PLUS_EQ] = ACTIONS(410), - [anon_sym_DASH_EQ] = ACTIONS(410), - [anon_sym_STAR_EQ] = ACTIONS(410), - [anon_sym_SLASH_EQ] = ACTIONS(410), - [anon_sym_PERCENT_EQ] = ACTIONS(410), - [anon_sym_AMP_EQ] = ACTIONS(410), - [anon_sym_PIPE_EQ] = ACTIONS(410), - [anon_sym_CARET_EQ] = ACTIONS(410), - [anon_sym_LT_LT_EQ] = ACTIONS(410), - [anon_sym_GT_GT_EQ] = ACTIONS(410), - [anon_sym_DOT] = ACTIONS(412), - [sym_integer_literal] = ACTIONS(410), - [aux_sym_string_literal_token1] = ACTIONS(410), - [sym_char_literal] = ACTIONS(410), - [anon_sym_true] = ACTIONS(412), - [anon_sym_false] = ACTIONS(412), + [sym_identifier] = ACTIONS(408), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [anon_sym_as] = ACTIONS(408), + [anon_sym_const] = ACTIONS(408), + [anon_sym_default] = ACTIONS(408), + [anon_sym_union] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_ref] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(408), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_else] = ACTIONS(408), + [anon_sym_COLON_COLON] = ACTIONS(406), + [anon_sym__] = ACTIONS(408), + [anon_sym_AMP] = ACTIONS(408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [sym_mutable_specifier] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), + [sym_integer_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(406), + [sym_char_literal] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(412), - [sym_super] = ACTIONS(412), - [sym_crate] = ACTIONS(412), - [sym_metavariable] = ACTIONS(410), - [sym_raw_string_literal] = ACTIONS(410), - [sym_float_literal] = ACTIONS(410), + [sym_self] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_crate] = ACTIONS(408), + [sym_metavariable] = ACTIONS(406), + [sym_raw_string_literal] = ACTIONS(406), + [sym_float_literal] = ACTIONS(406), [sym_block_comment] = ACTIONS(3), }, [214] = { + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1974), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2193), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [sym_block] = STATE(2193), + [sym__literal] = STATE(2193), + [sym_string_literal] = STATE(2256), + [sym_boolean_literal] = STATE(2256), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(846), [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_u8] = ACTIONS(846), - [anon_sym_i8] = ACTIONS(846), - [anon_sym_u16] = ACTIONS(846), - [anon_sym_i16] = ACTIONS(846), - [anon_sym_u32] = ACTIONS(846), - [anon_sym_i32] = ACTIONS(846), - [anon_sym_u64] = ACTIONS(846), - [anon_sym_i64] = ACTIONS(846), - [anon_sym_u128] = ACTIONS(846), - [anon_sym_i128] = ACTIONS(846), - [anon_sym_isize] = ACTIONS(846), - [anon_sym_usize] = ACTIONS(846), - [anon_sym_f32] = ACTIONS(846), - [anon_sym_f64] = ACTIONS(846), - [anon_sym_bool] = ACTIONS(846), - [anon_sym_str] = ACTIONS(846), - [anon_sym_char] = ACTIONS(846), - [anon_sym_as] = ACTIONS(460), - [anon_sym_const] = ACTIONS(846), - [anon_sym_default] = ACTIONS(846), - [anon_sym_union] = ACTIONS(846), - [anon_sym_POUND] = ACTIONS(848), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_ref] = ACTIONS(846), - [anon_sym_LT] = ACTIONS(846), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(848), - [anon_sym__] = ACTIONS(846), - [anon_sym_AMP] = ACTIONS(846), - [anon_sym_DOT_DOT_DOT] = ACTIONS(458), - [sym_mutable_specifier] = ACTIONS(846), - [anon_sym_DOT_DOT] = ACTIONS(846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(846), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(460), - [sym_integer_literal] = ACTIONS(848), - [aux_sym_string_literal_token1] = ACTIONS(848), - [sym_char_literal] = ACTIONS(848), - [anon_sym_true] = ACTIONS(846), - [anon_sym_false] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(858), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(866), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(866), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(846), - [sym_super] = ACTIONS(846), - [sym_crate] = ACTIONS(846), - [sym_metavariable] = ACTIONS(848), - [sym_raw_string_literal] = ACTIONS(848), - [sym_float_literal] = ACTIONS(848), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_identifier] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(422), - [anon_sym_RBRACE] = ACTIONS(422), - [anon_sym_LBRACK] = ACTIONS(422), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_STAR] = ACTIONS(424), - [anon_sym_QMARK] = ACTIONS(422), - [anon_sym_u8] = ACTIONS(424), - [anon_sym_i8] = ACTIONS(424), - [anon_sym_u16] = ACTIONS(424), - [anon_sym_i16] = ACTIONS(424), - [anon_sym_u32] = ACTIONS(424), - [anon_sym_i32] = ACTIONS(424), - [anon_sym_u64] = ACTIONS(424), - [anon_sym_i64] = ACTIONS(424), - [anon_sym_u128] = ACTIONS(424), - [anon_sym_i128] = ACTIONS(424), - [anon_sym_isize] = ACTIONS(424), - [anon_sym_usize] = ACTIONS(424), - [anon_sym_f32] = ACTIONS(424), - [anon_sym_f64] = ACTIONS(424), - [anon_sym_bool] = ACTIONS(424), - [anon_sym_str] = ACTIONS(424), - [anon_sym_char] = ACTIONS(424), - [anon_sym_as] = ACTIONS(424), - [anon_sym_const] = ACTIONS(424), - [anon_sym_default] = ACTIONS(424), - [anon_sym_union] = ACTIONS(424), - [anon_sym_POUND] = ACTIONS(422), - [anon_sym_EQ] = ACTIONS(424), - [anon_sym_COMMA] = ACTIONS(422), - [anon_sym_ref] = ACTIONS(424), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_COLON_COLON] = ACTIONS(422), - [anon_sym__] = ACTIONS(424), - [anon_sym_AMP] = ACTIONS(424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(422), - [sym_mutable_specifier] = ACTIONS(424), - [anon_sym_DOT_DOT] = ACTIONS(424), - [anon_sym_DOT_DOT_EQ] = ACTIONS(422), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_CARET] = ACTIONS(424), - [anon_sym_EQ_EQ] = ACTIONS(422), - [anon_sym_BANG_EQ] = ACTIONS(422), - [anon_sym_LT_EQ] = ACTIONS(422), - [anon_sym_GT_EQ] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(424), - [anon_sym_PERCENT] = ACTIONS(424), - [anon_sym_PLUS_EQ] = ACTIONS(422), - [anon_sym_DASH_EQ] = ACTIONS(422), - [anon_sym_STAR_EQ] = ACTIONS(422), - [anon_sym_SLASH_EQ] = ACTIONS(422), - [anon_sym_PERCENT_EQ] = ACTIONS(422), - [anon_sym_AMP_EQ] = ACTIONS(422), - [anon_sym_PIPE_EQ] = ACTIONS(422), - [anon_sym_CARET_EQ] = ACTIONS(422), - [anon_sym_LT_LT_EQ] = ACTIONS(422), - [anon_sym_GT_GT_EQ] = ACTIONS(422), - [anon_sym_DOT] = ACTIONS(424), - [sym_integer_literal] = ACTIONS(422), - [aux_sym_string_literal_token1] = ACTIONS(422), - [sym_char_literal] = ACTIONS(422), - [anon_sym_true] = ACTIONS(424), - [anon_sym_false] = ACTIONS(424), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(424), - [sym_super] = ACTIONS(424), - [sym_crate] = ACTIONS(424), - [sym_metavariable] = ACTIONS(422), - [sym_raw_string_literal] = ACTIONS(422), - [sym_float_literal] = ACTIONS(422), + [sym_identifier] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(444), + [anon_sym_RBRACE] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(446), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_QMARK] = ACTIONS(444), + [anon_sym_u8] = ACTIONS(446), + [anon_sym_i8] = ACTIONS(446), + [anon_sym_u16] = ACTIONS(446), + [anon_sym_i16] = ACTIONS(446), + [anon_sym_u32] = ACTIONS(446), + [anon_sym_i32] = ACTIONS(446), + [anon_sym_u64] = ACTIONS(446), + [anon_sym_i64] = ACTIONS(446), + [anon_sym_u128] = ACTIONS(446), + [anon_sym_i128] = ACTIONS(446), + [anon_sym_isize] = ACTIONS(446), + [anon_sym_usize] = ACTIONS(446), + [anon_sym_f32] = ACTIONS(446), + [anon_sym_f64] = ACTIONS(446), + [anon_sym_bool] = ACTIONS(446), + [anon_sym_str] = ACTIONS(446), + [anon_sym_char] = ACTIONS(446), + [anon_sym_as] = ACTIONS(446), + [anon_sym_const] = ACTIONS(446), + [anon_sym_default] = ACTIONS(446), + [anon_sym_union] = ACTIONS(446), + [anon_sym_POUND] = ACTIONS(444), + [anon_sym_EQ] = ACTIONS(446), + [anon_sym_COMMA] = ACTIONS(444), + [anon_sym_ref] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(446), + [anon_sym_GT] = ACTIONS(446), + [anon_sym_COLON_COLON] = ACTIONS(444), + [anon_sym__] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(446), + [anon_sym_DOT_DOT_DOT] = ACTIONS(444), + [sym_mutable_specifier] = ACTIONS(446), + [anon_sym_DOT_DOT] = ACTIONS(446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(444), + [anon_sym_PIPE_PIPE] = ACTIONS(444), + [anon_sym_PIPE] = ACTIONS(446), + [anon_sym_CARET] = ACTIONS(446), + [anon_sym_EQ_EQ] = ACTIONS(444), + [anon_sym_BANG_EQ] = ACTIONS(444), + [anon_sym_LT_EQ] = ACTIONS(444), + [anon_sym_GT_EQ] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(446), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(446), + [anon_sym_PERCENT] = ACTIONS(446), + [anon_sym_PLUS_EQ] = ACTIONS(444), + [anon_sym_DASH_EQ] = ACTIONS(444), + [anon_sym_STAR_EQ] = ACTIONS(444), + [anon_sym_SLASH_EQ] = ACTIONS(444), + [anon_sym_PERCENT_EQ] = ACTIONS(444), + [anon_sym_AMP_EQ] = ACTIONS(444), + [anon_sym_PIPE_EQ] = ACTIONS(444), + [anon_sym_CARET_EQ] = ACTIONS(444), + [anon_sym_LT_LT_EQ] = ACTIONS(444), + [anon_sym_GT_GT_EQ] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(446), + [sym_integer_literal] = ACTIONS(444), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(444), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(446), + [sym_super] = ACTIONS(446), + [sym_crate] = ACTIONS(446), + [sym_metavariable] = ACTIONS(444), + [sym_raw_string_literal] = ACTIONS(444), + [sym_float_literal] = ACTIONS(444), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(608), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(608), - [anon_sym_PLUS] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(610), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_POUND] = ACTIONS(608), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(608), - [anon_sym_ref] = ACTIONS(610), - [anon_sym_LT] = ACTIONS(610), - [anon_sym_GT] = ACTIONS(610), - [anon_sym_COLON_COLON] = ACTIONS(608), - [anon_sym__] = ACTIONS(610), - [anon_sym_AMP] = ACTIONS(610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(608), - [sym_mutable_specifier] = ACTIONS(610), - [anon_sym_DOT_DOT] = ACTIONS(610), - [anon_sym_DOT_DOT_EQ] = ACTIONS(608), - [anon_sym_DASH] = ACTIONS(610), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(610), - [anon_sym_CARET] = ACTIONS(610), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_BANG_EQ] = ACTIONS(608), - [anon_sym_LT_EQ] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(610), - [anon_sym_GT_GT] = ACTIONS(610), - [anon_sym_SLASH] = ACTIONS(610), - [anon_sym_PERCENT] = ACTIONS(610), - [anon_sym_PLUS_EQ] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(608), - [anon_sym_STAR_EQ] = ACTIONS(608), - [anon_sym_SLASH_EQ] = ACTIONS(608), - [anon_sym_PERCENT_EQ] = ACTIONS(608), - [anon_sym_AMP_EQ] = ACTIONS(608), - [anon_sym_PIPE_EQ] = ACTIONS(608), - [anon_sym_CARET_EQ] = ACTIONS(608), - [anon_sym_LT_LT_EQ] = ACTIONS(608), - [anon_sym_GT_GT_EQ] = ACTIONS(608), - [anon_sym_DOT] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(608), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(608), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(608), - [sym_raw_string_literal] = ACTIONS(608), - [sym_float_literal] = ACTIONS(608), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [sym_identifier] = ACTIONS(474), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(472), - [anon_sym_PLUS] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(472), - [anon_sym_u8] = ACTIONS(474), - [anon_sym_i8] = ACTIONS(474), - [anon_sym_u16] = ACTIONS(474), - [anon_sym_i16] = ACTIONS(474), - [anon_sym_u32] = ACTIONS(474), - [anon_sym_i32] = ACTIONS(474), - [anon_sym_u64] = ACTIONS(474), - [anon_sym_i64] = ACTIONS(474), - [anon_sym_u128] = ACTIONS(474), - [anon_sym_i128] = ACTIONS(474), - [anon_sym_isize] = ACTIONS(474), - [anon_sym_usize] = ACTIONS(474), - [anon_sym_f32] = ACTIONS(474), - [anon_sym_f64] = ACTIONS(474), - [anon_sym_bool] = ACTIONS(474), - [anon_sym_str] = ACTIONS(474), - [anon_sym_char] = ACTIONS(474), - [anon_sym_as] = ACTIONS(474), - [anon_sym_const] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_union] = ACTIONS(474), - [anon_sym_POUND] = ACTIONS(472), - [anon_sym_EQ] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(472), - [anon_sym_ref] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(474), - [anon_sym_COLON_COLON] = ACTIONS(472), - [anon_sym__] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(472), - [sym_mutable_specifier] = ACTIONS(474), - [anon_sym_DOT_DOT] = ACTIONS(474), - [anon_sym_DOT_DOT_EQ] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(472), - [anon_sym_PIPE_PIPE] = ACTIONS(472), - [anon_sym_PIPE] = ACTIONS(474), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(472), - [anon_sym_BANG_EQ] = ACTIONS(472), - [anon_sym_LT_EQ] = ACTIONS(472), - [anon_sym_GT_EQ] = ACTIONS(472), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_PLUS_EQ] = ACTIONS(472), - [anon_sym_DASH_EQ] = ACTIONS(472), - [anon_sym_STAR_EQ] = ACTIONS(472), - [anon_sym_SLASH_EQ] = ACTIONS(472), - [anon_sym_PERCENT_EQ] = ACTIONS(472), - [anon_sym_AMP_EQ] = ACTIONS(472), - [anon_sym_PIPE_EQ] = ACTIONS(472), - [anon_sym_CARET_EQ] = ACTIONS(472), - [anon_sym_LT_LT_EQ] = ACTIONS(472), - [anon_sym_GT_GT_EQ] = ACTIONS(472), - [anon_sym_DOT] = ACTIONS(474), - [sym_integer_literal] = ACTIONS(472), - [aux_sym_string_literal_token1] = ACTIONS(472), - [sym_char_literal] = ACTIONS(472), - [anon_sym_true] = ACTIONS(474), - [anon_sym_false] = ACTIONS(474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(474), - [sym_super] = ACTIONS(474), - [sym_crate] = ACTIONS(474), - [sym_metavariable] = ACTIONS(472), - [sym_raw_string_literal] = ACTIONS(472), - [sym_float_literal] = ACTIONS(472), - [sym_block_comment] = ACTIONS(3), - }, - [218] = { - [sym_identifier] = ACTIONS(850), - [anon_sym_LPAREN] = ACTIONS(852), - [anon_sym_RBRACE] = ACTIONS(458), - [anon_sym_LBRACK] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(460), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(458), - [anon_sym_u8] = ACTIONS(850), - [anon_sym_i8] = ACTIONS(850), - [anon_sym_u16] = ACTIONS(850), - [anon_sym_i16] = ACTIONS(850), - [anon_sym_u32] = ACTIONS(850), - [anon_sym_i32] = ACTIONS(850), - [anon_sym_u64] = ACTIONS(850), - [anon_sym_i64] = ACTIONS(850), - [anon_sym_u128] = ACTIONS(850), - [anon_sym_i128] = ACTIONS(850), - [anon_sym_isize] = ACTIONS(850), - [anon_sym_usize] = ACTIONS(850), - [anon_sym_f32] = ACTIONS(850), - [anon_sym_f64] = ACTIONS(850), - [anon_sym_bool] = ACTIONS(850), - [anon_sym_str] = ACTIONS(850), - [anon_sym_char] = ACTIONS(850), - [anon_sym_as] = ACTIONS(460), - [anon_sym_const] = ACTIONS(850), - [anon_sym_default] = ACTIONS(850), - [anon_sym_union] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_EQ] = ACTIONS(460), - [anon_sym_COMMA] = ACTIONS(458), - [anon_sym_ref] = ACTIONS(850), - [anon_sym_LT] = ACTIONS(850), - [anon_sym_GT] = ACTIONS(460), - [anon_sym_COLON_COLON] = ACTIONS(852), - [anon_sym__] = ACTIONS(850), - [anon_sym_AMP] = ACTIONS(850), - [anon_sym_DOT_DOT_DOT] = ACTIONS(458), - [sym_mutable_specifier] = ACTIONS(850), - [anon_sym_DOT_DOT] = ACTIONS(850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(850), - [anon_sym_AMP_AMP] = ACTIONS(458), - [anon_sym_PIPE_PIPE] = ACTIONS(458), - [anon_sym_PIPE] = ACTIONS(460), - [anon_sym_CARET] = ACTIONS(460), - [anon_sym_EQ_EQ] = ACTIONS(458), - [anon_sym_BANG_EQ] = ACTIONS(458), - [anon_sym_LT_EQ] = ACTIONS(458), - [anon_sym_GT_EQ] = ACTIONS(458), - [anon_sym_LT_LT] = ACTIONS(460), - [anon_sym_GT_GT] = ACTIONS(460), - [anon_sym_SLASH] = ACTIONS(460), - [anon_sym_PERCENT] = ACTIONS(460), - [anon_sym_PLUS_EQ] = ACTIONS(458), - [anon_sym_DASH_EQ] = ACTIONS(458), - [anon_sym_STAR_EQ] = ACTIONS(458), - [anon_sym_SLASH_EQ] = ACTIONS(458), - [anon_sym_PERCENT_EQ] = ACTIONS(458), - [anon_sym_AMP_EQ] = ACTIONS(458), - [anon_sym_PIPE_EQ] = ACTIONS(458), - [anon_sym_CARET_EQ] = ACTIONS(458), - [anon_sym_LT_LT_EQ] = ACTIONS(458), - [anon_sym_GT_GT_EQ] = ACTIONS(458), - [anon_sym_DOT] = ACTIONS(460), - [sym_integer_literal] = ACTIONS(852), - [aux_sym_string_literal_token1] = ACTIONS(852), - [sym_char_literal] = ACTIONS(852), - [anon_sym_true] = ACTIONS(850), - [anon_sym_false] = ACTIONS(850), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(456), + [anon_sym_STAR] = ACTIONS(456), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_u8] = ACTIONS(456), + [anon_sym_i8] = ACTIONS(456), + [anon_sym_u16] = ACTIONS(456), + [anon_sym_i16] = ACTIONS(456), + [anon_sym_u32] = ACTIONS(456), + [anon_sym_i32] = ACTIONS(456), + [anon_sym_u64] = ACTIONS(456), + [anon_sym_i64] = ACTIONS(456), + [anon_sym_u128] = ACTIONS(456), + [anon_sym_i128] = ACTIONS(456), + [anon_sym_isize] = ACTIONS(456), + [anon_sym_usize] = ACTIONS(456), + [anon_sym_f32] = ACTIONS(456), + [anon_sym_f64] = ACTIONS(456), + [anon_sym_bool] = ACTIONS(456), + [anon_sym_str] = ACTIONS(456), + [anon_sym_char] = ACTIONS(456), + [anon_sym_as] = ACTIONS(456), + [anon_sym_const] = ACTIONS(456), + [anon_sym_default] = ACTIONS(456), + [anon_sym_union] = ACTIONS(456), + [anon_sym_POUND] = ACTIONS(454), + [anon_sym_EQ] = ACTIONS(456), + [anon_sym_COMMA] = ACTIONS(454), + [anon_sym_ref] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_COLON_COLON] = ACTIONS(454), + [anon_sym__] = ACTIONS(456), + [anon_sym_AMP] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(454), + [sym_mutable_specifier] = ACTIONS(456), + [anon_sym_DOT_DOT] = ACTIONS(456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(456), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_CARET] = ACTIONS(456), + [anon_sym_EQ_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_LT_EQ] = ACTIONS(454), + [anon_sym_GT_EQ] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(456), + [anon_sym_SLASH] = ACTIONS(456), + [anon_sym_PERCENT] = ACTIONS(456), + [anon_sym_PLUS_EQ] = ACTIONS(454), + [anon_sym_DASH_EQ] = ACTIONS(454), + [anon_sym_STAR_EQ] = ACTIONS(454), + [anon_sym_SLASH_EQ] = ACTIONS(454), + [anon_sym_PERCENT_EQ] = ACTIONS(454), + [anon_sym_AMP_EQ] = ACTIONS(454), + [anon_sym_PIPE_EQ] = ACTIONS(454), + [anon_sym_CARET_EQ] = ACTIONS(454), + [anon_sym_LT_LT_EQ] = ACTIONS(454), + [anon_sym_GT_GT_EQ] = ACTIONS(454), + [anon_sym_DOT] = ACTIONS(456), + [sym_integer_literal] = ACTIONS(454), + [aux_sym_string_literal_token1] = ACTIONS(454), + [sym_char_literal] = ACTIONS(454), + [anon_sym_true] = ACTIONS(456), + [anon_sym_false] = ACTIONS(456), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_crate] = ACTIONS(850), - [sym_metavariable] = ACTIONS(852), - [sym_raw_string_literal] = ACTIONS(852), - [sym_float_literal] = ACTIONS(852), + [sym_self] = ACTIONS(456), + [sym_super] = ACTIONS(456), + [sym_crate] = ACTIONS(456), + [sym_metavariable] = ACTIONS(454), + [sym_raw_string_literal] = ACTIONS(454), + [sym_float_literal] = ACTIONS(454), [sym_block_comment] = ACTIONS(3), }, - [219] = { + [217] = { [sym_identifier] = ACTIONS(486), [anon_sym_LPAREN] = ACTIONS(484), [anon_sym_RBRACE] = ACTIONS(484), @@ -41128,247 +38509,727 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(484), [sym_block_comment] = ACTIONS(3), }, + [218] = { + [sym_identifier] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_u8] = ACTIONS(872), + [anon_sym_i8] = ACTIONS(872), + [anon_sym_u16] = ACTIONS(872), + [anon_sym_i16] = ACTIONS(872), + [anon_sym_u32] = ACTIONS(872), + [anon_sym_i32] = ACTIONS(872), + [anon_sym_u64] = ACTIONS(872), + [anon_sym_i64] = ACTIONS(872), + [anon_sym_u128] = ACTIONS(872), + [anon_sym_i128] = ACTIONS(872), + [anon_sym_isize] = ACTIONS(872), + [anon_sym_usize] = ACTIONS(872), + [anon_sym_f32] = ACTIONS(872), + [anon_sym_f64] = ACTIONS(872), + [anon_sym_bool] = ACTIONS(872), + [anon_sym_str] = ACTIONS(872), + [anon_sym_char] = ACTIONS(872), + [anon_sym_as] = ACTIONS(430), + [anon_sym_const] = ACTIONS(872), + [anon_sym_default] = ACTIONS(872), + [anon_sym_union] = ACTIONS(872), + [anon_sym_POUND] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COMMA] = ACTIONS(428), + [anon_sym_ref] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(874), + [anon_sym__] = ACTIONS(872), + [anon_sym_AMP] = ACTIONS(872), + [anon_sym_DOT_DOT_DOT] = ACTIONS(428), + [sym_mutable_specifier] = ACTIONS(872), + [anon_sym_DOT_DOT] = ACTIONS(872), + [anon_sym_DOT_DOT_EQ] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(872), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(430), + [sym_integer_literal] = ACTIONS(874), + [aux_sym_string_literal_token1] = ACTIONS(874), + [sym_char_literal] = ACTIONS(874), + [anon_sym_true] = ACTIONS(872), + [anon_sym_false] = ACTIONS(872), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(872), + [sym_super] = ACTIONS(872), + [sym_crate] = ACTIONS(872), + [sym_metavariable] = ACTIONS(874), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), + [sym_block_comment] = ACTIONS(3), + }, + [219] = { + [sym_identifier] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u8] = ACTIONS(502), + [anon_sym_i8] = ACTIONS(502), + [anon_sym_u16] = ACTIONS(502), + [anon_sym_i16] = ACTIONS(502), + [anon_sym_u32] = ACTIONS(502), + [anon_sym_i32] = ACTIONS(502), + [anon_sym_u64] = ACTIONS(502), + [anon_sym_i64] = ACTIONS(502), + [anon_sym_u128] = ACTIONS(502), + [anon_sym_i128] = ACTIONS(502), + [anon_sym_isize] = ACTIONS(502), + [anon_sym_usize] = ACTIONS(502), + [anon_sym_f32] = ACTIONS(502), + [anon_sym_f64] = ACTIONS(502), + [anon_sym_bool] = ACTIONS(502), + [anon_sym_str] = ACTIONS(502), + [anon_sym_char] = ACTIONS(502), + [anon_sym_as] = ACTIONS(502), + [anon_sym_const] = ACTIONS(502), + [anon_sym_default] = ACTIONS(502), + [anon_sym_union] = ACTIONS(502), + [anon_sym_POUND] = ACTIONS(500), + [anon_sym_EQ] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(500), + [anon_sym_ref] = ACTIONS(502), + [anon_sym_LT] = ACTIONS(502), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_COLON_COLON] = ACTIONS(500), + [anon_sym__] = ACTIONS(502), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(500), + [sym_mutable_specifier] = ACTIONS(502), + [anon_sym_DOT_DOT] = ACTIONS(502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(500), + [anon_sym_PIPE_PIPE] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_EQ_EQ] = ACTIONS(500), + [anon_sym_BANG_EQ] = ACTIONS(500), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_LT_LT] = ACTIONS(502), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(502), + [anon_sym_PERCENT] = ACTIONS(502), + [anon_sym_PLUS_EQ] = ACTIONS(500), + [anon_sym_DASH_EQ] = ACTIONS(500), + [anon_sym_STAR_EQ] = ACTIONS(500), + [anon_sym_SLASH_EQ] = ACTIONS(500), + [anon_sym_PERCENT_EQ] = ACTIONS(500), + [anon_sym_AMP_EQ] = ACTIONS(500), + [anon_sym_PIPE_EQ] = ACTIONS(500), + [anon_sym_CARET_EQ] = ACTIONS(500), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_GT_GT_EQ] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(502), + [sym_integer_literal] = ACTIONS(500), + [aux_sym_string_literal_token1] = ACTIONS(500), + [sym_char_literal] = ACTIONS(500), + [anon_sym_true] = ACTIONS(502), + [anon_sym_false] = ACTIONS(502), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(502), + [sym_super] = ACTIONS(502), + [sym_crate] = ACTIONS(502), + [sym_metavariable] = ACTIONS(500), + [sym_raw_string_literal] = ACTIONS(500), + [sym_float_literal] = ACTIONS(500), + [sym_block_comment] = ACTIONS(3), + }, [220] = { - [sym_identifier] = ACTIONS(432), - [anon_sym_LPAREN] = ACTIONS(430), - [anon_sym_RBRACE] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(430), - [anon_sym_PLUS] = ACTIONS(432), - [anon_sym_STAR] = ACTIONS(432), - [anon_sym_QMARK] = ACTIONS(430), - [anon_sym_u8] = ACTIONS(432), - [anon_sym_i8] = ACTIONS(432), - [anon_sym_u16] = ACTIONS(432), - [anon_sym_i16] = ACTIONS(432), - [anon_sym_u32] = ACTIONS(432), - [anon_sym_i32] = ACTIONS(432), - [anon_sym_u64] = ACTIONS(432), - [anon_sym_i64] = ACTIONS(432), - [anon_sym_u128] = ACTIONS(432), - [anon_sym_i128] = ACTIONS(432), - [anon_sym_isize] = ACTIONS(432), - [anon_sym_usize] = ACTIONS(432), - [anon_sym_f32] = ACTIONS(432), - [anon_sym_f64] = ACTIONS(432), - [anon_sym_bool] = ACTIONS(432), - [anon_sym_str] = ACTIONS(432), - [anon_sym_char] = ACTIONS(432), - [anon_sym_as] = ACTIONS(432), - [anon_sym_const] = ACTIONS(432), - [anon_sym_default] = ACTIONS(432), - [anon_sym_union] = ACTIONS(432), - [anon_sym_POUND] = ACTIONS(430), - [anon_sym_EQ] = ACTIONS(432), - [anon_sym_COMMA] = ACTIONS(430), - [anon_sym_ref] = ACTIONS(432), - [anon_sym_LT] = ACTIONS(432), - [anon_sym_GT] = ACTIONS(432), - [anon_sym_COLON_COLON] = ACTIONS(430), - [anon_sym__] = ACTIONS(432), - [anon_sym_AMP] = ACTIONS(432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(430), - [sym_mutable_specifier] = ACTIONS(432), - [anon_sym_DOT_DOT] = ACTIONS(432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(430), - [anon_sym_DASH] = ACTIONS(432), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_PIPE] = ACTIONS(432), - [anon_sym_CARET] = ACTIONS(432), - [anon_sym_EQ_EQ] = ACTIONS(430), - [anon_sym_BANG_EQ] = ACTIONS(430), - [anon_sym_LT_EQ] = ACTIONS(430), - [anon_sym_GT_EQ] = ACTIONS(430), - [anon_sym_LT_LT] = ACTIONS(432), - [anon_sym_GT_GT] = ACTIONS(432), - [anon_sym_SLASH] = ACTIONS(432), - [anon_sym_PERCENT] = ACTIONS(432), - [anon_sym_PLUS_EQ] = ACTIONS(430), - [anon_sym_DASH_EQ] = ACTIONS(430), - [anon_sym_STAR_EQ] = ACTIONS(430), - [anon_sym_SLASH_EQ] = ACTIONS(430), - [anon_sym_PERCENT_EQ] = ACTIONS(430), - [anon_sym_AMP_EQ] = ACTIONS(430), - [anon_sym_PIPE_EQ] = ACTIONS(430), - [anon_sym_CARET_EQ] = ACTIONS(430), - [anon_sym_LT_LT_EQ] = ACTIONS(430), - [anon_sym_GT_GT_EQ] = ACTIONS(430), - [anon_sym_DOT] = ACTIONS(432), - [sym_integer_literal] = ACTIONS(430), - [aux_sym_string_literal_token1] = ACTIONS(430), - [sym_char_literal] = ACTIONS(430), - [anon_sym_true] = ACTIONS(432), - [anon_sym_false] = ACTIONS(432), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(432), - [sym_super] = ACTIONS(432), - [sym_crate] = ACTIONS(432), - [sym_metavariable] = ACTIONS(430), - [sym_raw_string_literal] = ACTIONS(430), - [sym_float_literal] = ACTIONS(430), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1974), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2193), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [sym_block] = STATE(2193), + [sym__literal] = STATE(2193), + [sym_string_literal] = STATE(2256), + [sym_boolean_literal] = STATE(2256), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(662), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(858), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_dyn] = ACTIONS(696), + [sym_integer_literal] = ACTIONS(866), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(866), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), [sym_block_comment] = ACTIONS(3), }, [221] = { - [sym_identifier] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(482), - [anon_sym_QMARK] = ACTIONS(480), - [anon_sym_u8] = ACTIONS(482), - [anon_sym_i8] = ACTIONS(482), - [anon_sym_u16] = ACTIONS(482), - [anon_sym_i16] = ACTIONS(482), - [anon_sym_u32] = ACTIONS(482), - [anon_sym_i32] = ACTIONS(482), - [anon_sym_u64] = ACTIONS(482), - [anon_sym_i64] = ACTIONS(482), - [anon_sym_u128] = ACTIONS(482), - [anon_sym_i128] = ACTIONS(482), - [anon_sym_isize] = ACTIONS(482), - [anon_sym_usize] = ACTIONS(482), - [anon_sym_f32] = ACTIONS(482), - [anon_sym_f64] = ACTIONS(482), - [anon_sym_bool] = ACTIONS(482), - [anon_sym_str] = ACTIONS(482), - [anon_sym_char] = ACTIONS(482), - [anon_sym_as] = ACTIONS(482), - [anon_sym_const] = ACTIONS(482), - [anon_sym_default] = ACTIONS(482), - [anon_sym_union] = ACTIONS(482), - [anon_sym_POUND] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_ref] = ACTIONS(482), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_COLON_COLON] = ACTIONS(480), - [anon_sym__] = ACTIONS(482), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(480), - [sym_mutable_specifier] = ACTIONS(482), - [anon_sym_DOT_DOT] = ACTIONS(482), - [anon_sym_DOT_DOT_EQ] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(482), - [anon_sym_EQ_EQ] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_LT_LT] = ACTIONS(482), - [anon_sym_GT_GT] = ACTIONS(482), - [anon_sym_SLASH] = ACTIONS(482), - [anon_sym_PERCENT] = ACTIONS(482), - [anon_sym_PLUS_EQ] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(480), - [anon_sym_STAR_EQ] = ACTIONS(480), - [anon_sym_SLASH_EQ] = ACTIONS(480), - [anon_sym_PERCENT_EQ] = ACTIONS(480), - [anon_sym_AMP_EQ] = ACTIONS(480), - [anon_sym_PIPE_EQ] = ACTIONS(480), - [anon_sym_CARET_EQ] = ACTIONS(480), - [anon_sym_LT_LT_EQ] = ACTIONS(480), - [anon_sym_GT_GT_EQ] = ACTIONS(480), - [anon_sym_DOT] = ACTIONS(482), - [sym_integer_literal] = ACTIONS(480), - [aux_sym_string_literal_token1] = ACTIONS(480), - [sym_char_literal] = ACTIONS(480), - [anon_sym_true] = ACTIONS(482), - [anon_sym_false] = ACTIONS(482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(482), - [sym_super] = ACTIONS(482), - [sym_crate] = ACTIONS(482), - [sym_metavariable] = ACTIONS(480), - [sym_raw_string_literal] = ACTIONS(480), - [sym_float_literal] = ACTIONS(480), + [sym_identifier] = ACTIONS(612), + [anon_sym_LPAREN] = ACTIONS(610), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_PLUS] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(612), + [anon_sym_QMARK] = ACTIONS(610), + [anon_sym_u8] = ACTIONS(612), + [anon_sym_i8] = ACTIONS(612), + [anon_sym_u16] = ACTIONS(612), + [anon_sym_i16] = ACTIONS(612), + [anon_sym_u32] = ACTIONS(612), + [anon_sym_i32] = ACTIONS(612), + [anon_sym_u64] = ACTIONS(612), + [anon_sym_i64] = ACTIONS(612), + [anon_sym_u128] = ACTIONS(612), + [anon_sym_i128] = ACTIONS(612), + [anon_sym_isize] = ACTIONS(612), + [anon_sym_usize] = ACTIONS(612), + [anon_sym_f32] = ACTIONS(612), + [anon_sym_f64] = ACTIONS(612), + [anon_sym_bool] = ACTIONS(612), + [anon_sym_str] = ACTIONS(612), + [anon_sym_char] = ACTIONS(612), + [anon_sym_as] = ACTIONS(612), + [anon_sym_const] = ACTIONS(612), + [anon_sym_default] = ACTIONS(612), + [anon_sym_union] = ACTIONS(612), + [anon_sym_POUND] = ACTIONS(610), + [anon_sym_EQ] = ACTIONS(612), + [anon_sym_COMMA] = ACTIONS(610), + [anon_sym_ref] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_COLON_COLON] = ACTIONS(610), + [anon_sym__] = ACTIONS(612), + [anon_sym_AMP] = ACTIONS(612), + [anon_sym_DOT_DOT_DOT] = ACTIONS(610), + [sym_mutable_specifier] = ACTIONS(612), + [anon_sym_DOT_DOT] = ACTIONS(612), + [anon_sym_DOT_DOT_EQ] = ACTIONS(610), + [anon_sym_DASH] = ACTIONS(612), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_CARET] = ACTIONS(612), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_BANG_EQ] = ACTIONS(610), + [anon_sym_LT_EQ] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(612), + [anon_sym_SLASH] = ACTIONS(612), + [anon_sym_PERCENT] = ACTIONS(612), + [anon_sym_PLUS_EQ] = ACTIONS(610), + [anon_sym_DASH_EQ] = ACTIONS(610), + [anon_sym_STAR_EQ] = ACTIONS(610), + [anon_sym_SLASH_EQ] = ACTIONS(610), + [anon_sym_PERCENT_EQ] = ACTIONS(610), + [anon_sym_AMP_EQ] = ACTIONS(610), + [anon_sym_PIPE_EQ] = ACTIONS(610), + [anon_sym_CARET_EQ] = ACTIONS(610), + [anon_sym_LT_LT_EQ] = ACTIONS(610), + [anon_sym_GT_GT_EQ] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(612), + [sym_integer_literal] = ACTIONS(610), + [aux_sym_string_literal_token1] = ACTIONS(610), + [sym_char_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(612), + [anon_sym_false] = ACTIONS(612), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(612), + [sym_super] = ACTIONS(612), + [sym_crate] = ACTIONS(612), + [sym_metavariable] = ACTIONS(610), + [sym_raw_string_literal] = ACTIONS(610), + [sym_float_literal] = ACTIONS(610), [sym_block_comment] = ACTIONS(3), }, [222] = { - [sym_identifier] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(494), - [anon_sym_QMARK] = ACTIONS(492), - [anon_sym_u8] = ACTIONS(494), - [anon_sym_i8] = ACTIONS(494), - [anon_sym_u16] = ACTIONS(494), - [anon_sym_i16] = ACTIONS(494), - [anon_sym_u32] = ACTIONS(494), - [anon_sym_i32] = ACTIONS(494), - [anon_sym_u64] = ACTIONS(494), - [anon_sym_i64] = ACTIONS(494), - [anon_sym_u128] = ACTIONS(494), - [anon_sym_i128] = ACTIONS(494), - [anon_sym_isize] = ACTIONS(494), - [anon_sym_usize] = ACTIONS(494), - [anon_sym_f32] = ACTIONS(494), - [anon_sym_f64] = ACTIONS(494), - [anon_sym_bool] = ACTIONS(494), - [anon_sym_str] = ACTIONS(494), - [anon_sym_char] = ACTIONS(494), - [anon_sym_as] = ACTIONS(494), - [anon_sym_const] = ACTIONS(494), - [anon_sym_default] = ACTIONS(494), - [anon_sym_union] = ACTIONS(494), - [anon_sym_POUND] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_ref] = ACTIONS(494), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_COLON_COLON] = ACTIONS(492), - [anon_sym__] = ACTIONS(494), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(492), - [sym_mutable_specifier] = ACTIONS(494), - [anon_sym_DOT_DOT] = ACTIONS(494), - [anon_sym_DOT_DOT_EQ] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_AMP_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_LT_LT] = ACTIONS(494), - [anon_sym_GT_GT] = ACTIONS(494), - [anon_sym_SLASH] = ACTIONS(494), - [anon_sym_PERCENT] = ACTIONS(494), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_STAR_EQ] = ACTIONS(492), - [anon_sym_SLASH_EQ] = ACTIONS(492), - [anon_sym_PERCENT_EQ] = ACTIONS(492), - [anon_sym_AMP_EQ] = ACTIONS(492), - [anon_sym_PIPE_EQ] = ACTIONS(492), - [anon_sym_CARET_EQ] = ACTIONS(492), - [anon_sym_LT_LT_EQ] = ACTIONS(492), - [anon_sym_GT_GT_EQ] = ACTIONS(492), - [anon_sym_DOT] = ACTIONS(494), - [sym_integer_literal] = ACTIONS(492), - [aux_sym_string_literal_token1] = ACTIONS(492), - [sym_char_literal] = ACTIONS(492), - [anon_sym_true] = ACTIONS(494), - [anon_sym_false] = ACTIONS(494), + [sym_identifier] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_u8] = ACTIONS(468), + [anon_sym_i8] = ACTIONS(468), + [anon_sym_u16] = ACTIONS(468), + [anon_sym_i16] = ACTIONS(468), + [anon_sym_u32] = ACTIONS(468), + [anon_sym_i32] = ACTIONS(468), + [anon_sym_u64] = ACTIONS(468), + [anon_sym_i64] = ACTIONS(468), + [anon_sym_u128] = ACTIONS(468), + [anon_sym_i128] = ACTIONS(468), + [anon_sym_isize] = ACTIONS(468), + [anon_sym_usize] = ACTIONS(468), + [anon_sym_f32] = ACTIONS(468), + [anon_sym_f64] = ACTIONS(468), + [anon_sym_bool] = ACTIONS(468), + [anon_sym_str] = ACTIONS(468), + [anon_sym_char] = ACTIONS(468), + [anon_sym_as] = ACTIONS(468), + [anon_sym_const] = ACTIONS(468), + [anon_sym_default] = ACTIONS(468), + [anon_sym_union] = ACTIONS(468), + [anon_sym_POUND] = ACTIONS(466), + [anon_sym_EQ] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(466), + [anon_sym_ref] = ACTIONS(468), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(468), + [anon_sym_COLON_COLON] = ACTIONS(466), + [anon_sym__] = ACTIONS(468), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(466), + [sym_mutable_specifier] = ACTIONS(468), + [anon_sym_DOT_DOT] = ACTIONS(468), + [anon_sym_DOT_DOT_EQ] = ACTIONS(466), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_AMP_AMP] = ACTIONS(466), + [anon_sym_PIPE_PIPE] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(468), + [anon_sym_CARET] = ACTIONS(468), + [anon_sym_EQ_EQ] = ACTIONS(466), + [anon_sym_BANG_EQ] = ACTIONS(466), + [anon_sym_LT_EQ] = ACTIONS(466), + [anon_sym_GT_EQ] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(468), + [anon_sym_GT_GT] = ACTIONS(468), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(468), + [anon_sym_PLUS_EQ] = ACTIONS(466), + [anon_sym_DASH_EQ] = ACTIONS(466), + [anon_sym_STAR_EQ] = ACTIONS(466), + [anon_sym_SLASH_EQ] = ACTIONS(466), + [anon_sym_PERCENT_EQ] = ACTIONS(466), + [anon_sym_AMP_EQ] = ACTIONS(466), + [anon_sym_PIPE_EQ] = ACTIONS(466), + [anon_sym_CARET_EQ] = ACTIONS(466), + [anon_sym_LT_LT_EQ] = ACTIONS(466), + [anon_sym_GT_GT_EQ] = ACTIONS(466), + [anon_sym_DOT] = ACTIONS(468), + [sym_integer_literal] = ACTIONS(466), + [aux_sym_string_literal_token1] = ACTIONS(466), + [sym_char_literal] = ACTIONS(466), + [anon_sym_true] = ACTIONS(468), + [anon_sym_false] = ACTIONS(468), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(494), - [sym_crate] = ACTIONS(494), - [sym_metavariable] = ACTIONS(492), - [sym_raw_string_literal] = ACTIONS(492), - [sym_float_literal] = ACTIONS(492), + [sym_self] = ACTIONS(468), + [sym_super] = ACTIONS(468), + [sym_crate] = ACTIONS(468), + [sym_metavariable] = ACTIONS(466), + [sym_raw_string_literal] = ACTIONS(466), + [sym_float_literal] = ACTIONS(466), [sym_block_comment] = ACTIONS(3), }, [223] = { + [sym_identifier] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_PLUS] = ACTIONS(606), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(604), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(604), + [anon_sym_EQ] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(604), + [anon_sym_ref] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_COLON_COLON] = ACTIONS(604), + [anon_sym__] = ACTIONS(606), + [anon_sym_AMP] = ACTIONS(606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(604), + [sym_mutable_specifier] = ACTIONS(606), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(604), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_CARET] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(604), + [anon_sym_BANG_EQ] = ACTIONS(604), + [anon_sym_LT_EQ] = ACTIONS(604), + [anon_sym_GT_EQ] = ACTIONS(604), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(606), + [anon_sym_SLASH] = ACTIONS(606), + [anon_sym_PERCENT] = ACTIONS(606), + [anon_sym_PLUS_EQ] = ACTIONS(604), + [anon_sym_DASH_EQ] = ACTIONS(604), + [anon_sym_STAR_EQ] = ACTIONS(604), + [anon_sym_SLASH_EQ] = ACTIONS(604), + [anon_sym_PERCENT_EQ] = ACTIONS(604), + [anon_sym_AMP_EQ] = ACTIONS(604), + [anon_sym_PIPE_EQ] = ACTIONS(604), + [anon_sym_CARET_EQ] = ACTIONS(604), + [anon_sym_LT_LT_EQ] = ACTIONS(604), + [anon_sym_GT_GT_EQ] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(604), + [aux_sym_string_literal_token1] = ACTIONS(604), + [sym_char_literal] = ACTIONS(604), + [anon_sym_true] = ACTIONS(606), + [anon_sym_false] = ACTIONS(606), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym_metavariable] = ACTIONS(604), + [sym_raw_string_literal] = ACTIONS(604), + [sym_float_literal] = ACTIONS(604), + [sym_block_comment] = ACTIONS(3), + }, + [224] = { + [sym_identifier] = ACTIONS(472), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_u8] = ACTIONS(472), + [anon_sym_i8] = ACTIONS(472), + [anon_sym_u16] = ACTIONS(472), + [anon_sym_i16] = ACTIONS(472), + [anon_sym_u32] = ACTIONS(472), + [anon_sym_i32] = ACTIONS(472), + [anon_sym_u64] = ACTIONS(472), + [anon_sym_i64] = ACTIONS(472), + [anon_sym_u128] = ACTIONS(472), + [anon_sym_i128] = ACTIONS(472), + [anon_sym_isize] = ACTIONS(472), + [anon_sym_usize] = ACTIONS(472), + [anon_sym_f32] = ACTIONS(472), + [anon_sym_f64] = ACTIONS(472), + [anon_sym_bool] = ACTIONS(472), + [anon_sym_str] = ACTIONS(472), + [anon_sym_char] = ACTIONS(472), + [anon_sym_as] = ACTIONS(472), + [anon_sym_const] = ACTIONS(472), + [anon_sym_default] = ACTIONS(472), + [anon_sym_union] = ACTIONS(472), + [anon_sym_POUND] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(472), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_ref] = ACTIONS(472), + [anon_sym_LT] = ACTIONS(472), + [anon_sym_GT] = ACTIONS(472), + [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym__] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(470), + [sym_mutable_specifier] = ACTIONS(472), + [anon_sym_DOT_DOT] = ACTIONS(472), + [anon_sym_DOT_DOT_EQ] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_AMP_AMP] = ACTIONS(470), + [anon_sym_PIPE_PIPE] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_LT_EQ] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(470), + [anon_sym_LT_LT] = ACTIONS(472), + [anon_sym_GT_GT] = ACTIONS(472), + [anon_sym_SLASH] = ACTIONS(472), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_PLUS_EQ] = ACTIONS(470), + [anon_sym_DASH_EQ] = ACTIONS(470), + [anon_sym_STAR_EQ] = ACTIONS(470), + [anon_sym_SLASH_EQ] = ACTIONS(470), + [anon_sym_PERCENT_EQ] = ACTIONS(470), + [anon_sym_AMP_EQ] = ACTIONS(470), + [anon_sym_PIPE_EQ] = ACTIONS(470), + [anon_sym_CARET_EQ] = ACTIONS(470), + [anon_sym_LT_LT_EQ] = ACTIONS(470), + [anon_sym_GT_GT_EQ] = ACTIONS(470), + [anon_sym_DOT] = ACTIONS(472), + [sym_integer_literal] = ACTIONS(470), + [aux_sym_string_literal_token1] = ACTIONS(470), + [sym_char_literal] = ACTIONS(470), + [anon_sym_true] = ACTIONS(472), + [anon_sym_false] = ACTIONS(472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(472), + [sym_super] = ACTIONS(472), + [sym_crate] = ACTIONS(472), + [sym_metavariable] = ACTIONS(470), + [sym_raw_string_literal] = ACTIONS(470), + [sym_float_literal] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(476), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(474), + [anon_sym_u8] = ACTIONS(476), + [anon_sym_i8] = ACTIONS(476), + [anon_sym_u16] = ACTIONS(476), + [anon_sym_i16] = ACTIONS(476), + [anon_sym_u32] = ACTIONS(476), + [anon_sym_i32] = ACTIONS(476), + [anon_sym_u64] = ACTIONS(476), + [anon_sym_i64] = ACTIONS(476), + [anon_sym_u128] = ACTIONS(476), + [anon_sym_i128] = ACTIONS(476), + [anon_sym_isize] = ACTIONS(476), + [anon_sym_usize] = ACTIONS(476), + [anon_sym_f32] = ACTIONS(476), + [anon_sym_f64] = ACTIONS(476), + [anon_sym_bool] = ACTIONS(476), + [anon_sym_str] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_as] = ACTIONS(476), + [anon_sym_const] = ACTIONS(476), + [anon_sym_default] = ACTIONS(476), + [anon_sym_union] = ACTIONS(476), + [anon_sym_POUND] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_ref] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(474), + [anon_sym__] = ACTIONS(476), + [anon_sym_AMP] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(474), + [sym_mutable_specifier] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(474), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_AMP_AMP] = ACTIONS(474), + [anon_sym_PIPE_PIPE] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_CARET] = ACTIONS(476), + [anon_sym_EQ_EQ] = ACTIONS(474), + [anon_sym_BANG_EQ] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(474), + [anon_sym_LT_LT] = ACTIONS(476), + [anon_sym_GT_GT] = ACTIONS(476), + [anon_sym_SLASH] = ACTIONS(476), + [anon_sym_PERCENT] = ACTIONS(476), + [anon_sym_PLUS_EQ] = ACTIONS(474), + [anon_sym_DASH_EQ] = ACTIONS(474), + [anon_sym_STAR_EQ] = ACTIONS(474), + [anon_sym_SLASH_EQ] = ACTIONS(474), + [anon_sym_PERCENT_EQ] = ACTIONS(474), + [anon_sym_AMP_EQ] = ACTIONS(474), + [anon_sym_PIPE_EQ] = ACTIONS(474), + [anon_sym_CARET_EQ] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(474), + [anon_sym_GT_GT_EQ] = ACTIONS(474), + [anon_sym_DOT] = ACTIONS(476), + [sym_integer_literal] = ACTIONS(474), + [aux_sym_string_literal_token1] = ACTIONS(474), + [sym_char_literal] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(476), + [sym_crate] = ACTIONS(476), + [sym_metavariable] = ACTIONS(474), + [sym_raw_string_literal] = ACTIONS(474), + [sym_float_literal] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_LBRACK] = ACTIONS(614), + [anon_sym_PLUS] = ACTIONS(616), + [anon_sym_STAR] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(614), + [anon_sym_u8] = ACTIONS(616), + [anon_sym_i8] = ACTIONS(616), + [anon_sym_u16] = ACTIONS(616), + [anon_sym_i16] = ACTIONS(616), + [anon_sym_u32] = ACTIONS(616), + [anon_sym_i32] = ACTIONS(616), + [anon_sym_u64] = ACTIONS(616), + [anon_sym_i64] = ACTIONS(616), + [anon_sym_u128] = ACTIONS(616), + [anon_sym_i128] = ACTIONS(616), + [anon_sym_isize] = ACTIONS(616), + [anon_sym_usize] = ACTIONS(616), + [anon_sym_f32] = ACTIONS(616), + [anon_sym_f64] = ACTIONS(616), + [anon_sym_bool] = ACTIONS(616), + [anon_sym_str] = ACTIONS(616), + [anon_sym_char] = ACTIONS(616), + [anon_sym_as] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_default] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(614), + [anon_sym_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(614), + [anon_sym_ref] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(614), + [anon_sym__] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(614), + [sym_mutable_specifier] = ACTIONS(616), + [anon_sym_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_CARET] = ACTIONS(616), + [anon_sym_EQ_EQ] = ACTIONS(614), + [anon_sym_BANG_EQ] = ACTIONS(614), + [anon_sym_LT_EQ] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_SLASH] = ACTIONS(616), + [anon_sym_PERCENT] = ACTIONS(616), + [anon_sym_PLUS_EQ] = ACTIONS(614), + [anon_sym_DASH_EQ] = ACTIONS(614), + [anon_sym_STAR_EQ] = ACTIONS(614), + [anon_sym_SLASH_EQ] = ACTIONS(614), + [anon_sym_PERCENT_EQ] = ACTIONS(614), + [anon_sym_AMP_EQ] = ACTIONS(614), + [anon_sym_PIPE_EQ] = ACTIONS(614), + [anon_sym_CARET_EQ] = ACTIONS(614), + [anon_sym_LT_LT_EQ] = ACTIONS(614), + [anon_sym_GT_GT_EQ] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(616), + [sym_integer_literal] = ACTIONS(614), + [aux_sym_string_literal_token1] = ACTIONS(614), + [sym_char_literal] = ACTIONS(614), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(616), + [sym_super] = ACTIONS(616), + [sym_crate] = ACTIONS(616), + [sym_metavariable] = ACTIONS(614), + [sym_raw_string_literal] = ACTIONS(614), + [sym_float_literal] = ACTIONS(614), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { [sym_identifier] = ACTIONS(490), [anon_sym_LPAREN] = ACTIONS(488), [anon_sym_RBRACE] = ACTIONS(488), @@ -41448,1201 +39309,881 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(488), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(462), - [anon_sym_RBRACE] = ACTIONS(462), - [anon_sym_LBRACK] = ACTIONS(462), - [anon_sym_PLUS] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(464), - [anon_sym_QMARK] = ACTIONS(462), - [anon_sym_u8] = ACTIONS(464), - [anon_sym_i8] = ACTIONS(464), - [anon_sym_u16] = ACTIONS(464), - [anon_sym_i16] = ACTIONS(464), - [anon_sym_u32] = ACTIONS(464), - [anon_sym_i32] = ACTIONS(464), - [anon_sym_u64] = ACTIONS(464), - [anon_sym_i64] = ACTIONS(464), - [anon_sym_u128] = ACTIONS(464), - [anon_sym_i128] = ACTIONS(464), - [anon_sym_isize] = ACTIONS(464), - [anon_sym_usize] = ACTIONS(464), - [anon_sym_f32] = ACTIONS(464), - [anon_sym_f64] = ACTIONS(464), - [anon_sym_bool] = ACTIONS(464), - [anon_sym_str] = ACTIONS(464), - [anon_sym_char] = ACTIONS(464), - [anon_sym_as] = ACTIONS(464), - [anon_sym_const] = ACTIONS(464), - [anon_sym_default] = ACTIONS(464), - [anon_sym_union] = ACTIONS(464), - [anon_sym_POUND] = ACTIONS(462), - [anon_sym_EQ] = ACTIONS(464), - [anon_sym_COMMA] = ACTIONS(462), - [anon_sym_ref] = ACTIONS(464), - [anon_sym_LT] = ACTIONS(464), - [anon_sym_GT] = ACTIONS(464), - [anon_sym_COLON_COLON] = ACTIONS(462), - [anon_sym__] = ACTIONS(464), - [anon_sym_AMP] = ACTIONS(464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(462), - [sym_mutable_specifier] = ACTIONS(464), - [anon_sym_DOT_DOT] = ACTIONS(464), - [anon_sym_DOT_DOT_EQ] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(462), - [anon_sym_PIPE_PIPE] = ACTIONS(462), - [anon_sym_PIPE] = ACTIONS(464), - [anon_sym_CARET] = ACTIONS(464), - [anon_sym_EQ_EQ] = ACTIONS(462), - [anon_sym_BANG_EQ] = ACTIONS(462), - [anon_sym_LT_EQ] = ACTIONS(462), - [anon_sym_GT_EQ] = ACTIONS(462), - [anon_sym_LT_LT] = ACTIONS(464), - [anon_sym_GT_GT] = ACTIONS(464), - [anon_sym_SLASH] = ACTIONS(464), - [anon_sym_PERCENT] = ACTIONS(464), - [anon_sym_PLUS_EQ] = ACTIONS(462), - [anon_sym_DASH_EQ] = ACTIONS(462), - [anon_sym_STAR_EQ] = ACTIONS(462), - [anon_sym_SLASH_EQ] = ACTIONS(462), - [anon_sym_PERCENT_EQ] = ACTIONS(462), - [anon_sym_AMP_EQ] = ACTIONS(462), - [anon_sym_PIPE_EQ] = ACTIONS(462), - [anon_sym_CARET_EQ] = ACTIONS(462), - [anon_sym_LT_LT_EQ] = ACTIONS(462), - [anon_sym_GT_GT_EQ] = ACTIONS(462), - [anon_sym_DOT] = ACTIONS(464), - [sym_integer_literal] = ACTIONS(462), - [aux_sym_string_literal_token1] = ACTIONS(462), - [sym_char_literal] = ACTIONS(462), - [anon_sym_true] = ACTIONS(464), - [anon_sym_false] = ACTIONS(464), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(464), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(462), - [sym_raw_string_literal] = ACTIONS(462), - [sym_float_literal] = ACTIONS(462), - [sym_block_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(478), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_u8] = ACTIONS(478), - [anon_sym_i8] = ACTIONS(478), - [anon_sym_u16] = ACTIONS(478), - [anon_sym_i16] = ACTIONS(478), - [anon_sym_u32] = ACTIONS(478), - [anon_sym_i32] = ACTIONS(478), - [anon_sym_u64] = ACTIONS(478), - [anon_sym_i64] = ACTIONS(478), - [anon_sym_u128] = ACTIONS(478), - [anon_sym_i128] = ACTIONS(478), - [anon_sym_isize] = ACTIONS(478), - [anon_sym_usize] = ACTIONS(478), - [anon_sym_f32] = ACTIONS(478), - [anon_sym_f64] = ACTIONS(478), - [anon_sym_bool] = ACTIONS(478), - [anon_sym_str] = ACTIONS(478), - [anon_sym_char] = ACTIONS(478), - [anon_sym_as] = ACTIONS(478), - [anon_sym_const] = ACTIONS(478), - [anon_sym_default] = ACTIONS(478), - [anon_sym_union] = ACTIONS(478), - [anon_sym_POUND] = ACTIONS(476), - [anon_sym_EQ] = ACTIONS(478), - [anon_sym_COMMA] = ACTIONS(476), - [anon_sym_ref] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(478), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym__] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(476), - [sym_mutable_specifier] = ACTIONS(478), - [anon_sym_DOT_DOT] = ACTIONS(478), - [anon_sym_DOT_DOT_EQ] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(476), - [anon_sym_PIPE_PIPE] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(478), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(476), - [anon_sym_BANG_EQ] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_PLUS_EQ] = ACTIONS(476), - [anon_sym_DASH_EQ] = ACTIONS(476), - [anon_sym_STAR_EQ] = ACTIONS(476), - [anon_sym_SLASH_EQ] = ACTIONS(476), - [anon_sym_PERCENT_EQ] = ACTIONS(476), - [anon_sym_AMP_EQ] = ACTIONS(476), - [anon_sym_PIPE_EQ] = ACTIONS(476), - [anon_sym_CARET_EQ] = ACTIONS(476), - [anon_sym_LT_LT_EQ] = ACTIONS(476), - [anon_sym_GT_GT_EQ] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(478), - [sym_integer_literal] = ACTIONS(476), - [aux_sym_string_literal_token1] = ACTIONS(476), - [sym_char_literal] = ACTIONS(476), - [anon_sym_true] = ACTIONS(478), - [anon_sym_false] = ACTIONS(478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(478), - [sym_super] = ACTIONS(478), - [sym_crate] = ACTIONS(478), - [sym_metavariable] = ACTIONS(476), - [sym_raw_string_literal] = ACTIONS(476), - [sym_float_literal] = ACTIONS(476), - [sym_block_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(436), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_RBRACE] = ACTIONS(434), - [anon_sym_LBRACK] = ACTIONS(434), - [anon_sym_PLUS] = ACTIONS(436), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_QMARK] = ACTIONS(434), - [anon_sym_u8] = ACTIONS(436), - [anon_sym_i8] = ACTIONS(436), - [anon_sym_u16] = ACTIONS(436), - [anon_sym_i16] = ACTIONS(436), - [anon_sym_u32] = ACTIONS(436), - [anon_sym_i32] = ACTIONS(436), - [anon_sym_u64] = ACTIONS(436), - [anon_sym_i64] = ACTIONS(436), - [anon_sym_u128] = ACTIONS(436), - [anon_sym_i128] = ACTIONS(436), - [anon_sym_isize] = ACTIONS(436), - [anon_sym_usize] = ACTIONS(436), - [anon_sym_f32] = ACTIONS(436), - [anon_sym_f64] = ACTIONS(436), - [anon_sym_bool] = ACTIONS(436), - [anon_sym_str] = ACTIONS(436), - [anon_sym_char] = ACTIONS(436), - [anon_sym_as] = ACTIONS(436), - [anon_sym_const] = ACTIONS(436), - [anon_sym_default] = ACTIONS(436), - [anon_sym_union] = ACTIONS(436), - [anon_sym_POUND] = ACTIONS(434), - [anon_sym_EQ] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(434), - [anon_sym_ref] = ACTIONS(436), - [anon_sym_LT] = ACTIONS(436), - [anon_sym_GT] = ACTIONS(436), - [anon_sym_COLON_COLON] = ACTIONS(434), - [anon_sym__] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(434), - [sym_mutable_specifier] = ACTIONS(436), - [anon_sym_DOT_DOT] = ACTIONS(436), - [anon_sym_DOT_DOT_EQ] = ACTIONS(434), - [anon_sym_DASH] = ACTIONS(436), - [anon_sym_AMP_AMP] = ACTIONS(434), - [anon_sym_PIPE_PIPE] = ACTIONS(434), - [anon_sym_PIPE] = ACTIONS(436), - [anon_sym_CARET] = ACTIONS(436), - [anon_sym_EQ_EQ] = ACTIONS(434), - [anon_sym_BANG_EQ] = ACTIONS(434), - [anon_sym_LT_EQ] = ACTIONS(434), - [anon_sym_GT_EQ] = ACTIONS(434), - [anon_sym_LT_LT] = ACTIONS(436), - [anon_sym_GT_GT] = ACTIONS(436), - [anon_sym_SLASH] = ACTIONS(436), - [anon_sym_PERCENT] = ACTIONS(436), - [anon_sym_PLUS_EQ] = ACTIONS(434), - [anon_sym_DASH_EQ] = ACTIONS(434), - [anon_sym_STAR_EQ] = ACTIONS(434), - [anon_sym_SLASH_EQ] = ACTIONS(434), - [anon_sym_PERCENT_EQ] = ACTIONS(434), - [anon_sym_AMP_EQ] = ACTIONS(434), - [anon_sym_PIPE_EQ] = ACTIONS(434), - [anon_sym_CARET_EQ] = ACTIONS(434), - [anon_sym_LT_LT_EQ] = ACTIONS(434), - [anon_sym_GT_GT_EQ] = ACTIONS(434), - [anon_sym_DOT] = ACTIONS(436), - [sym_integer_literal] = ACTIONS(434), - [aux_sym_string_literal_token1] = ACTIONS(434), - [sym_char_literal] = ACTIONS(434), - [anon_sym_true] = ACTIONS(436), - [anon_sym_false] = ACTIONS(436), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(436), - [sym_super] = ACTIONS(436), - [sym_crate] = ACTIONS(436), - [sym_metavariable] = ACTIONS(434), - [sym_raw_string_literal] = ACTIONS(434), - [sym_float_literal] = ACTIONS(434), - [sym_block_comment] = ACTIONS(3), - }, - [227] = { - [sym_identifier] = ACTIONS(452), - [anon_sym_LPAREN] = ACTIONS(450), - [anon_sym_RBRACE] = ACTIONS(450), - [anon_sym_LBRACK] = ACTIONS(450), - [anon_sym_PLUS] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(452), - [anon_sym_QMARK] = ACTIONS(450), - [anon_sym_u8] = ACTIONS(452), - [anon_sym_i8] = ACTIONS(452), - [anon_sym_u16] = ACTIONS(452), - [anon_sym_i16] = ACTIONS(452), - [anon_sym_u32] = ACTIONS(452), - [anon_sym_i32] = ACTIONS(452), - [anon_sym_u64] = ACTIONS(452), - [anon_sym_i64] = ACTIONS(452), - [anon_sym_u128] = ACTIONS(452), - [anon_sym_i128] = ACTIONS(452), - [anon_sym_isize] = ACTIONS(452), - [anon_sym_usize] = ACTIONS(452), - [anon_sym_f32] = ACTIONS(452), - [anon_sym_f64] = ACTIONS(452), - [anon_sym_bool] = ACTIONS(452), - [anon_sym_str] = ACTIONS(452), - [anon_sym_char] = ACTIONS(452), - [anon_sym_as] = ACTIONS(452), - [anon_sym_const] = ACTIONS(452), - [anon_sym_default] = ACTIONS(452), - [anon_sym_union] = ACTIONS(452), - [anon_sym_POUND] = ACTIONS(450), - [anon_sym_EQ] = ACTIONS(452), - [anon_sym_COMMA] = ACTIONS(450), - [anon_sym_ref] = ACTIONS(452), - [anon_sym_LT] = ACTIONS(452), - [anon_sym_GT] = ACTIONS(452), - [anon_sym_COLON_COLON] = ACTIONS(450), - [anon_sym__] = ACTIONS(452), - [anon_sym_AMP] = ACTIONS(452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(450), - [sym_mutable_specifier] = ACTIONS(452), - [anon_sym_DOT_DOT] = ACTIONS(452), - [anon_sym_DOT_DOT_EQ] = ACTIONS(450), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_AMP_AMP] = ACTIONS(450), - [anon_sym_PIPE_PIPE] = ACTIONS(450), - [anon_sym_PIPE] = ACTIONS(452), - [anon_sym_CARET] = ACTIONS(452), - [anon_sym_EQ_EQ] = ACTIONS(450), - [anon_sym_BANG_EQ] = ACTIONS(450), - [anon_sym_LT_EQ] = ACTIONS(450), - [anon_sym_GT_EQ] = ACTIONS(450), - [anon_sym_LT_LT] = ACTIONS(452), - [anon_sym_GT_GT] = ACTIONS(452), - [anon_sym_SLASH] = ACTIONS(452), - [anon_sym_PERCENT] = ACTIONS(452), - [anon_sym_PLUS_EQ] = ACTIONS(450), - [anon_sym_DASH_EQ] = ACTIONS(450), - [anon_sym_STAR_EQ] = ACTIONS(450), - [anon_sym_SLASH_EQ] = ACTIONS(450), - [anon_sym_PERCENT_EQ] = ACTIONS(450), - [anon_sym_AMP_EQ] = ACTIONS(450), - [anon_sym_PIPE_EQ] = ACTIONS(450), - [anon_sym_CARET_EQ] = ACTIONS(450), - [anon_sym_LT_LT_EQ] = ACTIONS(450), - [anon_sym_GT_GT_EQ] = ACTIONS(450), - [anon_sym_DOT] = ACTIONS(452), - [sym_integer_literal] = ACTIONS(450), - [aux_sym_string_literal_token1] = ACTIONS(450), - [sym_char_literal] = ACTIONS(450), - [anon_sym_true] = ACTIONS(452), - [anon_sym_false] = ACTIONS(452), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(452), - [sym_super] = ACTIONS(452), - [sym_crate] = ACTIONS(452), - [sym_metavariable] = ACTIONS(450), - [sym_raw_string_literal] = ACTIONS(450), - [sym_float_literal] = ACTIONS(450), - [sym_block_comment] = ACTIONS(3), - }, [228] = { - [sym_identifier] = ACTIONS(428), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_RBRACE] = ACTIONS(426), - [anon_sym_LBRACK] = ACTIONS(426), - [anon_sym_PLUS] = ACTIONS(428), - [anon_sym_STAR] = ACTIONS(428), - [anon_sym_QMARK] = ACTIONS(426), - [anon_sym_u8] = ACTIONS(428), - [anon_sym_i8] = ACTIONS(428), - [anon_sym_u16] = ACTIONS(428), - [anon_sym_i16] = ACTIONS(428), - [anon_sym_u32] = ACTIONS(428), - [anon_sym_i32] = ACTIONS(428), - [anon_sym_u64] = ACTIONS(428), - [anon_sym_i64] = ACTIONS(428), - [anon_sym_u128] = ACTIONS(428), - [anon_sym_i128] = ACTIONS(428), - [anon_sym_isize] = ACTIONS(428), - [anon_sym_usize] = ACTIONS(428), - [anon_sym_f32] = ACTIONS(428), - [anon_sym_f64] = ACTIONS(428), - [anon_sym_bool] = ACTIONS(428), - [anon_sym_str] = ACTIONS(428), - [anon_sym_char] = ACTIONS(428), - [anon_sym_as] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_default] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [anon_sym_POUND] = ACTIONS(426), - [anon_sym_EQ] = ACTIONS(428), - [anon_sym_COMMA] = ACTIONS(426), - [anon_sym_ref] = ACTIONS(428), - [anon_sym_LT] = ACTIONS(428), - [anon_sym_GT] = ACTIONS(428), - [anon_sym_COLON_COLON] = ACTIONS(426), - [anon_sym__] = ACTIONS(428), - [anon_sym_AMP] = ACTIONS(428), - [anon_sym_DOT_DOT_DOT] = ACTIONS(426), - [sym_mutable_specifier] = ACTIONS(428), - [anon_sym_DOT_DOT] = ACTIONS(428), - [anon_sym_DOT_DOT_EQ] = ACTIONS(426), - [anon_sym_DASH] = ACTIONS(428), - [anon_sym_AMP_AMP] = ACTIONS(426), - [anon_sym_PIPE_PIPE] = ACTIONS(426), - [anon_sym_PIPE] = ACTIONS(428), - [anon_sym_CARET] = ACTIONS(428), - [anon_sym_EQ_EQ] = ACTIONS(426), - [anon_sym_BANG_EQ] = ACTIONS(426), - [anon_sym_LT_EQ] = ACTIONS(426), - [anon_sym_GT_EQ] = ACTIONS(426), - [anon_sym_LT_LT] = ACTIONS(428), - [anon_sym_GT_GT] = ACTIONS(428), - [anon_sym_SLASH] = ACTIONS(428), - [anon_sym_PERCENT] = ACTIONS(428), - [anon_sym_PLUS_EQ] = ACTIONS(426), - [anon_sym_DASH_EQ] = ACTIONS(426), - [anon_sym_STAR_EQ] = ACTIONS(426), - [anon_sym_SLASH_EQ] = ACTIONS(426), - [anon_sym_PERCENT_EQ] = ACTIONS(426), - [anon_sym_AMP_EQ] = ACTIONS(426), - [anon_sym_PIPE_EQ] = ACTIONS(426), - [anon_sym_CARET_EQ] = ACTIONS(426), - [anon_sym_LT_LT_EQ] = ACTIONS(426), - [anon_sym_GT_GT_EQ] = ACTIONS(426), - [anon_sym_DOT] = ACTIONS(428), - [sym_integer_literal] = ACTIONS(426), - [aux_sym_string_literal_token1] = ACTIONS(426), - [sym_char_literal] = ACTIONS(426), - [anon_sym_true] = ACTIONS(428), - [anon_sym_false] = ACTIONS(428), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(428), - [sym_super] = ACTIONS(428), - [sym_crate] = ACTIONS(428), - [sym_metavariable] = ACTIONS(426), - [sym_raw_string_literal] = ACTIONS(426), - [sym_float_literal] = ACTIONS(426), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(478), + [anon_sym_u8] = ACTIONS(480), + [anon_sym_i8] = ACTIONS(480), + [anon_sym_u16] = ACTIONS(480), + [anon_sym_i16] = ACTIONS(480), + [anon_sym_u32] = ACTIONS(480), + [anon_sym_i32] = ACTIONS(480), + [anon_sym_u64] = ACTIONS(480), + [anon_sym_i64] = ACTIONS(480), + [anon_sym_u128] = ACTIONS(480), + [anon_sym_i128] = ACTIONS(480), + [anon_sym_isize] = ACTIONS(480), + [anon_sym_usize] = ACTIONS(480), + [anon_sym_f32] = ACTIONS(480), + [anon_sym_f64] = ACTIONS(480), + [anon_sym_bool] = ACTIONS(480), + [anon_sym_str] = ACTIONS(480), + [anon_sym_char] = ACTIONS(480), + [anon_sym_as] = ACTIONS(480), + [anon_sym_const] = ACTIONS(480), + [anon_sym_default] = ACTIONS(480), + [anon_sym_union] = ACTIONS(480), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_ref] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(478), + [anon_sym__] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(478), + [sym_mutable_specifier] = ACTIONS(480), + [anon_sym_DOT_DOT] = ACTIONS(480), + [anon_sym_DOT_DOT_EQ] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(480), + [anon_sym_EQ_EQ] = ACTIONS(478), + [anon_sym_BANG_EQ] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(480), + [anon_sym_PERCENT] = ACTIONS(480), + [anon_sym_PLUS_EQ] = ACTIONS(478), + [anon_sym_DASH_EQ] = ACTIONS(478), + [anon_sym_STAR_EQ] = ACTIONS(478), + [anon_sym_SLASH_EQ] = ACTIONS(478), + [anon_sym_PERCENT_EQ] = ACTIONS(478), + [anon_sym_AMP_EQ] = ACTIONS(478), + [anon_sym_PIPE_EQ] = ACTIONS(478), + [anon_sym_CARET_EQ] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(478), + [anon_sym_GT_GT_EQ] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(480), + [sym_integer_literal] = ACTIONS(478), + [aux_sym_string_literal_token1] = ACTIONS(478), + [sym_char_literal] = ACTIONS(478), + [anon_sym_true] = ACTIONS(480), + [anon_sym_false] = ACTIONS(480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(480), + [sym_super] = ACTIONS(480), + [sym_crate] = ACTIONS(480), + [sym_metavariable] = ACTIONS(478), + [sym_raw_string_literal] = ACTIONS(478), + [sym_float_literal] = ACTIONS(478), [sym_block_comment] = ACTIONS(3), }, [229] = { - [sym_identifier] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(442), - [anon_sym_RBRACE] = ACTIONS(442), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_PLUS] = ACTIONS(444), - [anon_sym_STAR] = ACTIONS(444), - [anon_sym_QMARK] = ACTIONS(442), - [anon_sym_u8] = ACTIONS(444), - [anon_sym_i8] = ACTIONS(444), - [anon_sym_u16] = ACTIONS(444), - [anon_sym_i16] = ACTIONS(444), - [anon_sym_u32] = ACTIONS(444), - [anon_sym_i32] = ACTIONS(444), - [anon_sym_u64] = ACTIONS(444), - [anon_sym_i64] = ACTIONS(444), - [anon_sym_u128] = ACTIONS(444), - [anon_sym_i128] = ACTIONS(444), - [anon_sym_isize] = ACTIONS(444), - [anon_sym_usize] = ACTIONS(444), - [anon_sym_f32] = ACTIONS(444), - [anon_sym_f64] = ACTIONS(444), - [anon_sym_bool] = ACTIONS(444), - [anon_sym_str] = ACTIONS(444), - [anon_sym_char] = ACTIONS(444), - [anon_sym_as] = ACTIONS(444), - [anon_sym_const] = ACTIONS(444), - [anon_sym_default] = ACTIONS(444), - [anon_sym_union] = ACTIONS(444), - [anon_sym_POUND] = ACTIONS(442), - [anon_sym_EQ] = ACTIONS(444), - [anon_sym_COMMA] = ACTIONS(442), - [anon_sym_ref] = ACTIONS(444), - [anon_sym_LT] = ACTIONS(444), - [anon_sym_GT] = ACTIONS(444), - [anon_sym_COLON_COLON] = ACTIONS(442), - [anon_sym__] = ACTIONS(444), - [anon_sym_AMP] = ACTIONS(444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(442), - [sym_mutable_specifier] = ACTIONS(444), - [anon_sym_DOT_DOT] = ACTIONS(444), - [anon_sym_DOT_DOT_EQ] = ACTIONS(442), - [anon_sym_DASH] = ACTIONS(444), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(444), - [anon_sym_CARET] = ACTIONS(444), - [anon_sym_EQ_EQ] = ACTIONS(442), - [anon_sym_BANG_EQ] = ACTIONS(442), - [anon_sym_LT_EQ] = ACTIONS(442), - [anon_sym_GT_EQ] = ACTIONS(442), - [anon_sym_LT_LT] = ACTIONS(444), - [anon_sym_GT_GT] = ACTIONS(444), - [anon_sym_SLASH] = ACTIONS(444), - [anon_sym_PERCENT] = ACTIONS(444), - [anon_sym_PLUS_EQ] = ACTIONS(442), - [anon_sym_DASH_EQ] = ACTIONS(442), - [anon_sym_STAR_EQ] = ACTIONS(442), - [anon_sym_SLASH_EQ] = ACTIONS(442), - [anon_sym_PERCENT_EQ] = ACTIONS(442), - [anon_sym_AMP_EQ] = ACTIONS(442), - [anon_sym_PIPE_EQ] = ACTIONS(442), - [anon_sym_CARET_EQ] = ACTIONS(442), - [anon_sym_LT_LT_EQ] = ACTIONS(442), - [anon_sym_GT_GT_EQ] = ACTIONS(442), - [anon_sym_DOT] = ACTIONS(444), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(442), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(444), - [anon_sym_false] = ACTIONS(444), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(444), - [sym_super] = ACTIONS(444), - [sym_crate] = ACTIONS(444), - [sym_metavariable] = ACTIONS(442), - [sym_raw_string_literal] = ACTIONS(442), - [sym_float_literal] = ACTIONS(442), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1935), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1934), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1974), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_type_binding] = STATE(2264), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [sym_block] = STATE(2264), - [sym__literal] = STATE(2264), - [sym_string_literal] = STATE(2313), - [sym_boolean_literal] = STATE(2313), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2193), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [sym_block] = STATE(2193), + [sym__literal] = STATE(2193), + [sym_string_literal] = STATE(2256), + [sym_boolean_literal] = STATE(2256), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(868), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_GT] = ACTIONS(878), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(866), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(874), + [sym_char_literal] = ACTIONS(866), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), + [sym_block_comment] = ACTIONS(3), + }, + [230] = { + [sym_identifier] = ACTIONS(442), + [anon_sym_LPAREN] = ACTIONS(440), + [anon_sym_RBRACE] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(440), + [anon_sym_PLUS] = ACTIONS(442), + [anon_sym_STAR] = ACTIONS(442), + [anon_sym_QMARK] = ACTIONS(440), + [anon_sym_u8] = ACTIONS(442), + [anon_sym_i8] = ACTIONS(442), + [anon_sym_u16] = ACTIONS(442), + [anon_sym_i16] = ACTIONS(442), + [anon_sym_u32] = ACTIONS(442), + [anon_sym_i32] = ACTIONS(442), + [anon_sym_u64] = ACTIONS(442), + [anon_sym_i64] = ACTIONS(442), + [anon_sym_u128] = ACTIONS(442), + [anon_sym_i128] = ACTIONS(442), + [anon_sym_isize] = ACTIONS(442), + [anon_sym_usize] = ACTIONS(442), + [anon_sym_f32] = ACTIONS(442), + [anon_sym_f64] = ACTIONS(442), + [anon_sym_bool] = ACTIONS(442), + [anon_sym_str] = ACTIONS(442), + [anon_sym_char] = ACTIONS(442), + [anon_sym_as] = ACTIONS(442), + [anon_sym_const] = ACTIONS(442), + [anon_sym_default] = ACTIONS(442), + [anon_sym_union] = ACTIONS(442), + [anon_sym_POUND] = ACTIONS(440), + [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(440), + [anon_sym_ref] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(442), + [anon_sym_GT] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(440), + [anon_sym__] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(440), + [sym_mutable_specifier] = ACTIONS(442), + [anon_sym_DOT_DOT] = ACTIONS(442), + [anon_sym_DOT_DOT_EQ] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_CARET] = ACTIONS(442), + [anon_sym_EQ_EQ] = ACTIONS(440), + [anon_sym_BANG_EQ] = ACTIONS(440), + [anon_sym_LT_EQ] = ACTIONS(440), + [anon_sym_GT_EQ] = ACTIONS(440), + [anon_sym_LT_LT] = ACTIONS(442), + [anon_sym_GT_GT] = ACTIONS(442), + [anon_sym_SLASH] = ACTIONS(442), + [anon_sym_PERCENT] = ACTIONS(442), + [anon_sym_PLUS_EQ] = ACTIONS(440), + [anon_sym_DASH_EQ] = ACTIONS(440), + [anon_sym_STAR_EQ] = ACTIONS(440), + [anon_sym_SLASH_EQ] = ACTIONS(440), + [anon_sym_PERCENT_EQ] = ACTIONS(440), + [anon_sym_AMP_EQ] = ACTIONS(440), + [anon_sym_PIPE_EQ] = ACTIONS(440), + [anon_sym_CARET_EQ] = ACTIONS(440), + [anon_sym_LT_LT_EQ] = ACTIONS(440), + [anon_sym_GT_GT_EQ] = ACTIONS(440), + [anon_sym_DOT] = ACTIONS(442), + [sym_integer_literal] = ACTIONS(440), + [aux_sym_string_literal_token1] = ACTIONS(440), + [sym_char_literal] = ACTIONS(440), + [anon_sym_true] = ACTIONS(442), + [anon_sym_false] = ACTIONS(442), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(442), + [sym_super] = ACTIONS(442), + [sym_crate] = ACTIONS(442), + [sym_metavariable] = ACTIONS(440), + [sym_raw_string_literal] = ACTIONS(440), + [sym_float_literal] = ACTIONS(440), [sym_block_comment] = ACTIONS(3), }, [231] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1935), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1934), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1974), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_type_binding] = STATE(2264), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [sym_block] = STATE(2264), - [sym__literal] = STATE(2264), - [sym_string_literal] = STATE(2313), - [sym_boolean_literal] = STATE(2313), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2193), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [sym_block] = STATE(2193), + [sym__literal] = STATE(2193), + [sym_string_literal] = STATE(2256), + [sym_boolean_literal] = STATE(2256), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), [anon_sym_GT] = ACTIONS(880), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(866), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(874), + [sym_char_literal] = ACTIONS(866), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), [sym_block_comment] = ACTIONS(3), }, [232] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1935), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1934), - [sym_array_type] = STATE(1390), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_type_binding] = STATE(2264), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [sym_block] = STATE(2264), - [sym__literal] = STATE(2264), - [sym_string_literal] = STATE(2313), - [sym_boolean_literal] = STATE(2313), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(882), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(874), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(874), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), + [sym_identifier] = ACTIONS(434), + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_PLUS] = ACTIONS(434), + [anon_sym_STAR] = ACTIONS(434), + [anon_sym_QMARK] = ACTIONS(432), + [anon_sym_u8] = ACTIONS(434), + [anon_sym_i8] = ACTIONS(434), + [anon_sym_u16] = ACTIONS(434), + [anon_sym_i16] = ACTIONS(434), + [anon_sym_u32] = ACTIONS(434), + [anon_sym_i32] = ACTIONS(434), + [anon_sym_u64] = ACTIONS(434), + [anon_sym_i64] = ACTIONS(434), + [anon_sym_u128] = ACTIONS(434), + [anon_sym_i128] = ACTIONS(434), + [anon_sym_isize] = ACTIONS(434), + [anon_sym_usize] = ACTIONS(434), + [anon_sym_f32] = ACTIONS(434), + [anon_sym_f64] = ACTIONS(434), + [anon_sym_bool] = ACTIONS(434), + [anon_sym_str] = ACTIONS(434), + [anon_sym_char] = ACTIONS(434), + [anon_sym_as] = ACTIONS(434), + [anon_sym_const] = ACTIONS(434), + [anon_sym_default] = ACTIONS(434), + [anon_sym_union] = ACTIONS(434), + [anon_sym_POUND] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_ref] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_COLON_COLON] = ACTIONS(432), + [anon_sym__] = ACTIONS(434), + [anon_sym_AMP] = ACTIONS(434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(432), + [sym_mutable_specifier] = ACTIONS(434), + [anon_sym_DOT_DOT] = ACTIONS(434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(432), + [anon_sym_DASH] = ACTIONS(434), + [anon_sym_AMP_AMP] = ACTIONS(432), + [anon_sym_PIPE_PIPE] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(434), + [anon_sym_CARET] = ACTIONS(434), + [anon_sym_EQ_EQ] = ACTIONS(432), + [anon_sym_BANG_EQ] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(432), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(434), + [anon_sym_GT_GT] = ACTIONS(434), + [anon_sym_SLASH] = ACTIONS(434), + [anon_sym_PERCENT] = ACTIONS(434), + [anon_sym_PLUS_EQ] = ACTIONS(432), + [anon_sym_DASH_EQ] = ACTIONS(432), + [anon_sym_STAR_EQ] = ACTIONS(432), + [anon_sym_SLASH_EQ] = ACTIONS(432), + [anon_sym_PERCENT_EQ] = ACTIONS(432), + [anon_sym_AMP_EQ] = ACTIONS(432), + [anon_sym_PIPE_EQ] = ACTIONS(432), + [anon_sym_CARET_EQ] = ACTIONS(432), + [anon_sym_LT_LT_EQ] = ACTIONS(432), + [anon_sym_GT_GT_EQ] = ACTIONS(432), + [anon_sym_DOT] = ACTIONS(434), + [sym_integer_literal] = ACTIONS(432), + [aux_sym_string_literal_token1] = ACTIONS(432), + [sym_char_literal] = ACTIONS(432), + [anon_sym_true] = ACTIONS(434), + [anon_sym_false] = ACTIONS(434), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(434), + [sym_super] = ACTIONS(434), + [sym_crate] = ACTIONS(434), + [sym_metavariable] = ACTIONS(432), + [sym_raw_string_literal] = ACTIONS(432), + [sym_float_literal] = ACTIONS(432), [sym_block_comment] = ACTIONS(3), }, [233] = { - [sym_identifier] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_RBRACE] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(446), - [anon_sym_u8] = ACTIONS(448), - [anon_sym_i8] = ACTIONS(448), - [anon_sym_u16] = ACTIONS(448), - [anon_sym_i16] = ACTIONS(448), - [anon_sym_u32] = ACTIONS(448), - [anon_sym_i32] = ACTIONS(448), - [anon_sym_u64] = ACTIONS(448), - [anon_sym_i64] = ACTIONS(448), - [anon_sym_u128] = ACTIONS(448), - [anon_sym_i128] = ACTIONS(448), - [anon_sym_isize] = ACTIONS(448), - [anon_sym_usize] = ACTIONS(448), - [anon_sym_f32] = ACTIONS(448), - [anon_sym_f64] = ACTIONS(448), - [anon_sym_bool] = ACTIONS(448), - [anon_sym_str] = ACTIONS(448), - [anon_sym_char] = ACTIONS(448), - [anon_sym_as] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_default] = ACTIONS(448), - [anon_sym_union] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(446), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_ref] = ACTIONS(448), - [anon_sym_LT] = ACTIONS(448), - [anon_sym_GT] = ACTIONS(448), - [anon_sym_COLON_COLON] = ACTIONS(446), - [anon_sym__] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(446), - [sym_mutable_specifier] = ACTIONS(448), - [anon_sym_DOT_DOT] = ACTIONS(448), - [anon_sym_DOT_DOT_EQ] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_AMP_AMP] = ACTIONS(446), - [anon_sym_PIPE_PIPE] = ACTIONS(446), - [anon_sym_PIPE] = ACTIONS(448), - [anon_sym_CARET] = ACTIONS(448), - [anon_sym_EQ_EQ] = ACTIONS(446), - [anon_sym_BANG_EQ] = ACTIONS(446), - [anon_sym_LT_EQ] = ACTIONS(446), - [anon_sym_GT_EQ] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(448), - [anon_sym_GT_GT] = ACTIONS(448), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_PERCENT] = ACTIONS(448), - [anon_sym_PLUS_EQ] = ACTIONS(446), - [anon_sym_DASH_EQ] = ACTIONS(446), - [anon_sym_STAR_EQ] = ACTIONS(446), - [anon_sym_SLASH_EQ] = ACTIONS(446), - [anon_sym_PERCENT_EQ] = ACTIONS(446), - [anon_sym_AMP_EQ] = ACTIONS(446), - [anon_sym_PIPE_EQ] = ACTIONS(446), - [anon_sym_CARET_EQ] = ACTIONS(446), - [anon_sym_LT_LT_EQ] = ACTIONS(446), - [anon_sym_GT_GT_EQ] = ACTIONS(446), - [anon_sym_DOT] = ACTIONS(448), - [sym_integer_literal] = ACTIONS(446), - [aux_sym_string_literal_token1] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [anon_sym_true] = ACTIONS(448), - [anon_sym_false] = ACTIONS(448), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(448), - [sym_crate] = ACTIONS(448), - [sym_metavariable] = ACTIONS(446), - [sym_raw_string_literal] = ACTIONS(446), - [sym_float_literal] = ACTIONS(446), + [sym_identifier] = ACTIONS(494), + [anon_sym_LPAREN] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(494), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(494), + [anon_sym_i8] = ACTIONS(494), + [anon_sym_u16] = ACTIONS(494), + [anon_sym_i16] = ACTIONS(494), + [anon_sym_u32] = ACTIONS(494), + [anon_sym_i32] = ACTIONS(494), + [anon_sym_u64] = ACTIONS(494), + [anon_sym_i64] = ACTIONS(494), + [anon_sym_u128] = ACTIONS(494), + [anon_sym_i128] = ACTIONS(494), + [anon_sym_isize] = ACTIONS(494), + [anon_sym_usize] = ACTIONS(494), + [anon_sym_f32] = ACTIONS(494), + [anon_sym_f64] = ACTIONS(494), + [anon_sym_bool] = ACTIONS(494), + [anon_sym_str] = ACTIONS(494), + [anon_sym_char] = ACTIONS(494), + [anon_sym_as] = ACTIONS(494), + [anon_sym_const] = ACTIONS(494), + [anon_sym_default] = ACTIONS(494), + [anon_sym_union] = ACTIONS(494), + [anon_sym_POUND] = ACTIONS(492), + [anon_sym_EQ] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(492), + [anon_sym_ref] = ACTIONS(494), + [anon_sym_LT] = ACTIONS(494), + [anon_sym_GT] = ACTIONS(494), + [anon_sym_COLON_COLON] = ACTIONS(492), + [anon_sym__] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(492), + [sym_mutable_specifier] = ACTIONS(494), + [anon_sym_DOT_DOT] = ACTIONS(494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(494), + [anon_sym_AMP_AMP] = ACTIONS(492), + [anon_sym_PIPE_PIPE] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(494), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(494), + [anon_sym_SLASH] = ACTIONS(494), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_PLUS_EQ] = ACTIONS(492), + [anon_sym_DASH_EQ] = ACTIONS(492), + [anon_sym_STAR_EQ] = ACTIONS(492), + [anon_sym_SLASH_EQ] = ACTIONS(492), + [anon_sym_PERCENT_EQ] = ACTIONS(492), + [anon_sym_AMP_EQ] = ACTIONS(492), + [anon_sym_PIPE_EQ] = ACTIONS(492), + [anon_sym_CARET_EQ] = ACTIONS(492), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_GT_GT_EQ] = ACTIONS(492), + [anon_sym_DOT] = ACTIONS(494), + [sym_integer_literal] = ACTIONS(492), + [aux_sym_string_literal_token1] = ACTIONS(492), + [sym_char_literal] = ACTIONS(492), + [anon_sym_true] = ACTIONS(494), + [anon_sym_false] = ACTIONS(494), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(494), + [sym_super] = ACTIONS(494), + [sym_crate] = ACTIONS(494), + [sym_metavariable] = ACTIONS(492), + [sym_raw_string_literal] = ACTIONS(492), + [sym_float_literal] = ACTIONS(492), [sym_block_comment] = ACTIONS(3), }, [234] = { - [sym_identifier] = ACTIONS(606), - [anon_sym_LPAREN] = ACTIONS(604), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(606), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(606), - [anon_sym_i8] = ACTIONS(606), - [anon_sym_u16] = ACTIONS(606), - [anon_sym_i16] = ACTIONS(606), - [anon_sym_u32] = ACTIONS(606), - [anon_sym_i32] = ACTIONS(606), - [anon_sym_u64] = ACTIONS(606), - [anon_sym_i64] = ACTIONS(606), - [anon_sym_u128] = ACTIONS(606), - [anon_sym_i128] = ACTIONS(606), - [anon_sym_isize] = ACTIONS(606), - [anon_sym_usize] = ACTIONS(606), - [anon_sym_f32] = ACTIONS(606), - [anon_sym_f64] = ACTIONS(606), - [anon_sym_bool] = ACTIONS(606), - [anon_sym_str] = ACTIONS(606), - [anon_sym_char] = ACTIONS(606), - [anon_sym_as] = ACTIONS(606), - [anon_sym_const] = ACTIONS(606), - [anon_sym_default] = ACTIONS(606), - [anon_sym_union] = ACTIONS(606), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_EQ] = ACTIONS(606), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_ref] = ACTIONS(606), - [anon_sym_LT] = ACTIONS(606), - [anon_sym_GT] = ACTIONS(606), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym__] = ACTIONS(606), - [anon_sym_AMP] = ACTIONS(606), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [sym_mutable_specifier] = ACTIONS(606), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_DASH] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_CARET] = ACTIONS(606), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(606), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_SLASH] = ACTIONS(606), - [anon_sym_PERCENT] = ACTIONS(606), - [anon_sym_PLUS_EQ] = ACTIONS(604), - [anon_sym_DASH_EQ] = ACTIONS(604), - [anon_sym_STAR_EQ] = ACTIONS(604), - [anon_sym_SLASH_EQ] = ACTIONS(604), - [anon_sym_PERCENT_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_CARET_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_DOT] = ACTIONS(606), - [sym_integer_literal] = ACTIONS(604), - [aux_sym_string_literal_token1] = ACTIONS(604), - [sym_char_literal] = ACTIONS(604), - [anon_sym_true] = ACTIONS(606), - [anon_sym_false] = ACTIONS(606), + [sym_identifier] = ACTIONS(460), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_RBRACE] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_u8] = ACTIONS(460), + [anon_sym_i8] = ACTIONS(460), + [anon_sym_u16] = ACTIONS(460), + [anon_sym_i16] = ACTIONS(460), + [anon_sym_u32] = ACTIONS(460), + [anon_sym_i32] = ACTIONS(460), + [anon_sym_u64] = ACTIONS(460), + [anon_sym_i64] = ACTIONS(460), + [anon_sym_u128] = ACTIONS(460), + [anon_sym_i128] = ACTIONS(460), + [anon_sym_isize] = ACTIONS(460), + [anon_sym_usize] = ACTIONS(460), + [anon_sym_f32] = ACTIONS(460), + [anon_sym_f64] = ACTIONS(460), + [anon_sym_bool] = ACTIONS(460), + [anon_sym_str] = ACTIONS(460), + [anon_sym_char] = ACTIONS(460), + [anon_sym_as] = ACTIONS(460), + [anon_sym_const] = ACTIONS(460), + [anon_sym_default] = ACTIONS(460), + [anon_sym_union] = ACTIONS(460), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_EQ] = ACTIONS(460), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_ref] = ACTIONS(460), + [anon_sym_LT] = ACTIONS(460), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_COLON_COLON] = ACTIONS(458), + [anon_sym__] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_DOT_DOT_DOT] = ACTIONS(458), + [sym_mutable_specifier] = ACTIONS(460), + [anon_sym_DOT_DOT] = ACTIONS(460), + [anon_sym_DOT_DOT_EQ] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(458), + [anon_sym_PIPE_PIPE] = ACTIONS(458), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(460), + [anon_sym_EQ_EQ] = ACTIONS(458), + [anon_sym_BANG_EQ] = ACTIONS(458), + [anon_sym_LT_EQ] = ACTIONS(458), + [anon_sym_GT_EQ] = ACTIONS(458), + [anon_sym_LT_LT] = ACTIONS(460), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(460), + [anon_sym_PERCENT] = ACTIONS(460), + [anon_sym_PLUS_EQ] = ACTIONS(458), + [anon_sym_DASH_EQ] = ACTIONS(458), + [anon_sym_STAR_EQ] = ACTIONS(458), + [anon_sym_SLASH_EQ] = ACTIONS(458), + [anon_sym_PERCENT_EQ] = ACTIONS(458), + [anon_sym_AMP_EQ] = ACTIONS(458), + [anon_sym_PIPE_EQ] = ACTIONS(458), + [anon_sym_CARET_EQ] = ACTIONS(458), + [anon_sym_LT_LT_EQ] = ACTIONS(458), + [anon_sym_GT_GT_EQ] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(460), + [sym_integer_literal] = ACTIONS(458), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(458), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(606), - [sym_super] = ACTIONS(606), - [sym_crate] = ACTIONS(606), - [sym_metavariable] = ACTIONS(604), - [sym_raw_string_literal] = ACTIONS(604), - [sym_float_literal] = ACTIONS(604), + [sym_self] = ACTIONS(460), + [sym_super] = ACTIONS(460), + [sym_crate] = ACTIONS(460), + [sym_metavariable] = ACTIONS(458), + [sym_raw_string_literal] = ACTIONS(458), + [sym_float_literal] = ACTIONS(458), [sym_block_comment] = ACTIONS(3), }, [235] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1935), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1934), - [sym_array_type] = STATE(1390), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_type_binding] = STATE(2264), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [sym_block] = STATE(2264), - [sym__literal] = STATE(2264), - [sym_string_literal] = STATE(2313), - [sym_boolean_literal] = STATE(2313), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(662), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(874), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(874), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), + [sym_identifier] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(884), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(884), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_u8] = ACTIONS(882), + [anon_sym_i8] = ACTIONS(882), + [anon_sym_u16] = ACTIONS(882), + [anon_sym_i16] = ACTIONS(882), + [anon_sym_u32] = ACTIONS(882), + [anon_sym_i32] = ACTIONS(882), + [anon_sym_u64] = ACTIONS(882), + [anon_sym_i64] = ACTIONS(882), + [anon_sym_u128] = ACTIONS(882), + [anon_sym_i128] = ACTIONS(882), + [anon_sym_isize] = ACTIONS(882), + [anon_sym_usize] = ACTIONS(882), + [anon_sym_f32] = ACTIONS(882), + [anon_sym_f64] = ACTIONS(882), + [anon_sym_bool] = ACTIONS(882), + [anon_sym_str] = ACTIONS(882), + [anon_sym_char] = ACTIONS(882), + [anon_sym_as] = ACTIONS(430), + [anon_sym_const] = ACTIONS(882), + [anon_sym_default] = ACTIONS(882), + [anon_sym_union] = ACTIONS(882), + [anon_sym_POUND] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COMMA] = ACTIONS(428), + [anon_sym_ref] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(884), + [anon_sym__] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(428), + [sym_mutable_specifier] = ACTIONS(882), + [anon_sym_DOT_DOT] = ACTIONS(882), + [anon_sym_DOT_DOT_EQ] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(428), + [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(430), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(428), + [anon_sym_LT_LT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(430), + [anon_sym_PERCENT] = ACTIONS(430), + [anon_sym_PLUS_EQ] = ACTIONS(428), + [anon_sym_DASH_EQ] = ACTIONS(428), + [anon_sym_STAR_EQ] = ACTIONS(428), + [anon_sym_SLASH_EQ] = ACTIONS(428), + [anon_sym_PERCENT_EQ] = ACTIONS(428), + [anon_sym_AMP_EQ] = ACTIONS(428), + [anon_sym_PIPE_EQ] = ACTIONS(428), + [anon_sym_CARET_EQ] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(428), + [anon_sym_GT_GT_EQ] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(430), + [sym_integer_literal] = ACTIONS(884), + [aux_sym_string_literal_token1] = ACTIONS(884), + [sym_char_literal] = ACTIONS(884), + [anon_sym_true] = ACTIONS(882), + [anon_sym_false] = ACTIONS(882), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(882), + [sym_super] = ACTIONS(882), + [sym_crate] = ACTIONS(882), + [sym_metavariable] = ACTIONS(884), + [sym_raw_string_literal] = ACTIONS(884), + [sym_float_literal] = ACTIONS(884), [sym_block_comment] = ACTIONS(3), }, [236] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1935), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1934), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1974), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1979), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_type_binding] = STATE(2264), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [sym_block] = STATE(2264), - [sym__literal] = STATE(2264), - [sym_string_literal] = STATE(2313), - [sym_boolean_literal] = STATE(2313), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2193), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [sym_block] = STATE(2193), + [sym__literal] = STATE(2193), + [sym_string_literal] = STATE(2256), + [sym_boolean_literal] = STATE(2256), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(866), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(874), + [sym_char_literal] = ACTIONS(866), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), [sym_block_comment] = ACTIONS(3), }, [237] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1786), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1785), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1855), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1856), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_type_binding] = STATE(2086), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [sym_block] = STATE(2086), - [sym__literal] = STATE(2086), - [sym_string_literal] = STATE(2313), - [sym_boolean_literal] = STATE(2313), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(1875), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [sym_block] = STATE(1875), + [sym__literal] = STATE(1875), + [sym_string_literal] = STATE(2256), + [sym_boolean_literal] = STATE(2256), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(866), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(874), + [sym_char_literal] = ACTIONS(866), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), [sym_block_comment] = ACTIONS(3), }, [238] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1795), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1799), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1778), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1777), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_type_binding] = STATE(1948), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [sym_block] = STATE(1948), - [sym__literal] = STATE(1948), - [sym_string_literal] = STATE(2313), - [sym_boolean_literal] = STATE(2313), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACE] = ACTIONS(858), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_type_binding] = STATE(2096), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [sym_block] = STATE(2096), + [sym__literal] = STATE(2096), + [sym_string_literal] = STATE(2256), + [sym_boolean_literal] = STATE(2256), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(846), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(662), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_integer_literal] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(866), [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(874), + [sym_char_literal] = ACTIONS(866), [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_raw_string_literal] = ACTIONS(874), - [sym_float_literal] = ACTIONS(874), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_raw_string_literal] = ACTIONS(866), + [sym_float_literal] = ACTIONS(866), [sym_block_comment] = ACTIONS(3), }, [239] = { @@ -42651,8 +40192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), [aux_sym_token_tree_pattern_repeat1] = STATE(239), [sym_identifier] = ACTIONS(886), [anon_sym_LPAREN] = ACTIONS(889), @@ -42724,315 +40265,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [240] = { - [sym_empty_statement] = STATE(240), - [sym_macro_definition] = STATE(240), - [sym_attribute_item] = STATE(240), - [sym_inner_attribute_item] = STATE(240), - [sym_mod_item] = STATE(240), - [sym_foreign_mod_item] = STATE(240), - [sym_struct_item] = STATE(240), - [sym_union_item] = STATE(240), - [sym_enum_item] = STATE(240), - [sym_extern_crate_declaration] = STATE(240), - [sym_const_item] = STATE(240), - [sym_static_item] = STATE(240), - [sym_type_item] = STATE(240), - [sym_function_item] = STATE(240), - [sym_function_signature_item] = STATE(240), - [sym_function_modifiers] = STATE(2552), - [sym_impl_item] = STATE(240), - [sym_trait_item] = STATE(240), - [sym_associated_type] = STATE(240), - [sym_let_declaration] = STATE(240), - [sym_use_declaration] = STATE(240), - [sym_extern_modifier] = STATE(1501), + [sym_empty_statement] = STATE(242), + [sym_macro_definition] = STATE(242), + [sym_attribute_item] = STATE(242), + [sym_inner_attribute_item] = STATE(242), + [sym_mod_item] = STATE(242), + [sym_foreign_mod_item] = STATE(242), + [sym_struct_item] = STATE(242), + [sym_union_item] = STATE(242), + [sym_enum_item] = STATE(242), + [sym_extern_crate_declaration] = STATE(242), + [sym_const_item] = STATE(242), + [sym_static_item] = STATE(242), + [sym_type_item] = STATE(242), + [sym_function_item] = STATE(242), + [sym_function_signature_item] = STATE(242), + [sym_function_modifiers] = STATE(2562), + [sym_impl_item] = STATE(242), + [sym_trait_item] = STATE(242), + [sym_associated_type] = STATE(242), + [sym_let_declaration] = STATE(242), + [sym_use_declaration] = STATE(242), + [sym_extern_modifier] = STATE(1512), [sym_visibility_modifier] = STATE(1334), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type_with_turbofish] = STATE(2457), - [sym_macro_invocation] = STATE(240), - [sym_scoped_identifier] = STATE(2290), - [aux_sym_declaration_list_repeat1] = STATE(240), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2345), + [sym_macro_invocation] = STATE(242), + [sym_scoped_identifier] = STATE(2163), + [aux_sym_declaration_list_repeat1] = STATE(242), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(917), - [anon_sym_SEMI] = ACTIONS(920), - [anon_sym_macro_rules_BANG] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_u8] = ACTIONS(928), - [anon_sym_i8] = ACTIONS(928), - [anon_sym_u16] = ACTIONS(928), - [anon_sym_i16] = ACTIONS(928), - [anon_sym_u32] = ACTIONS(928), - [anon_sym_i32] = ACTIONS(928), - [anon_sym_u64] = ACTIONS(928), - [anon_sym_i64] = ACTIONS(928), - [anon_sym_u128] = ACTIONS(928), - [anon_sym_i128] = ACTIONS(928), - [anon_sym_isize] = ACTIONS(928), - [anon_sym_usize] = ACTIONS(928), - [anon_sym_f32] = ACTIONS(928), - [anon_sym_f64] = ACTIONS(928), - [anon_sym_bool] = ACTIONS(928), - [anon_sym_str] = ACTIONS(928), - [anon_sym_char] = ACTIONS(928), - [anon_sym_async] = ACTIONS(931), - [anon_sym_const] = ACTIONS(934), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(943), - [anon_sym_impl] = ACTIONS(946), - [anon_sym_let] = ACTIONS(949), - [anon_sym_mod] = ACTIONS(952), - [anon_sym_pub] = ACTIONS(955), - [anon_sym_static] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_trait] = ACTIONS(964), - [anon_sym_type] = ACTIONS(967), - [anon_sym_union] = ACTIONS(970), - [anon_sym_unsafe] = ACTIONS(973), - [anon_sym_use] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(979), - [anon_sym_extern] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_COLON_COLON] = ACTIONS(988), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_crate] = ACTIONS(994), - [sym_metavariable] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_macro_rules_BANG] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(925), + [anon_sym_i128] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_str] = ACTIONS(925), + [anon_sym_char] = ACTIONS(925), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(927), + [anon_sym_default] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(957), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(959), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(963), + [sym_metavariable] = ACTIONS(965), [sym_block_comment] = ACTIONS(3), }, [241] = { - [sym_empty_statement] = STATE(240), - [sym_macro_definition] = STATE(240), - [sym_attribute_item] = STATE(240), - [sym_inner_attribute_item] = STATE(240), - [sym_mod_item] = STATE(240), - [sym_foreign_mod_item] = STATE(240), - [sym_struct_item] = STATE(240), - [sym_union_item] = STATE(240), - [sym_enum_item] = STATE(240), - [sym_extern_crate_declaration] = STATE(240), - [sym_const_item] = STATE(240), - [sym_static_item] = STATE(240), - [sym_type_item] = STATE(240), - [sym_function_item] = STATE(240), - [sym_function_signature_item] = STATE(240), - [sym_function_modifiers] = STATE(2552), - [sym_impl_item] = STATE(240), - [sym_trait_item] = STATE(240), - [sym_associated_type] = STATE(240), - [sym_let_declaration] = STATE(240), - [sym_use_declaration] = STATE(240), - [sym_extern_modifier] = STATE(1501), + [sym_empty_statement] = STATE(243), + [sym_macro_definition] = STATE(243), + [sym_attribute_item] = STATE(243), + [sym_inner_attribute_item] = STATE(243), + [sym_mod_item] = STATE(243), + [sym_foreign_mod_item] = STATE(243), + [sym_struct_item] = STATE(243), + [sym_union_item] = STATE(243), + [sym_enum_item] = STATE(243), + [sym_extern_crate_declaration] = STATE(243), + [sym_const_item] = STATE(243), + [sym_static_item] = STATE(243), + [sym_type_item] = STATE(243), + [sym_function_item] = STATE(243), + [sym_function_signature_item] = STATE(243), + [sym_function_modifiers] = STATE(2562), + [sym_impl_item] = STATE(243), + [sym_trait_item] = STATE(243), + [sym_associated_type] = STATE(243), + [sym_let_declaration] = STATE(243), + [sym_use_declaration] = STATE(243), + [sym_extern_modifier] = STATE(1512), [sym_visibility_modifier] = STATE(1334), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type_with_turbofish] = STATE(2457), - [sym_macro_invocation] = STATE(240), - [sym_scoped_identifier] = STATE(2290), - [aux_sym_declaration_list_repeat1] = STATE(240), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_macro_rules_BANG] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2345), + [sym_macro_invocation] = STATE(243), + [sym_scoped_identifier] = STATE(2163), + [aux_sym_declaration_list_repeat1] = STATE(243), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_macro_rules_BANG] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(925), + [anon_sym_i128] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_str] = ACTIONS(925), + [anon_sym_char] = ACTIONS(925), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1014), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1020), - [anon_sym_mod] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(927), + [anon_sym_default] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(939), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_trait] = ACTIONS(1028), - [anon_sym_type] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_unsafe] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(957), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1042), + [anon_sym_COLON_COLON] = ACTIONS(959), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), - [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(963), + [sym_metavariable] = ACTIONS(965), [sym_block_comment] = ACTIONS(3), }, [242] = { - [sym_empty_statement] = STATE(241), - [sym_macro_definition] = STATE(241), - [sym_attribute_item] = STATE(241), - [sym_inner_attribute_item] = STATE(241), - [sym_mod_item] = STATE(241), - [sym_foreign_mod_item] = STATE(241), - [sym_struct_item] = STATE(241), - [sym_union_item] = STATE(241), - [sym_enum_item] = STATE(241), - [sym_extern_crate_declaration] = STATE(241), - [sym_const_item] = STATE(241), - [sym_static_item] = STATE(241), - [sym_type_item] = STATE(241), - [sym_function_item] = STATE(241), - [sym_function_signature_item] = STATE(241), - [sym_function_modifiers] = STATE(2552), - [sym_impl_item] = STATE(241), - [sym_trait_item] = STATE(241), - [sym_associated_type] = STATE(241), - [sym_let_declaration] = STATE(241), - [sym_use_declaration] = STATE(241), - [sym_extern_modifier] = STATE(1501), + [sym_empty_statement] = STATE(242), + [sym_macro_definition] = STATE(242), + [sym_attribute_item] = STATE(242), + [sym_inner_attribute_item] = STATE(242), + [sym_mod_item] = STATE(242), + [sym_foreign_mod_item] = STATE(242), + [sym_struct_item] = STATE(242), + [sym_union_item] = STATE(242), + [sym_enum_item] = STATE(242), + [sym_extern_crate_declaration] = STATE(242), + [sym_const_item] = STATE(242), + [sym_static_item] = STATE(242), + [sym_type_item] = STATE(242), + [sym_function_item] = STATE(242), + [sym_function_signature_item] = STATE(242), + [sym_function_modifiers] = STATE(2562), + [sym_impl_item] = STATE(242), + [sym_trait_item] = STATE(242), + [sym_associated_type] = STATE(242), + [sym_let_declaration] = STATE(242), + [sym_use_declaration] = STATE(242), + [sym_extern_modifier] = STATE(1512), [sym_visibility_modifier] = STATE(1334), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type_with_turbofish] = STATE(2457), - [sym_macro_invocation] = STATE(241), - [sym_scoped_identifier] = STATE(2290), - [aux_sym_declaration_list_repeat1] = STATE(241), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_macro_rules_BANG] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1014), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1020), - [anon_sym_mod] = ACTIONS(1022), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_trait] = ACTIONS(1028), - [anon_sym_type] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_unsafe] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1042), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2345), + [sym_macro_invocation] = STATE(242), + [sym_scoped_identifier] = STATE(2163), + [aux_sym_declaration_list_repeat1] = STATE(242), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_macro_rules_BANG] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_u8] = ACTIONS(980), + [anon_sym_i8] = ACTIONS(980), + [anon_sym_u16] = ACTIONS(980), + [anon_sym_i16] = ACTIONS(980), + [anon_sym_u32] = ACTIONS(980), + [anon_sym_i32] = ACTIONS(980), + [anon_sym_u64] = ACTIONS(980), + [anon_sym_i64] = ACTIONS(980), + [anon_sym_u128] = ACTIONS(980), + [anon_sym_i128] = ACTIONS(980), + [anon_sym_isize] = ACTIONS(980), + [anon_sym_usize] = ACTIONS(980), + [anon_sym_f32] = ACTIONS(980), + [anon_sym_f64] = ACTIONS(980), + [anon_sym_bool] = ACTIONS(980), + [anon_sym_str] = ACTIONS(980), + [anon_sym_char] = ACTIONS(980), + [anon_sym_async] = ACTIONS(983), + [anon_sym_const] = ACTIONS(986), + [anon_sym_default] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(995), + [anon_sym_impl] = ACTIONS(998), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_mod] = ACTIONS(1004), + [anon_sym_pub] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1010), + [anon_sym_struct] = ACTIONS(1013), + [anon_sym_trait] = ACTIONS(1016), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1022), + [anon_sym_unsafe] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1034), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_COLON_COLON] = ACTIONS(1040), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1043), + [sym_super] = ACTIONS(1043), [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [sym_metavariable] = ACTIONS(1049), [sym_block_comment] = ACTIONS(3), }, [243] = { - [sym_empty_statement] = STATE(244), - [sym_macro_definition] = STATE(244), - [sym_attribute_item] = STATE(244), - [sym_inner_attribute_item] = STATE(244), - [sym_mod_item] = STATE(244), - [sym_foreign_mod_item] = STATE(244), - [sym_struct_item] = STATE(244), - [sym_union_item] = STATE(244), - [sym_enum_item] = STATE(244), - [sym_extern_crate_declaration] = STATE(244), - [sym_const_item] = STATE(244), - [sym_static_item] = STATE(244), - [sym_type_item] = STATE(244), - [sym_function_item] = STATE(244), - [sym_function_signature_item] = STATE(244), - [sym_function_modifiers] = STATE(2552), - [sym_impl_item] = STATE(244), - [sym_trait_item] = STATE(244), - [sym_associated_type] = STATE(244), - [sym_let_declaration] = STATE(244), - [sym_use_declaration] = STATE(244), - [sym_extern_modifier] = STATE(1501), + [sym_empty_statement] = STATE(242), + [sym_macro_definition] = STATE(242), + [sym_attribute_item] = STATE(242), + [sym_inner_attribute_item] = STATE(242), + [sym_mod_item] = STATE(242), + [sym_foreign_mod_item] = STATE(242), + [sym_struct_item] = STATE(242), + [sym_union_item] = STATE(242), + [sym_enum_item] = STATE(242), + [sym_extern_crate_declaration] = STATE(242), + [sym_const_item] = STATE(242), + [sym_static_item] = STATE(242), + [sym_type_item] = STATE(242), + [sym_function_item] = STATE(242), + [sym_function_signature_item] = STATE(242), + [sym_function_modifiers] = STATE(2562), + [sym_impl_item] = STATE(242), + [sym_trait_item] = STATE(242), + [sym_associated_type] = STATE(242), + [sym_let_declaration] = STATE(242), + [sym_use_declaration] = STATE(242), + [sym_extern_modifier] = STATE(1512), [sym_visibility_modifier] = STATE(1334), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type_with_turbofish] = STATE(2457), - [sym_macro_invocation] = STATE(244), - [sym_scoped_identifier] = STATE(2290), - [aux_sym_declaration_list_repeat1] = STATE(244), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_macro_rules_BANG] = ACTIONS(1004), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2345), + [sym_macro_invocation] = STATE(242), + [sym_scoped_identifier] = STATE(2163), + [aux_sym_declaration_list_repeat1] = STATE(242), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_macro_rules_BANG] = ACTIONS(921), [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(925), + [anon_sym_i128] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_str] = ACTIONS(925), + [anon_sym_char] = ACTIONS(925), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1014), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1020), - [anon_sym_mod] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(927), + [anon_sym_default] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(939), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_trait] = ACTIONS(1028), - [anon_sym_type] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_unsafe] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(957), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1042), + [anon_sym_COLON_COLON] = ACTIONS(959), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), - [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(963), + [sym_metavariable] = ACTIONS(965), [sym_block_comment] = ACTIONS(3), }, [244] = { @@ -43051,146 +40592,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(240), [sym_function_item] = STATE(240), [sym_function_signature_item] = STATE(240), - [sym_function_modifiers] = STATE(2552), + [sym_function_modifiers] = STATE(2562), [sym_impl_item] = STATE(240), [sym_trait_item] = STATE(240), [sym_associated_type] = STATE(240), [sym_let_declaration] = STATE(240), [sym_use_declaration] = STATE(240), - [sym_extern_modifier] = STATE(1501), + [sym_extern_modifier] = STATE(1512), [sym_visibility_modifier] = STATE(1334), - [sym_bracketed_type] = STATE(2369), - [sym_generic_type_with_turbofish] = STATE(2457), + [sym_bracketed_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(2345), [sym_macro_invocation] = STATE(240), - [sym_scoped_identifier] = STATE(2290), + [sym_scoped_identifier] = STATE(2163), [aux_sym_declaration_list_repeat1] = STATE(240), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_macro_rules_BANG] = ACTIONS(1004), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_macro_rules_BANG] = ACTIONS(921), [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u128] = ACTIONS(925), + [anon_sym_i128] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_str] = ACTIONS(925), + [anon_sym_char] = ACTIONS(925), [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(1010), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1014), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1020), - [anon_sym_mod] = ACTIONS(1022), + [anon_sym_const] = ACTIONS(927), + [anon_sym_default] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_fn] = ACTIONS(933), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(939), [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(1024), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_trait] = ACTIONS(1028), - [anon_sym_type] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1032), - [anon_sym_unsafe] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(945), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(949), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym_extern] = ACTIONS(957), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1042), + [anon_sym_COLON_COLON] = ACTIONS(959), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1044), - [sym_super] = ACTIONS(1044), - [sym_crate] = ACTIONS(1046), - [sym_metavariable] = ACTIONS(1048), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(963), + [sym_metavariable] = ACTIONS(965), [sym_block_comment] = ACTIONS(3), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(414), - [sym_identifier] = ACTIONS(416), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_macro_rules_BANG] = ACTIONS(414), - [anon_sym_LPAREN] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(414), - [anon_sym_LBRACK] = ACTIONS(414), - [anon_sym_STAR] = ACTIONS(414), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_SQUOTE] = ACTIONS(416), - [anon_sym_async] = ACTIONS(416), - [anon_sym_break] = ACTIONS(416), - [anon_sym_const] = ACTIONS(416), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(416), - [anon_sym_enum] = ACTIONS(416), - [anon_sym_fn] = ACTIONS(416), - [anon_sym_for] = ACTIONS(416), - [anon_sym_if] = ACTIONS(416), - [anon_sym_impl] = ACTIONS(416), - [anon_sym_let] = ACTIONS(416), - [anon_sym_loop] = ACTIONS(416), - [anon_sym_match] = ACTIONS(416), - [anon_sym_mod] = ACTIONS(416), - [anon_sym_pub] = ACTIONS(416), - [anon_sym_return] = ACTIONS(416), - [anon_sym_static] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(416), - [anon_sym_trait] = ACTIONS(416), - [anon_sym_type] = ACTIONS(416), - [anon_sym_union] = ACTIONS(416), - [anon_sym_unsafe] = ACTIONS(416), - [anon_sym_use] = ACTIONS(416), - [anon_sym_while] = ACTIONS(416), - [anon_sym_POUND] = ACTIONS(414), - [anon_sym_BANG] = ACTIONS(414), - [anon_sym_extern] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_COLON_COLON] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - [anon_sym_DOT_DOT] = ACTIONS(414), - [anon_sym_DASH] = ACTIONS(414), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_yield] = ACTIONS(416), - [anon_sym_move] = ACTIONS(416), - [sym_integer_literal] = ACTIONS(414), - [aux_sym_string_literal_token1] = ACTIONS(414), - [sym_char_literal] = ACTIONS(414), - [anon_sym_true] = ACTIONS(416), - [anon_sym_false] = ACTIONS(416), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(416), - [sym_super] = ACTIONS(416), - [sym_crate] = ACTIONS(416), - [sym_metavariable] = ACTIONS(414), - [sym_raw_string_literal] = ACTIONS(414), - [sym_float_literal] = ACTIONS(414), - [sym_block_comment] = ACTIONS(3), - }, - [246] = { [ts_builtin_sym_end] = ACTIONS(1056), [sym_identifier] = ACTIONS(1058), [anon_sym_SEMI] = ACTIONS(1056), @@ -43267,7 +40731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1056), [sym_block_comment] = ACTIONS(3), }, - [247] = { + [246] = { [ts_builtin_sym_end] = ACTIONS(1060), [sym_identifier] = ACTIONS(1062), [anon_sym_SEMI] = ACTIONS(1060), @@ -43344,7 +40808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1060), [sym_block_comment] = ACTIONS(3), }, - [248] = { + [247] = { [ts_builtin_sym_end] = ACTIONS(1064), [sym_identifier] = ACTIONS(1066), [anon_sym_SEMI] = ACTIONS(1064), @@ -43421,7 +40885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1064), [sym_block_comment] = ACTIONS(3), }, - [249] = { + [248] = { [ts_builtin_sym_end] = ACTIONS(1068), [sym_identifier] = ACTIONS(1070), [anon_sym_SEMI] = ACTIONS(1068), @@ -43498,7 +40962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1068), [sym_block_comment] = ACTIONS(3), }, - [250] = { + [249] = { [ts_builtin_sym_end] = ACTIONS(1072), [sym_identifier] = ACTIONS(1074), [anon_sym_SEMI] = ACTIONS(1072), @@ -43575,7 +41039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1072), [sym_block_comment] = ACTIONS(3), }, - [251] = { + [250] = { [ts_builtin_sym_end] = ACTIONS(1076), [sym_identifier] = ACTIONS(1078), [anon_sym_SEMI] = ACTIONS(1076), @@ -43652,7 +41116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1076), [sym_block_comment] = ACTIONS(3), }, - [252] = { + [251] = { [ts_builtin_sym_end] = ACTIONS(1080), [sym_identifier] = ACTIONS(1082), [anon_sym_SEMI] = ACTIONS(1080), @@ -43729,7 +41193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1080), [sym_block_comment] = ACTIONS(3), }, - [253] = { + [252] = { [ts_builtin_sym_end] = ACTIONS(1084), [sym_identifier] = ACTIONS(1086), [anon_sym_SEMI] = ACTIONS(1084), @@ -43806,7 +41270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1084), [sym_block_comment] = ACTIONS(3), }, - [254] = { + [253] = { [ts_builtin_sym_end] = ACTIONS(1088), [sym_identifier] = ACTIONS(1090), [anon_sym_SEMI] = ACTIONS(1088), @@ -43883,7 +41347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1088), [sym_block_comment] = ACTIONS(3), }, - [255] = { + [254] = { [ts_builtin_sym_end] = ACTIONS(1092), [sym_identifier] = ACTIONS(1094), [anon_sym_SEMI] = ACTIONS(1092), @@ -43960,7 +41424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1092), [sym_block_comment] = ACTIONS(3), }, - [256] = { + [255] = { [ts_builtin_sym_end] = ACTIONS(1096), [sym_identifier] = ACTIONS(1098), [anon_sym_SEMI] = ACTIONS(1096), @@ -44037,7 +41501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1096), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [256] = { [ts_builtin_sym_end] = ACTIONS(1100), [sym_identifier] = ACTIONS(1102), [anon_sym_SEMI] = ACTIONS(1100), @@ -44114,7 +41578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1100), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [257] = { [ts_builtin_sym_end] = ACTIONS(1104), [sym_identifier] = ACTIONS(1106), [anon_sym_SEMI] = ACTIONS(1104), @@ -44191,7 +41655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1104), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(1108), [sym_identifier] = ACTIONS(1110), [anon_sym_SEMI] = ACTIONS(1108), @@ -44268,7 +41732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1108), [sym_block_comment] = ACTIONS(3), }, - [260] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1112), [sym_identifier] = ACTIONS(1114), [anon_sym_SEMI] = ACTIONS(1112), @@ -44345,7 +41809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1112), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(1116), [sym_identifier] = ACTIONS(1118), [anon_sym_SEMI] = ACTIONS(1116), @@ -44422,7 +41886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1116), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1120), [sym_identifier] = ACTIONS(1122), [anon_sym_SEMI] = ACTIONS(1120), @@ -44499,7 +41963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1120), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1124), [sym_identifier] = ACTIONS(1126), [anon_sym_SEMI] = ACTIONS(1124), @@ -44576,7 +42040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1124), [sym_block_comment] = ACTIONS(3), }, - [264] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1128), [sym_identifier] = ACTIONS(1130), [anon_sym_SEMI] = ACTIONS(1128), @@ -44653,7 +42117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1128), [sym_block_comment] = ACTIONS(3), }, - [265] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1132), [sym_identifier] = ACTIONS(1134), [anon_sym_SEMI] = ACTIONS(1132), @@ -44730,7 +42194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1132), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1136), [sym_identifier] = ACTIONS(1138), [anon_sym_SEMI] = ACTIONS(1136), @@ -44807,7 +42271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1136), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1140), [sym_identifier] = ACTIONS(1142), [anon_sym_SEMI] = ACTIONS(1140), @@ -44884,7 +42348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1140), [sym_block_comment] = ACTIONS(3), }, - [268] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1144), [sym_identifier] = ACTIONS(1146), [anon_sym_SEMI] = ACTIONS(1144), @@ -44961,7 +42425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1144), [sym_block_comment] = ACTIONS(3), }, - [269] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1148), [sym_identifier] = ACTIONS(1150), [anon_sym_SEMI] = ACTIONS(1148), @@ -45038,7 +42502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1148), [sym_block_comment] = ACTIONS(3), }, - [270] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1152), [sym_identifier] = ACTIONS(1154), [anon_sym_SEMI] = ACTIONS(1152), @@ -45115,7 +42579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1152), [sym_block_comment] = ACTIONS(3), }, - [271] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1156), [sym_identifier] = ACTIONS(1158), [anon_sym_SEMI] = ACTIONS(1156), @@ -45192,7 +42656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1156), [sym_block_comment] = ACTIONS(3), }, - [272] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1160), [sym_identifier] = ACTIONS(1162), [anon_sym_SEMI] = ACTIONS(1160), @@ -45269,7 +42733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1160), [sym_block_comment] = ACTIONS(3), }, - [273] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1164), [sym_identifier] = ACTIONS(1166), [anon_sym_SEMI] = ACTIONS(1164), @@ -45346,7 +42810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1164), [sym_block_comment] = ACTIONS(3), }, - [274] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1168), [sym_identifier] = ACTIONS(1170), [anon_sym_SEMI] = ACTIONS(1168), @@ -45423,7 +42887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1168), [sym_block_comment] = ACTIONS(3), }, - [275] = { + [274] = { [ts_builtin_sym_end] = ACTIONS(1172), [sym_identifier] = ACTIONS(1174), [anon_sym_SEMI] = ACTIONS(1172), @@ -45500,7 +42964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1172), [sym_block_comment] = ACTIONS(3), }, - [276] = { + [275] = { [ts_builtin_sym_end] = ACTIONS(1176), [sym_identifier] = ACTIONS(1178), [anon_sym_SEMI] = ACTIONS(1176), @@ -45577,7 +43041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1176), [sym_block_comment] = ACTIONS(3), }, - [277] = { + [276] = { [ts_builtin_sym_end] = ACTIONS(1180), [sym_identifier] = ACTIONS(1182), [anon_sym_SEMI] = ACTIONS(1180), @@ -45654,7 +43118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1180), [sym_block_comment] = ACTIONS(3), }, - [278] = { + [277] = { [ts_builtin_sym_end] = ACTIONS(1184), [sym_identifier] = ACTIONS(1186), [anon_sym_SEMI] = ACTIONS(1184), @@ -45731,7 +43195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1184), [sym_block_comment] = ACTIONS(3), }, - [279] = { + [278] = { [ts_builtin_sym_end] = ACTIONS(1188), [sym_identifier] = ACTIONS(1190), [anon_sym_SEMI] = ACTIONS(1188), @@ -45808,7 +43272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1188), [sym_block_comment] = ACTIONS(3), }, - [280] = { + [279] = { [ts_builtin_sym_end] = ACTIONS(1192), [sym_identifier] = ACTIONS(1194), [anon_sym_SEMI] = ACTIONS(1192), @@ -45885,7 +43349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1192), [sym_block_comment] = ACTIONS(3), }, - [281] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1196), [sym_identifier] = ACTIONS(1198), [anon_sym_SEMI] = ACTIONS(1196), @@ -45962,7 +43426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1196), [sym_block_comment] = ACTIONS(3), }, - [282] = { + [281] = { [ts_builtin_sym_end] = ACTIONS(1200), [sym_identifier] = ACTIONS(1202), [anon_sym_SEMI] = ACTIONS(1200), @@ -46039,6 +43503,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1200), [sym_block_comment] = ACTIONS(3), }, + [282] = { + [ts_builtin_sym_end] = ACTIONS(406), + [sym_identifier] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_macro_rules_BANG] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(408), + [anon_sym_i8] = ACTIONS(408), + [anon_sym_u16] = ACTIONS(408), + [anon_sym_i16] = ACTIONS(408), + [anon_sym_u32] = ACTIONS(408), + [anon_sym_i32] = ACTIONS(408), + [anon_sym_u64] = ACTIONS(408), + [anon_sym_i64] = ACTIONS(408), + [anon_sym_u128] = ACTIONS(408), + [anon_sym_i128] = ACTIONS(408), + [anon_sym_isize] = ACTIONS(408), + [anon_sym_usize] = ACTIONS(408), + [anon_sym_f32] = ACTIONS(408), + [anon_sym_f64] = ACTIONS(408), + [anon_sym_bool] = ACTIONS(408), + [anon_sym_str] = ACTIONS(408), + [anon_sym_char] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(408), + [anon_sym_async] = ACTIONS(408), + [anon_sym_break] = ACTIONS(408), + [anon_sym_const] = ACTIONS(408), + [anon_sym_continue] = ACTIONS(408), + [anon_sym_default] = ACTIONS(408), + [anon_sym_enum] = ACTIONS(408), + [anon_sym_fn] = ACTIONS(408), + [anon_sym_for] = ACTIONS(408), + [anon_sym_if] = ACTIONS(408), + [anon_sym_impl] = ACTIONS(408), + [anon_sym_let] = ACTIONS(408), + [anon_sym_loop] = ACTIONS(408), + [anon_sym_match] = ACTIONS(408), + [anon_sym_mod] = ACTIONS(408), + [anon_sym_pub] = ACTIONS(408), + [anon_sym_return] = ACTIONS(408), + [anon_sym_static] = ACTIONS(408), + [anon_sym_struct] = ACTIONS(408), + [anon_sym_trait] = ACTIONS(408), + [anon_sym_type] = ACTIONS(408), + [anon_sym_union] = ACTIONS(408), + [anon_sym_unsafe] = ACTIONS(408), + [anon_sym_use] = ACTIONS(408), + [anon_sym_while] = ACTIONS(408), + [anon_sym_POUND] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_extern] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), + [anon_sym_DOT_DOT] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_PIPE] = ACTIONS(406), + [anon_sym_yield] = ACTIONS(408), + [anon_sym_move] = ACTIONS(408), + [sym_integer_literal] = ACTIONS(406), + [aux_sym_string_literal_token1] = ACTIONS(406), + [sym_char_literal] = ACTIONS(406), + [anon_sym_true] = ACTIONS(408), + [anon_sym_false] = ACTIONS(408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(408), + [sym_super] = ACTIONS(408), + [sym_crate] = ACTIONS(408), + [sym_metavariable] = ACTIONS(406), + [sym_raw_string_literal] = ACTIONS(406), + [sym_float_literal] = ACTIONS(406), + [sym_block_comment] = ACTIONS(3), + }, [283] = { [ts_builtin_sym_end] = ACTIONS(1204), [sym_identifier] = ACTIONS(1206), @@ -46271,3933 +43812,468 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1216), - [sym_identifier] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym_macro_rules_BANG] = ACTIONS(1216), - [anon_sym_LPAREN] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1216), - [anon_sym_RBRACE] = ACTIONS(1216), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_u8] = ACTIONS(1218), - [anon_sym_i8] = ACTIONS(1218), - [anon_sym_u16] = ACTIONS(1218), - [anon_sym_i16] = ACTIONS(1218), - [anon_sym_u32] = ACTIONS(1218), - [anon_sym_i32] = ACTIONS(1218), - [anon_sym_u64] = ACTIONS(1218), - [anon_sym_i64] = ACTIONS(1218), - [anon_sym_u128] = ACTIONS(1218), - [anon_sym_i128] = ACTIONS(1218), - [anon_sym_isize] = ACTIONS(1218), - [anon_sym_usize] = ACTIONS(1218), - [anon_sym_f32] = ACTIONS(1218), - [anon_sym_f64] = ACTIONS(1218), - [anon_sym_bool] = ACTIONS(1218), - [anon_sym_str] = ACTIONS(1218), - [anon_sym_char] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_async] = ACTIONS(1218), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_const] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_default] = ACTIONS(1218), - [anon_sym_enum] = ACTIONS(1218), - [anon_sym_fn] = ACTIONS(1218), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1218), - [anon_sym_impl] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_loop] = ACTIONS(1218), - [anon_sym_match] = ACTIONS(1218), - [anon_sym_mod] = ACTIONS(1218), - [anon_sym_pub] = ACTIONS(1218), - [anon_sym_return] = ACTIONS(1218), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_struct] = ACTIONS(1218), - [anon_sym_trait] = ACTIONS(1218), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_union] = ACTIONS(1218), - [anon_sym_unsafe] = ACTIONS(1218), - [anon_sym_use] = ACTIONS(1218), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_POUND] = ACTIONS(1216), - [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym_LT] = ACTIONS(1216), - [anon_sym_COLON_COLON] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1216), - [anon_sym_DOT_DOT] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PIPE] = ACTIONS(1216), - [anon_sym_yield] = ACTIONS(1218), - [anon_sym_move] = ACTIONS(1218), - [sym_integer_literal] = ACTIONS(1216), - [aux_sym_string_literal_token1] = ACTIONS(1216), - [sym_char_literal] = ACTIONS(1216), - [anon_sym_true] = ACTIONS(1218), - [anon_sym_false] = ACTIONS(1218), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1218), - [sym_super] = ACTIONS(1218), - [sym_crate] = ACTIONS(1218), - [sym_metavariable] = ACTIONS(1216), - [sym_raw_string_literal] = ACTIONS(1216), - [sym_float_literal] = ACTIONS(1216), + [ts_builtin_sym_end] = ACTIONS(414), + [sym_identifier] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(414), + [anon_sym_macro_rules_BANG] = ACTIONS(414), + [anon_sym_LPAREN] = ACTIONS(414), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(414), + [anon_sym_LBRACK] = ACTIONS(414), + [anon_sym_STAR] = ACTIONS(414), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_SQUOTE] = ACTIONS(416), + [anon_sym_async] = ACTIONS(416), + [anon_sym_break] = ACTIONS(416), + [anon_sym_const] = ACTIONS(416), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(416), + [anon_sym_enum] = ACTIONS(416), + [anon_sym_fn] = ACTIONS(416), + [anon_sym_for] = ACTIONS(416), + [anon_sym_if] = ACTIONS(416), + [anon_sym_impl] = ACTIONS(416), + [anon_sym_let] = ACTIONS(416), + [anon_sym_loop] = ACTIONS(416), + [anon_sym_match] = ACTIONS(416), + [anon_sym_mod] = ACTIONS(416), + [anon_sym_pub] = ACTIONS(416), + [anon_sym_return] = ACTIONS(416), + [anon_sym_static] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(416), + [anon_sym_trait] = ACTIONS(416), + [anon_sym_type] = ACTIONS(416), + [anon_sym_union] = ACTIONS(416), + [anon_sym_unsafe] = ACTIONS(416), + [anon_sym_use] = ACTIONS(416), + [anon_sym_while] = ACTIONS(416), + [anon_sym_POUND] = ACTIONS(414), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_extern] = ACTIONS(416), + [anon_sym_LT] = ACTIONS(414), + [anon_sym_COLON_COLON] = ACTIONS(414), + [anon_sym_AMP] = ACTIONS(414), + [anon_sym_DOT_DOT] = ACTIONS(414), + [anon_sym_DASH] = ACTIONS(414), + [anon_sym_PIPE] = ACTIONS(414), + [anon_sym_yield] = ACTIONS(416), + [anon_sym_move] = ACTIONS(416), + [sym_integer_literal] = ACTIONS(414), + [aux_sym_string_literal_token1] = ACTIONS(414), + [sym_char_literal] = ACTIONS(414), + [anon_sym_true] = ACTIONS(416), + [anon_sym_false] = ACTIONS(416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(416), + [sym_super] = ACTIONS(416), + [sym_crate] = ACTIONS(416), + [sym_metavariable] = ACTIONS(414), + [sym_raw_string_literal] = ACTIONS(414), + [sym_float_literal] = ACTIONS(414), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1220), - [sym_identifier] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_macro_rules_BANG] = ACTIONS(1220), - [anon_sym_LPAREN] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1220), + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_match_arm] = STATE(482), + [sym_last_match_arm] = STATE(2561), + [sym_match_pattern] = STATE(2378), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(482), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), [anon_sym_RBRACE] = ACTIONS(1220), - [anon_sym_LBRACK] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1220), - [anon_sym_u8] = ACTIONS(1222), - [anon_sym_i8] = ACTIONS(1222), - [anon_sym_u16] = ACTIONS(1222), - [anon_sym_i16] = ACTIONS(1222), - [anon_sym_u32] = ACTIONS(1222), - [anon_sym_i32] = ACTIONS(1222), - [anon_sym_u64] = ACTIONS(1222), - [anon_sym_i64] = ACTIONS(1222), - [anon_sym_u128] = ACTIONS(1222), - [anon_sym_i128] = ACTIONS(1222), - [anon_sym_isize] = ACTIONS(1222), - [anon_sym_usize] = ACTIONS(1222), - [anon_sym_f32] = ACTIONS(1222), - [anon_sym_f64] = ACTIONS(1222), - [anon_sym_bool] = ACTIONS(1222), - [anon_sym_str] = ACTIONS(1222), - [anon_sym_char] = ACTIONS(1222), - [anon_sym_SQUOTE] = ACTIONS(1222), - [anon_sym_async] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1222), - [anon_sym_const] = ACTIONS(1222), - [anon_sym_continue] = ACTIONS(1222), - [anon_sym_default] = ACTIONS(1222), - [anon_sym_enum] = ACTIONS(1222), - [anon_sym_fn] = ACTIONS(1222), - [anon_sym_for] = ACTIONS(1222), - [anon_sym_if] = ACTIONS(1222), - [anon_sym_impl] = ACTIONS(1222), - [anon_sym_let] = ACTIONS(1222), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1222), - [anon_sym_mod] = ACTIONS(1222), - [anon_sym_pub] = ACTIONS(1222), - [anon_sym_return] = ACTIONS(1222), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_trait] = ACTIONS(1222), - [anon_sym_type] = ACTIONS(1222), - [anon_sym_union] = ACTIONS(1222), - [anon_sym_unsafe] = ACTIONS(1222), - [anon_sym_use] = ACTIONS(1222), - [anon_sym_while] = ACTIONS(1222), - [anon_sym_POUND] = ACTIONS(1220), - [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1220), - [anon_sym_COLON_COLON] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), - [anon_sym_DOT_DOT] = ACTIONS(1220), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1220), - [anon_sym_yield] = ACTIONS(1222), - [anon_sym_move] = ACTIONS(1222), - [sym_integer_literal] = ACTIONS(1220), - [aux_sym_string_literal_token1] = ACTIONS(1220), - [sym_char_literal] = ACTIONS(1220), - [anon_sym_true] = ACTIONS(1222), - [anon_sym_false] = ACTIONS(1222), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1222), - [sym_super] = ACTIONS(1222), - [sym_crate] = ACTIONS(1222), - [sym_metavariable] = ACTIONS(1220), - [sym_raw_string_literal] = ACTIONS(1220), - [sym_float_literal] = ACTIONS(1220), - [sym_block_comment] = ACTIONS(3), - }, - [288] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_identifier] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1224), - [anon_sym_macro_rules_BANG] = ACTIONS(1224), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_u8] = ACTIONS(1226), - [anon_sym_i8] = ACTIONS(1226), - [anon_sym_u16] = ACTIONS(1226), - [anon_sym_i16] = ACTIONS(1226), - [anon_sym_u32] = ACTIONS(1226), - [anon_sym_i32] = ACTIONS(1226), - [anon_sym_u64] = ACTIONS(1226), - [anon_sym_i64] = ACTIONS(1226), - [anon_sym_u128] = ACTIONS(1226), - [anon_sym_i128] = ACTIONS(1226), - [anon_sym_isize] = ACTIONS(1226), - [anon_sym_usize] = ACTIONS(1226), - [anon_sym_f32] = ACTIONS(1226), - [anon_sym_f64] = ACTIONS(1226), - [anon_sym_bool] = ACTIONS(1226), - [anon_sym_str] = ACTIONS(1226), - [anon_sym_char] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_async] = ACTIONS(1226), - [anon_sym_break] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), [anon_sym_const] = ACTIONS(1226), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_default] = ACTIONS(1226), - [anon_sym_enum] = ACTIONS(1226), - [anon_sym_fn] = ACTIONS(1226), - [anon_sym_for] = ACTIONS(1226), - [anon_sym_if] = ACTIONS(1226), - [anon_sym_impl] = ACTIONS(1226), - [anon_sym_let] = ACTIONS(1226), - [anon_sym_loop] = ACTIONS(1226), - [anon_sym_match] = ACTIONS(1226), - [anon_sym_mod] = ACTIONS(1226), - [anon_sym_pub] = ACTIONS(1226), - [anon_sym_return] = ACTIONS(1226), - [anon_sym_static] = ACTIONS(1226), - [anon_sym_struct] = ACTIONS(1226), - [anon_sym_trait] = ACTIONS(1226), - [anon_sym_type] = ACTIONS(1226), - [anon_sym_union] = ACTIONS(1226), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_use] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1226), - [anon_sym_POUND] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_COLON_COLON] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_DOT_DOT] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_yield] = ACTIONS(1226), - [anon_sym_move] = ACTIONS(1226), - [sym_integer_literal] = ACTIONS(1224), - [aux_sym_string_literal_token1] = ACTIONS(1224), - [sym_char_literal] = ACTIONS(1224), - [anon_sym_true] = ACTIONS(1226), - [anon_sym_false] = ACTIONS(1226), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1226), - [sym_super] = ACTIONS(1226), - [sym_crate] = ACTIONS(1226), - [sym_metavariable] = ACTIONS(1224), - [sym_raw_string_literal] = ACTIONS(1224), - [sym_float_literal] = ACTIONS(1224), - [sym_block_comment] = ACTIONS(3), - }, - [289] = { - [ts_builtin_sym_end] = ACTIONS(1228), - [sym_identifier] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_macro_rules_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1228), - [anon_sym_RBRACE] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_u8] = ACTIONS(1230), - [anon_sym_i8] = ACTIONS(1230), - [anon_sym_u16] = ACTIONS(1230), - [anon_sym_i16] = ACTIONS(1230), - [anon_sym_u32] = ACTIONS(1230), - [anon_sym_i32] = ACTIONS(1230), - [anon_sym_u64] = ACTIONS(1230), - [anon_sym_i64] = ACTIONS(1230), - [anon_sym_u128] = ACTIONS(1230), - [anon_sym_i128] = ACTIONS(1230), - [anon_sym_isize] = ACTIONS(1230), - [anon_sym_usize] = ACTIONS(1230), - [anon_sym_f32] = ACTIONS(1230), - [anon_sym_f64] = ACTIONS(1230), - [anon_sym_bool] = ACTIONS(1230), - [anon_sym_str] = ACTIONS(1230), - [anon_sym_char] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_async] = ACTIONS(1230), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_const] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1230), - [anon_sym_default] = ACTIONS(1230), - [anon_sym_enum] = ACTIONS(1230), - [anon_sym_fn] = ACTIONS(1230), - [anon_sym_for] = ACTIONS(1230), - [anon_sym_if] = ACTIONS(1230), - [anon_sym_impl] = ACTIONS(1230), - [anon_sym_let] = ACTIONS(1230), - [anon_sym_loop] = ACTIONS(1230), - [anon_sym_match] = ACTIONS(1230), - [anon_sym_mod] = ACTIONS(1230), - [anon_sym_pub] = ACTIONS(1230), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_struct] = ACTIONS(1230), - [anon_sym_trait] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_union] = ACTIONS(1230), - [anon_sym_unsafe] = ACTIONS(1230), - [anon_sym_use] = ACTIONS(1230), - [anon_sym_while] = ACTIONS(1230), - [anon_sym_POUND] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_COLON_COLON] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_DOT_DOT] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(1230), - [anon_sym_move] = ACTIONS(1230), - [sym_integer_literal] = ACTIONS(1228), - [aux_sym_string_literal_token1] = ACTIONS(1228), - [sym_char_literal] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1230), - [anon_sym_false] = ACTIONS(1230), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1230), - [sym_super] = ACTIONS(1230), - [sym_crate] = ACTIONS(1230), - [sym_metavariable] = ACTIONS(1228), - [sym_raw_string_literal] = ACTIONS(1228), - [sym_float_literal] = ACTIONS(1228), - [sym_block_comment] = ACTIONS(3), - }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1234), [sym_super] = ACTIONS(1234), [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym_raw_string_literal] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - [sym_block_comment] = ACTIONS(3), - }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), [sym_metavariable] = ACTIONS(1236), - [sym_raw_string_literal] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), - [sym_block_comment] = ACTIONS(3), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym_raw_string_literal] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - [sym_block_comment] = ACTIONS(3), - }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym_raw_string_literal] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), - [sym_block_comment] = ACTIONS(3), - }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_macro_rules_BANG] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_impl] = ACTIONS(1250), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_loop] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_mod] = ACTIONS(1250), - [anon_sym_pub] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_trait] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_unsafe] = ACTIONS(1250), - [anon_sym_use] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_COLON_COLON] = ACTIONS(1248), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_DOT_DOT] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1248), - [aux_sym_string_literal_token1] = ACTIONS(1248), - [sym_char_literal] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1248), - [sym_raw_string_literal] = ACTIONS(1248), - [sym_float_literal] = ACTIONS(1248), - [sym_block_comment] = ACTIONS(3), - }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1252), - [sym_identifier] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1252), - [anon_sym_macro_rules_BANG] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1252), - [anon_sym_RBRACE] = ACTIONS(1252), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_u8] = ACTIONS(1254), - [anon_sym_i8] = ACTIONS(1254), - [anon_sym_u16] = ACTIONS(1254), - [anon_sym_i16] = ACTIONS(1254), - [anon_sym_u32] = ACTIONS(1254), - [anon_sym_i32] = ACTIONS(1254), - [anon_sym_u64] = ACTIONS(1254), - [anon_sym_i64] = ACTIONS(1254), - [anon_sym_u128] = ACTIONS(1254), - [anon_sym_i128] = ACTIONS(1254), - [anon_sym_isize] = ACTIONS(1254), - [anon_sym_usize] = ACTIONS(1254), - [anon_sym_f32] = ACTIONS(1254), - [anon_sym_f64] = ACTIONS(1254), - [anon_sym_bool] = ACTIONS(1254), - [anon_sym_str] = ACTIONS(1254), - [anon_sym_char] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_async] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_const] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1254), - [anon_sym_default] = ACTIONS(1254), - [anon_sym_enum] = ACTIONS(1254), - [anon_sym_fn] = ACTIONS(1254), - [anon_sym_for] = ACTIONS(1254), - [anon_sym_if] = ACTIONS(1254), - [anon_sym_impl] = ACTIONS(1254), - [anon_sym_let] = ACTIONS(1254), - [anon_sym_loop] = ACTIONS(1254), - [anon_sym_match] = ACTIONS(1254), - [anon_sym_mod] = ACTIONS(1254), - [anon_sym_pub] = ACTIONS(1254), - [anon_sym_return] = ACTIONS(1254), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_struct] = ACTIONS(1254), - [anon_sym_trait] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_union] = ACTIONS(1254), - [anon_sym_unsafe] = ACTIONS(1254), - [anon_sym_use] = ACTIONS(1254), - [anon_sym_while] = ACTIONS(1254), - [anon_sym_POUND] = ACTIONS(1252), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_COLON_COLON] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_DOT_DOT] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_yield] = ACTIONS(1254), - [anon_sym_move] = ACTIONS(1254), - [sym_integer_literal] = ACTIONS(1252), - [aux_sym_string_literal_token1] = ACTIONS(1252), - [sym_char_literal] = ACTIONS(1252), - [anon_sym_true] = ACTIONS(1254), - [anon_sym_false] = ACTIONS(1254), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1254), - [sym_super] = ACTIONS(1254), - [sym_crate] = ACTIONS(1254), - [sym_metavariable] = ACTIONS(1252), - [sym_raw_string_literal] = ACTIONS(1252), - [sym_float_literal] = ACTIONS(1252), - [sym_block_comment] = ACTIONS(3), - }, - [296] = { - [ts_builtin_sym_end] = ACTIONS(1256), - [sym_identifier] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1256), - [anon_sym_macro_rules_BANG] = ACTIONS(1256), - [anon_sym_LPAREN] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1256), - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_u8] = ACTIONS(1258), - [anon_sym_i8] = ACTIONS(1258), - [anon_sym_u16] = ACTIONS(1258), - [anon_sym_i16] = ACTIONS(1258), - [anon_sym_u32] = ACTIONS(1258), - [anon_sym_i32] = ACTIONS(1258), - [anon_sym_u64] = ACTIONS(1258), - [anon_sym_i64] = ACTIONS(1258), - [anon_sym_u128] = ACTIONS(1258), - [anon_sym_i128] = ACTIONS(1258), - [anon_sym_isize] = ACTIONS(1258), - [anon_sym_usize] = ACTIONS(1258), - [anon_sym_f32] = ACTIONS(1258), - [anon_sym_f64] = ACTIONS(1258), - [anon_sym_bool] = ACTIONS(1258), - [anon_sym_str] = ACTIONS(1258), - [anon_sym_char] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_break] = ACTIONS(1258), - [anon_sym_const] = ACTIONS(1258), - [anon_sym_continue] = ACTIONS(1258), - [anon_sym_default] = ACTIONS(1258), - [anon_sym_enum] = ACTIONS(1258), - [anon_sym_fn] = ACTIONS(1258), - [anon_sym_for] = ACTIONS(1258), - [anon_sym_if] = ACTIONS(1258), - [anon_sym_impl] = ACTIONS(1258), - [anon_sym_let] = ACTIONS(1258), - [anon_sym_loop] = ACTIONS(1258), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_mod] = ACTIONS(1258), - [anon_sym_pub] = ACTIONS(1258), - [anon_sym_return] = ACTIONS(1258), - [anon_sym_static] = ACTIONS(1258), - [anon_sym_struct] = ACTIONS(1258), - [anon_sym_trait] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(1258), - [anon_sym_union] = ACTIONS(1258), - [anon_sym_unsafe] = ACTIONS(1258), - [anon_sym_use] = ACTIONS(1258), - [anon_sym_while] = ACTIONS(1258), - [anon_sym_POUND] = ACTIONS(1256), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_COLON_COLON] = ACTIONS(1256), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_DOT_DOT] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_yield] = ACTIONS(1258), - [anon_sym_move] = ACTIONS(1258), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1256), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1258), - [anon_sym_false] = ACTIONS(1258), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1258), - [sym_super] = ACTIONS(1258), - [sym_crate] = ACTIONS(1258), - [sym_metavariable] = ACTIONS(1256), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), - [sym_block_comment] = ACTIONS(3), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_identifier] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1260), - [anon_sym_macro_rules_BANG] = ACTIONS(1260), - [anon_sym_LPAREN] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_RBRACE] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_u8] = ACTIONS(1262), - [anon_sym_i8] = ACTIONS(1262), - [anon_sym_u16] = ACTIONS(1262), - [anon_sym_i16] = ACTIONS(1262), - [anon_sym_u32] = ACTIONS(1262), - [anon_sym_i32] = ACTIONS(1262), - [anon_sym_u64] = ACTIONS(1262), - [anon_sym_i64] = ACTIONS(1262), - [anon_sym_u128] = ACTIONS(1262), - [anon_sym_i128] = ACTIONS(1262), - [anon_sym_isize] = ACTIONS(1262), - [anon_sym_usize] = ACTIONS(1262), - [anon_sym_f32] = ACTIONS(1262), - [anon_sym_f64] = ACTIONS(1262), - [anon_sym_bool] = ACTIONS(1262), - [anon_sym_str] = ACTIONS(1262), - [anon_sym_char] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_async] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_default] = ACTIONS(1262), - [anon_sym_enum] = ACTIONS(1262), - [anon_sym_fn] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_impl] = ACTIONS(1262), - [anon_sym_let] = ACTIONS(1262), - [anon_sym_loop] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_mod] = ACTIONS(1262), - [anon_sym_pub] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_struct] = ACTIONS(1262), - [anon_sym_trait] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_union] = ACTIONS(1262), - [anon_sym_unsafe] = ACTIONS(1262), - [anon_sym_use] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_POUND] = ACTIONS(1260), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_COLON_COLON] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_DOT_DOT] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_yield] = ACTIONS(1262), - [anon_sym_move] = ACTIONS(1262), - [sym_integer_literal] = ACTIONS(1260), - [aux_sym_string_literal_token1] = ACTIONS(1260), - [sym_char_literal] = ACTIONS(1260), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1262), - [sym_super] = ACTIONS(1262), - [sym_crate] = ACTIONS(1262), - [sym_metavariable] = ACTIONS(1260), - [sym_raw_string_literal] = ACTIONS(1260), - [sym_float_literal] = ACTIONS(1260), - [sym_block_comment] = ACTIONS(3), - }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [sym_identifier] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1264), - [anon_sym_macro_rules_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_u8] = ACTIONS(1266), - [anon_sym_i8] = ACTIONS(1266), - [anon_sym_u16] = ACTIONS(1266), - [anon_sym_i16] = ACTIONS(1266), - [anon_sym_u32] = ACTIONS(1266), - [anon_sym_i32] = ACTIONS(1266), - [anon_sym_u64] = ACTIONS(1266), - [anon_sym_i64] = ACTIONS(1266), - [anon_sym_u128] = ACTIONS(1266), - [anon_sym_i128] = ACTIONS(1266), - [anon_sym_isize] = ACTIONS(1266), - [anon_sym_usize] = ACTIONS(1266), - [anon_sym_f32] = ACTIONS(1266), - [anon_sym_f64] = ACTIONS(1266), - [anon_sym_bool] = ACTIONS(1266), - [anon_sym_str] = ACTIONS(1266), - [anon_sym_char] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_async] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_fn] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_impl] = ACTIONS(1266), - [anon_sym_let] = ACTIONS(1266), - [anon_sym_loop] = ACTIONS(1266), - [anon_sym_match] = ACTIONS(1266), - [anon_sym_mod] = ACTIONS(1266), - [anon_sym_pub] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_trait] = ACTIONS(1266), - [anon_sym_type] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_unsafe] = ACTIONS(1266), - [anon_sym_use] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_POUND] = ACTIONS(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_COLON_COLON] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_DOT_DOT] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1266), - [anon_sym_move] = ACTIONS(1266), - [sym_integer_literal] = ACTIONS(1264), - [aux_sym_string_literal_token1] = ACTIONS(1264), - [sym_char_literal] = ACTIONS(1264), - [anon_sym_true] = ACTIONS(1266), - [anon_sym_false] = ACTIONS(1266), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1266), - [sym_super] = ACTIONS(1266), - [sym_crate] = ACTIONS(1266), - [sym_metavariable] = ACTIONS(1264), - [sym_raw_string_literal] = ACTIONS(1264), - [sym_float_literal] = ACTIONS(1264), - [sym_block_comment] = ACTIONS(3), - }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_macro_rules_BANG] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_u8] = ACTIONS(1270), - [anon_sym_i8] = ACTIONS(1270), - [anon_sym_u16] = ACTIONS(1270), - [anon_sym_i16] = ACTIONS(1270), - [anon_sym_u32] = ACTIONS(1270), - [anon_sym_i32] = ACTIONS(1270), - [anon_sym_u64] = ACTIONS(1270), - [anon_sym_i64] = ACTIONS(1270), - [anon_sym_u128] = ACTIONS(1270), - [anon_sym_i128] = ACTIONS(1270), - [anon_sym_isize] = ACTIONS(1270), - [anon_sym_usize] = ACTIONS(1270), - [anon_sym_f32] = ACTIONS(1270), - [anon_sym_f64] = ACTIONS(1270), - [anon_sym_bool] = ACTIONS(1270), - [anon_sym_str] = ACTIONS(1270), - [anon_sym_char] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_async] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_fn] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_impl] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_mod] = ACTIONS(1270), - [anon_sym_pub] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_trait] = ACTIONS(1270), - [anon_sym_type] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_POUND] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_LT] = ACTIONS(1268), - [anon_sym_COLON_COLON] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_move] = ACTIONS(1270), - [sym_integer_literal] = ACTIONS(1268), - [aux_sym_string_literal_token1] = ACTIONS(1268), - [sym_char_literal] = ACTIONS(1268), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1270), - [sym_super] = ACTIONS(1270), - [sym_crate] = ACTIONS(1270), - [sym_metavariable] = ACTIONS(1268), - [sym_raw_string_literal] = ACTIONS(1268), - [sym_float_literal] = ACTIONS(1268), - [sym_block_comment] = ACTIONS(3), - }, - [300] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_macro_rules_BANG] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_u8] = ACTIONS(1274), - [anon_sym_i8] = ACTIONS(1274), - [anon_sym_u16] = ACTIONS(1274), - [anon_sym_i16] = ACTIONS(1274), - [anon_sym_u32] = ACTIONS(1274), - [anon_sym_i32] = ACTIONS(1274), - [anon_sym_u64] = ACTIONS(1274), - [anon_sym_i64] = ACTIONS(1274), - [anon_sym_u128] = ACTIONS(1274), - [anon_sym_i128] = ACTIONS(1274), - [anon_sym_isize] = ACTIONS(1274), - [anon_sym_usize] = ACTIONS(1274), - [anon_sym_f32] = ACTIONS(1274), - [anon_sym_f64] = ACTIONS(1274), - [anon_sym_bool] = ACTIONS(1274), - [anon_sym_str] = ACTIONS(1274), - [anon_sym_char] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_async] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_fn] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_impl] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_mod] = ACTIONS(1274), - [anon_sym_pub] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_trait] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_unsafe] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_POUND] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_COLON_COLON] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_yield] = ACTIONS(1274), - [anon_sym_move] = ACTIONS(1274), - [sym_integer_literal] = ACTIONS(1272), - [aux_sym_string_literal_token1] = ACTIONS(1272), - [sym_char_literal] = ACTIONS(1272), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = ACTIONS(1274), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1274), - [sym_super] = ACTIONS(1274), - [sym_crate] = ACTIONS(1274), - [sym_metavariable] = ACTIONS(1272), - [sym_raw_string_literal] = ACTIONS(1272), - [sym_float_literal] = ACTIONS(1272), - [sym_block_comment] = ACTIONS(3), - }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_macro_rules_BANG] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_u8] = ACTIONS(1278), - [anon_sym_i8] = ACTIONS(1278), - [anon_sym_u16] = ACTIONS(1278), - [anon_sym_i16] = ACTIONS(1278), - [anon_sym_u32] = ACTIONS(1278), - [anon_sym_i32] = ACTIONS(1278), - [anon_sym_u64] = ACTIONS(1278), - [anon_sym_i64] = ACTIONS(1278), - [anon_sym_u128] = ACTIONS(1278), - [anon_sym_i128] = ACTIONS(1278), - [anon_sym_isize] = ACTIONS(1278), - [anon_sym_usize] = ACTIONS(1278), - [anon_sym_f32] = ACTIONS(1278), - [anon_sym_f64] = ACTIONS(1278), - [anon_sym_bool] = ACTIONS(1278), - [anon_sym_str] = ACTIONS(1278), - [anon_sym_char] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_fn] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_impl] = ACTIONS(1278), - [anon_sym_let] = ACTIONS(1278), - [anon_sym_loop] = ACTIONS(1278), - [anon_sym_match] = ACTIONS(1278), - [anon_sym_mod] = ACTIONS(1278), - [anon_sym_pub] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_trait] = ACTIONS(1278), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_unsafe] = ACTIONS(1278), - [anon_sym_use] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_POUND] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_COLON_COLON] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_yield] = ACTIONS(1278), - [anon_sym_move] = ACTIONS(1278), - [sym_integer_literal] = ACTIONS(1276), - [aux_sym_string_literal_token1] = ACTIONS(1276), - [sym_char_literal] = ACTIONS(1276), - [anon_sym_true] = ACTIONS(1278), - [anon_sym_false] = ACTIONS(1278), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1278), - [sym_super] = ACTIONS(1278), - [sym_crate] = ACTIONS(1278), - [sym_metavariable] = ACTIONS(1276), - [sym_raw_string_literal] = ACTIONS(1276), - [sym_float_literal] = ACTIONS(1276), - [sym_block_comment] = ACTIONS(3), - }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym_macro_rules_BANG] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_u8] = ACTIONS(1282), - [anon_sym_i8] = ACTIONS(1282), - [anon_sym_u16] = ACTIONS(1282), - [anon_sym_i16] = ACTIONS(1282), - [anon_sym_u32] = ACTIONS(1282), - [anon_sym_i32] = ACTIONS(1282), - [anon_sym_u64] = ACTIONS(1282), - [anon_sym_i64] = ACTIONS(1282), - [anon_sym_u128] = ACTIONS(1282), - [anon_sym_i128] = ACTIONS(1282), - [anon_sym_isize] = ACTIONS(1282), - [anon_sym_usize] = ACTIONS(1282), - [anon_sym_f32] = ACTIONS(1282), - [anon_sym_f64] = ACTIONS(1282), - [anon_sym_bool] = ACTIONS(1282), - [anon_sym_str] = ACTIONS(1282), - [anon_sym_char] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_async] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_fn] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_impl] = ACTIONS(1282), - [anon_sym_let] = ACTIONS(1282), - [anon_sym_loop] = ACTIONS(1282), - [anon_sym_match] = ACTIONS(1282), - [anon_sym_mod] = ACTIONS(1282), - [anon_sym_pub] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_trait] = ACTIONS(1282), - [anon_sym_type] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_unsafe] = ACTIONS(1282), - [anon_sym_use] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym_LT] = ACTIONS(1280), - [anon_sym_COLON_COLON] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_DOT_DOT] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PIPE] = ACTIONS(1280), - [anon_sym_yield] = ACTIONS(1282), - [anon_sym_move] = ACTIONS(1282), - [sym_integer_literal] = ACTIONS(1280), - [aux_sym_string_literal_token1] = ACTIONS(1280), - [sym_char_literal] = ACTIONS(1280), - [anon_sym_true] = ACTIONS(1282), - [anon_sym_false] = ACTIONS(1282), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1282), - [sym_super] = ACTIONS(1282), - [sym_crate] = ACTIONS(1282), - [sym_metavariable] = ACTIONS(1280), - [sym_raw_string_literal] = ACTIONS(1280), - [sym_float_literal] = ACTIONS(1280), - [sym_block_comment] = ACTIONS(3), - }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym_macro_rules_BANG] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_u8] = ACTIONS(1286), - [anon_sym_i8] = ACTIONS(1286), - [anon_sym_u16] = ACTIONS(1286), - [anon_sym_i16] = ACTIONS(1286), - [anon_sym_u32] = ACTIONS(1286), - [anon_sym_i32] = ACTIONS(1286), - [anon_sym_u64] = ACTIONS(1286), - [anon_sym_i64] = ACTIONS(1286), - [anon_sym_u128] = ACTIONS(1286), - [anon_sym_i128] = ACTIONS(1286), - [anon_sym_isize] = ACTIONS(1286), - [anon_sym_usize] = ACTIONS(1286), - [anon_sym_f32] = ACTIONS(1286), - [anon_sym_f64] = ACTIONS(1286), - [anon_sym_bool] = ACTIONS(1286), - [anon_sym_str] = ACTIONS(1286), - [anon_sym_char] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_fn] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_impl] = ACTIONS(1286), - [anon_sym_let] = ACTIONS(1286), - [anon_sym_loop] = ACTIONS(1286), - [anon_sym_match] = ACTIONS(1286), - [anon_sym_mod] = ACTIONS(1286), - [anon_sym_pub] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_trait] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_unsafe] = ACTIONS(1286), - [anon_sym_use] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1284), - [anon_sym_COLON_COLON] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_DOT_DOT] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PIPE] = ACTIONS(1284), - [anon_sym_yield] = ACTIONS(1286), - [anon_sym_move] = ACTIONS(1286), - [sym_integer_literal] = ACTIONS(1284), - [aux_sym_string_literal_token1] = ACTIONS(1284), - [sym_char_literal] = ACTIONS(1284), - [anon_sym_true] = ACTIONS(1286), - [anon_sym_false] = ACTIONS(1286), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1286), - [sym_super] = ACTIONS(1286), - [sym_crate] = ACTIONS(1286), - [sym_metavariable] = ACTIONS(1284), - [sym_raw_string_literal] = ACTIONS(1284), - [sym_float_literal] = ACTIONS(1284), - [sym_block_comment] = ACTIONS(3), - }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_macro_rules_BANG] = ACTIONS(1288), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_u8] = ACTIONS(1290), - [anon_sym_i8] = ACTIONS(1290), - [anon_sym_u16] = ACTIONS(1290), - [anon_sym_i16] = ACTIONS(1290), - [anon_sym_u32] = ACTIONS(1290), - [anon_sym_i32] = ACTIONS(1290), - [anon_sym_u64] = ACTIONS(1290), - [anon_sym_i64] = ACTIONS(1290), - [anon_sym_u128] = ACTIONS(1290), - [anon_sym_i128] = ACTIONS(1290), - [anon_sym_isize] = ACTIONS(1290), - [anon_sym_usize] = ACTIONS(1290), - [anon_sym_f32] = ACTIONS(1290), - [anon_sym_f64] = ACTIONS(1290), - [anon_sym_bool] = ACTIONS(1290), - [anon_sym_str] = ACTIONS(1290), - [anon_sym_char] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_async] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_fn] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_impl] = ACTIONS(1290), - [anon_sym_let] = ACTIONS(1290), - [anon_sym_loop] = ACTIONS(1290), - [anon_sym_match] = ACTIONS(1290), - [anon_sym_mod] = ACTIONS(1290), - [anon_sym_pub] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_trait] = ACTIONS(1290), - [anon_sym_type] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_unsafe] = ACTIONS(1290), - [anon_sym_use] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_POUND] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(1288), - [anon_sym_COLON_COLON] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1288), - [anon_sym_yield] = ACTIONS(1290), - [anon_sym_move] = ACTIONS(1290), - [sym_integer_literal] = ACTIONS(1288), - [aux_sym_string_literal_token1] = ACTIONS(1288), - [sym_char_literal] = ACTIONS(1288), - [anon_sym_true] = ACTIONS(1290), - [anon_sym_false] = ACTIONS(1290), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1290), - [sym_super] = ACTIONS(1290), - [sym_crate] = ACTIONS(1290), - [sym_metavariable] = ACTIONS(1288), - [sym_raw_string_literal] = ACTIONS(1288), - [sym_float_literal] = ACTIONS(1288), - [sym_block_comment] = ACTIONS(3), - }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_macro_rules_BANG] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_u8] = ACTIONS(1294), - [anon_sym_i8] = ACTIONS(1294), - [anon_sym_u16] = ACTIONS(1294), - [anon_sym_i16] = ACTIONS(1294), - [anon_sym_u32] = ACTIONS(1294), - [anon_sym_i32] = ACTIONS(1294), - [anon_sym_u64] = ACTIONS(1294), - [anon_sym_i64] = ACTIONS(1294), - [anon_sym_u128] = ACTIONS(1294), - [anon_sym_i128] = ACTIONS(1294), - [anon_sym_isize] = ACTIONS(1294), - [anon_sym_usize] = ACTIONS(1294), - [anon_sym_f32] = ACTIONS(1294), - [anon_sym_f64] = ACTIONS(1294), - [anon_sym_bool] = ACTIONS(1294), - [anon_sym_str] = ACTIONS(1294), - [anon_sym_char] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_async] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_impl] = ACTIONS(1294), - [anon_sym_let] = ACTIONS(1294), - [anon_sym_loop] = ACTIONS(1294), - [anon_sym_match] = ACTIONS(1294), - [anon_sym_mod] = ACTIONS(1294), - [anon_sym_pub] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_trait] = ACTIONS(1294), - [anon_sym_type] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_unsafe] = ACTIONS(1294), - [anon_sym_use] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_POUND] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_COLON_COLON] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_DOT_DOT] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_yield] = ACTIONS(1294), - [anon_sym_move] = ACTIONS(1294), - [sym_integer_literal] = ACTIONS(1292), - [aux_sym_string_literal_token1] = ACTIONS(1292), - [sym_char_literal] = ACTIONS(1292), - [anon_sym_true] = ACTIONS(1294), - [anon_sym_false] = ACTIONS(1294), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1294), - [sym_super] = ACTIONS(1294), - [sym_crate] = ACTIONS(1294), - [sym_metavariable] = ACTIONS(1292), - [sym_raw_string_literal] = ACTIONS(1292), - [sym_float_literal] = ACTIONS(1292), - [sym_block_comment] = ACTIONS(3), - }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_identifier] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_macro_rules_BANG] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_LBRACK] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_u8] = ACTIONS(1298), - [anon_sym_i8] = ACTIONS(1298), - [anon_sym_u16] = ACTIONS(1298), - [anon_sym_i16] = ACTIONS(1298), - [anon_sym_u32] = ACTIONS(1298), - [anon_sym_i32] = ACTIONS(1298), - [anon_sym_u64] = ACTIONS(1298), - [anon_sym_i64] = ACTIONS(1298), - [anon_sym_u128] = ACTIONS(1298), - [anon_sym_i128] = ACTIONS(1298), - [anon_sym_isize] = ACTIONS(1298), - [anon_sym_usize] = ACTIONS(1298), - [anon_sym_f32] = ACTIONS(1298), - [anon_sym_f64] = ACTIONS(1298), - [anon_sym_bool] = ACTIONS(1298), - [anon_sym_str] = ACTIONS(1298), - [anon_sym_char] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_async] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_fn] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_let] = ACTIONS(1298), - [anon_sym_loop] = ACTIONS(1298), - [anon_sym_match] = ACTIONS(1298), - [anon_sym_mod] = ACTIONS(1298), - [anon_sym_pub] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_trait] = ACTIONS(1298), - [anon_sym_type] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_unsafe] = ACTIONS(1298), - [anon_sym_use] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_COLON_COLON] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_DOT_DOT] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_move] = ACTIONS(1298), - [sym_integer_literal] = ACTIONS(1296), - [aux_sym_string_literal_token1] = ACTIONS(1296), - [sym_char_literal] = ACTIONS(1296), - [anon_sym_true] = ACTIONS(1298), - [anon_sym_false] = ACTIONS(1298), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1298), - [sym_super] = ACTIONS(1298), - [sym_crate] = ACTIONS(1298), - [sym_metavariable] = ACTIONS(1296), - [sym_raw_string_literal] = ACTIONS(1296), - [sym_float_literal] = ACTIONS(1296), - [sym_block_comment] = ACTIONS(3), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym_macro_rules_BANG] = ACTIONS(1300), - [anon_sym_LPAREN] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_u8] = ACTIONS(1302), - [anon_sym_i8] = ACTIONS(1302), - [anon_sym_u16] = ACTIONS(1302), - [anon_sym_i16] = ACTIONS(1302), - [anon_sym_u32] = ACTIONS(1302), - [anon_sym_i32] = ACTIONS(1302), - [anon_sym_u64] = ACTIONS(1302), - [anon_sym_i64] = ACTIONS(1302), - [anon_sym_u128] = ACTIONS(1302), - [anon_sym_i128] = ACTIONS(1302), - [anon_sym_isize] = ACTIONS(1302), - [anon_sym_usize] = ACTIONS(1302), - [anon_sym_f32] = ACTIONS(1302), - [anon_sym_f64] = ACTIONS(1302), - [anon_sym_bool] = ACTIONS(1302), - [anon_sym_str] = ACTIONS(1302), - [anon_sym_char] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_async] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_fn] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_impl] = ACTIONS(1302), - [anon_sym_let] = ACTIONS(1302), - [anon_sym_loop] = ACTIONS(1302), - [anon_sym_match] = ACTIONS(1302), - [anon_sym_mod] = ACTIONS(1302), - [anon_sym_pub] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_trait] = ACTIONS(1302), - [anon_sym_type] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_unsafe] = ACTIONS(1302), - [anon_sym_use] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_POUND] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_LT] = ACTIONS(1300), - [anon_sym_COLON_COLON] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_DOT_DOT] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PIPE] = ACTIONS(1300), - [anon_sym_yield] = ACTIONS(1302), - [anon_sym_move] = ACTIONS(1302), - [sym_integer_literal] = ACTIONS(1300), - [aux_sym_string_literal_token1] = ACTIONS(1300), - [sym_char_literal] = ACTIONS(1300), - [anon_sym_true] = ACTIONS(1302), - [anon_sym_false] = ACTIONS(1302), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1302), - [sym_super] = ACTIONS(1302), - [sym_crate] = ACTIONS(1302), - [sym_metavariable] = ACTIONS(1300), - [sym_raw_string_literal] = ACTIONS(1300), - [sym_float_literal] = ACTIONS(1300), - [sym_block_comment] = ACTIONS(3), - }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_macro_rules_BANG] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_u8] = ACTIONS(1306), - [anon_sym_i8] = ACTIONS(1306), - [anon_sym_u16] = ACTIONS(1306), - [anon_sym_i16] = ACTIONS(1306), - [anon_sym_u32] = ACTIONS(1306), - [anon_sym_i32] = ACTIONS(1306), - [anon_sym_u64] = ACTIONS(1306), - [anon_sym_i64] = ACTIONS(1306), - [anon_sym_u128] = ACTIONS(1306), - [anon_sym_i128] = ACTIONS(1306), - [anon_sym_isize] = ACTIONS(1306), - [anon_sym_usize] = ACTIONS(1306), - [anon_sym_f32] = ACTIONS(1306), - [anon_sym_f64] = ACTIONS(1306), - [anon_sym_bool] = ACTIONS(1306), - [anon_sym_str] = ACTIONS(1306), - [anon_sym_char] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_async] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_fn] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_impl] = ACTIONS(1306), - [anon_sym_let] = ACTIONS(1306), - [anon_sym_loop] = ACTIONS(1306), - [anon_sym_match] = ACTIONS(1306), - [anon_sym_mod] = ACTIONS(1306), - [anon_sym_pub] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_trait] = ACTIONS(1306), - [anon_sym_type] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_unsafe] = ACTIONS(1306), - [anon_sym_use] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym_LT] = ACTIONS(1304), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_DOT_DOT] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1304), - [anon_sym_yield] = ACTIONS(1306), - [anon_sym_move] = ACTIONS(1306), - [sym_integer_literal] = ACTIONS(1304), - [aux_sym_string_literal_token1] = ACTIONS(1304), - [sym_char_literal] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1306), - [anon_sym_false] = ACTIONS(1306), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1306), - [sym_super] = ACTIONS(1306), - [sym_crate] = ACTIONS(1306), - [sym_metavariable] = ACTIONS(1304), - [sym_raw_string_literal] = ACTIONS(1304), - [sym_float_literal] = ACTIONS(1304), - [sym_block_comment] = ACTIONS(3), - }, - [309] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_macro_rules_BANG] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_u8] = ACTIONS(1310), - [anon_sym_i8] = ACTIONS(1310), - [anon_sym_u16] = ACTIONS(1310), - [anon_sym_i16] = ACTIONS(1310), - [anon_sym_u32] = ACTIONS(1310), - [anon_sym_i32] = ACTIONS(1310), - [anon_sym_u64] = ACTIONS(1310), - [anon_sym_i64] = ACTIONS(1310), - [anon_sym_u128] = ACTIONS(1310), - [anon_sym_i128] = ACTIONS(1310), - [anon_sym_isize] = ACTIONS(1310), - [anon_sym_usize] = ACTIONS(1310), - [anon_sym_f32] = ACTIONS(1310), - [anon_sym_f64] = ACTIONS(1310), - [anon_sym_bool] = ACTIONS(1310), - [anon_sym_str] = ACTIONS(1310), - [anon_sym_char] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_fn] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_impl] = ACTIONS(1310), - [anon_sym_let] = ACTIONS(1310), - [anon_sym_loop] = ACTIONS(1310), - [anon_sym_match] = ACTIONS(1310), - [anon_sym_mod] = ACTIONS(1310), - [anon_sym_pub] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_trait] = ACTIONS(1310), - [anon_sym_type] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_unsafe] = ACTIONS(1310), - [anon_sym_use] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_POUND] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_COLON_COLON] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_DOT_DOT] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_yield] = ACTIONS(1310), - [anon_sym_move] = ACTIONS(1310), - [sym_integer_literal] = ACTIONS(1308), - [aux_sym_string_literal_token1] = ACTIONS(1308), - [sym_char_literal] = ACTIONS(1308), - [anon_sym_true] = ACTIONS(1310), - [anon_sym_false] = ACTIONS(1310), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1310), - [sym_super] = ACTIONS(1310), - [sym_crate] = ACTIONS(1310), - [sym_metavariable] = ACTIONS(1308), - [sym_raw_string_literal] = ACTIONS(1308), - [sym_float_literal] = ACTIONS(1308), - [sym_block_comment] = ACTIONS(3), - }, - [310] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_macro_rules_BANG] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_POUND] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_DOT_DOT] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_yield] = ACTIONS(1314), - [anon_sym_move] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1312), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1312), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_metavariable] = ACTIONS(1312), - [sym_raw_string_literal] = ACTIONS(1312), - [sym_float_literal] = ACTIONS(1312), - [sym_block_comment] = ACTIONS(3), - }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_macro_rules_BANG] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1318), - [anon_sym_i8] = ACTIONS(1318), - [anon_sym_u16] = ACTIONS(1318), - [anon_sym_i16] = ACTIONS(1318), - [anon_sym_u32] = ACTIONS(1318), - [anon_sym_i32] = ACTIONS(1318), - [anon_sym_u64] = ACTIONS(1318), - [anon_sym_i64] = ACTIONS(1318), - [anon_sym_u128] = ACTIONS(1318), - [anon_sym_i128] = ACTIONS(1318), - [anon_sym_isize] = ACTIONS(1318), - [anon_sym_usize] = ACTIONS(1318), - [anon_sym_f32] = ACTIONS(1318), - [anon_sym_f64] = ACTIONS(1318), - [anon_sym_bool] = ACTIONS(1318), - [anon_sym_str] = ACTIONS(1318), - [anon_sym_char] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_async] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_fn] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_impl] = ACTIONS(1318), - [anon_sym_let] = ACTIONS(1318), - [anon_sym_loop] = ACTIONS(1318), - [anon_sym_match] = ACTIONS(1318), - [anon_sym_mod] = ACTIONS(1318), - [anon_sym_pub] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_trait] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_unsafe] = ACTIONS(1318), - [anon_sym_use] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_DOT_DOT] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_yield] = ACTIONS(1318), - [anon_sym_move] = ACTIONS(1318), - [sym_integer_literal] = ACTIONS(1316), - [aux_sym_string_literal_token1] = ACTIONS(1316), - [sym_char_literal] = ACTIONS(1316), - [anon_sym_true] = ACTIONS(1318), - [anon_sym_false] = ACTIONS(1318), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1316), - [sym_raw_string_literal] = ACTIONS(1316), - [sym_float_literal] = ACTIONS(1316), - [sym_block_comment] = ACTIONS(3), - }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym_macro_rules_BANG] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_u8] = ACTIONS(1322), - [anon_sym_i8] = ACTIONS(1322), - [anon_sym_u16] = ACTIONS(1322), - [anon_sym_i16] = ACTIONS(1322), - [anon_sym_u32] = ACTIONS(1322), - [anon_sym_i32] = ACTIONS(1322), - [anon_sym_u64] = ACTIONS(1322), - [anon_sym_i64] = ACTIONS(1322), - [anon_sym_u128] = ACTIONS(1322), - [anon_sym_i128] = ACTIONS(1322), - [anon_sym_isize] = ACTIONS(1322), - [anon_sym_usize] = ACTIONS(1322), - [anon_sym_f32] = ACTIONS(1322), - [anon_sym_f64] = ACTIONS(1322), - [anon_sym_bool] = ACTIONS(1322), - [anon_sym_str] = ACTIONS(1322), - [anon_sym_char] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_async] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_fn] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_impl] = ACTIONS(1322), - [anon_sym_let] = ACTIONS(1322), - [anon_sym_loop] = ACTIONS(1322), - [anon_sym_match] = ACTIONS(1322), - [anon_sym_mod] = ACTIONS(1322), - [anon_sym_pub] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_trait] = ACTIONS(1322), - [anon_sym_type] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_unsafe] = ACTIONS(1322), - [anon_sym_use] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_POUND] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_COLON_COLON] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_DOT_DOT] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_yield] = ACTIONS(1322), - [anon_sym_move] = ACTIONS(1322), - [sym_integer_literal] = ACTIONS(1320), - [aux_sym_string_literal_token1] = ACTIONS(1320), - [sym_char_literal] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1322), - [sym_super] = ACTIONS(1322), - [sym_crate] = ACTIONS(1322), - [sym_metavariable] = ACTIONS(1320), - [sym_raw_string_literal] = ACTIONS(1320), - [sym_float_literal] = ACTIONS(1320), - [sym_block_comment] = ACTIONS(3), - }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_macro_rules_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u128] = ACTIONS(1326), - [anon_sym_i128] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_str] = ACTIONS(1326), - [anon_sym_char] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_fn] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_impl] = ACTIONS(1326), - [anon_sym_let] = ACTIONS(1326), - [anon_sym_loop] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [anon_sym_mod] = ACTIONS(1326), - [anon_sym_pub] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_unsafe] = ACTIONS(1326), - [anon_sym_use] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_DOT_DOT] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_move] = ACTIONS(1326), - [sym_integer_literal] = ACTIONS(1324), - [aux_sym_string_literal_token1] = ACTIONS(1324), - [sym_char_literal] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1326), - [sym_super] = ACTIONS(1326), - [sym_crate] = ACTIONS(1326), - [sym_metavariable] = ACTIONS(1324), - [sym_raw_string_literal] = ACTIONS(1324), - [sym_float_literal] = ACTIONS(1324), - [sym_block_comment] = ACTIONS(3), - }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_macro_rules_BANG] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_u8] = ACTIONS(1330), - [anon_sym_i8] = ACTIONS(1330), - [anon_sym_u16] = ACTIONS(1330), - [anon_sym_i16] = ACTIONS(1330), - [anon_sym_u32] = ACTIONS(1330), - [anon_sym_i32] = ACTIONS(1330), - [anon_sym_u64] = ACTIONS(1330), - [anon_sym_i64] = ACTIONS(1330), - [anon_sym_u128] = ACTIONS(1330), - [anon_sym_i128] = ACTIONS(1330), - [anon_sym_isize] = ACTIONS(1330), - [anon_sym_usize] = ACTIONS(1330), - [anon_sym_f32] = ACTIONS(1330), - [anon_sym_f64] = ACTIONS(1330), - [anon_sym_bool] = ACTIONS(1330), - [anon_sym_str] = ACTIONS(1330), - [anon_sym_char] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_fn] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_impl] = ACTIONS(1330), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_loop] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [anon_sym_mod] = ACTIONS(1330), - [anon_sym_pub] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_unsafe] = ACTIONS(1330), - [anon_sym_use] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_POUND] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_DOT_DOT] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_yield] = ACTIONS(1330), - [anon_sym_move] = ACTIONS(1330), - [sym_integer_literal] = ACTIONS(1328), - [aux_sym_string_literal_token1] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1330), - [sym_super] = ACTIONS(1330), - [sym_crate] = ACTIONS(1330), - [sym_metavariable] = ACTIONS(1328), - [sym_raw_string_literal] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1328), - [sym_block_comment] = ACTIONS(3), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_macro_rules_BANG] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_u8] = ACTIONS(1334), - [anon_sym_i8] = ACTIONS(1334), - [anon_sym_u16] = ACTIONS(1334), - [anon_sym_i16] = ACTIONS(1334), - [anon_sym_u32] = ACTIONS(1334), - [anon_sym_i32] = ACTIONS(1334), - [anon_sym_u64] = ACTIONS(1334), - [anon_sym_i64] = ACTIONS(1334), - [anon_sym_u128] = ACTIONS(1334), - [anon_sym_i128] = ACTIONS(1334), - [anon_sym_isize] = ACTIONS(1334), - [anon_sym_usize] = ACTIONS(1334), - [anon_sym_f32] = ACTIONS(1334), - [anon_sym_f64] = ACTIONS(1334), - [anon_sym_bool] = ACTIONS(1334), - [anon_sym_str] = ACTIONS(1334), - [anon_sym_char] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_async] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_fn] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_impl] = ACTIONS(1334), - [anon_sym_let] = ACTIONS(1334), - [anon_sym_loop] = ACTIONS(1334), - [anon_sym_match] = ACTIONS(1334), - [anon_sym_mod] = ACTIONS(1334), - [anon_sym_pub] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_trait] = ACTIONS(1334), - [anon_sym_type] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_unsafe] = ACTIONS(1334), - [anon_sym_use] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_POUND] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_COLON_COLON] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_DOT_DOT] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_yield] = ACTIONS(1334), - [anon_sym_move] = ACTIONS(1334), - [sym_integer_literal] = ACTIONS(1332), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1332), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1334), - [sym_super] = ACTIONS(1334), - [sym_crate] = ACTIONS(1334), - [sym_metavariable] = ACTIONS(1332), - [sym_raw_string_literal] = ACTIONS(1332), - [sym_float_literal] = ACTIONS(1332), - [sym_block_comment] = ACTIONS(3), - }, - [316] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym_macro_rules_BANG] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_async] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_impl] = ACTIONS(1338), - [anon_sym_let] = ACTIONS(1338), - [anon_sym_loop] = ACTIONS(1338), - [anon_sym_match] = ACTIONS(1338), - [anon_sym_mod] = ACTIONS(1338), - [anon_sym_pub] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_trait] = ACTIONS(1338), - [anon_sym_type] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_unsafe] = ACTIONS(1338), - [anon_sym_use] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_POUND] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym_LT] = ACTIONS(1336), - [anon_sym_COLON_COLON] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_yield] = ACTIONS(1338), - [anon_sym_move] = ACTIONS(1338), - [sym_integer_literal] = ACTIONS(1336), - [aux_sym_string_literal_token1] = ACTIONS(1336), - [sym_char_literal] = ACTIONS(1336), - [anon_sym_true] = ACTIONS(1338), - [anon_sym_false] = ACTIONS(1338), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1338), - [sym_super] = ACTIONS(1338), - [sym_crate] = ACTIONS(1338), - [sym_metavariable] = ACTIONS(1336), - [sym_raw_string_literal] = ACTIONS(1336), - [sym_float_literal] = ACTIONS(1336), - [sym_block_comment] = ACTIONS(3), - }, - [317] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym_macro_rules_BANG] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_u8] = ACTIONS(1342), - [anon_sym_i8] = ACTIONS(1342), - [anon_sym_u16] = ACTIONS(1342), - [anon_sym_i16] = ACTIONS(1342), - [anon_sym_u32] = ACTIONS(1342), - [anon_sym_i32] = ACTIONS(1342), - [anon_sym_u64] = ACTIONS(1342), - [anon_sym_i64] = ACTIONS(1342), - [anon_sym_u128] = ACTIONS(1342), - [anon_sym_i128] = ACTIONS(1342), - [anon_sym_isize] = ACTIONS(1342), - [anon_sym_usize] = ACTIONS(1342), - [anon_sym_f32] = ACTIONS(1342), - [anon_sym_f64] = ACTIONS(1342), - [anon_sym_bool] = ACTIONS(1342), - [anon_sym_str] = ACTIONS(1342), - [anon_sym_char] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_async] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_impl] = ACTIONS(1342), - [anon_sym_let] = ACTIONS(1342), - [anon_sym_loop] = ACTIONS(1342), - [anon_sym_match] = ACTIONS(1342), - [anon_sym_mod] = ACTIONS(1342), - [anon_sym_pub] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_trait] = ACTIONS(1342), - [anon_sym_type] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_unsafe] = ACTIONS(1342), - [anon_sym_use] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_POUND] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_COLON_COLON] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_DOT_DOT] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_yield] = ACTIONS(1342), - [anon_sym_move] = ACTIONS(1342), - [sym_integer_literal] = ACTIONS(1340), - [aux_sym_string_literal_token1] = ACTIONS(1340), - [sym_char_literal] = ACTIONS(1340), - [anon_sym_true] = ACTIONS(1342), - [anon_sym_false] = ACTIONS(1342), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1342), - [sym_super] = ACTIONS(1342), - [sym_crate] = ACTIONS(1342), - [sym_metavariable] = ACTIONS(1340), - [sym_raw_string_literal] = ACTIONS(1340), - [sym_float_literal] = ACTIONS(1340), - [sym_block_comment] = ACTIONS(3), - }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym_macro_rules_BANG] = ACTIONS(1344), - [anon_sym_LPAREN] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_u8] = ACTIONS(1346), - [anon_sym_i8] = ACTIONS(1346), - [anon_sym_u16] = ACTIONS(1346), - [anon_sym_i16] = ACTIONS(1346), - [anon_sym_u32] = ACTIONS(1346), - [anon_sym_i32] = ACTIONS(1346), - [anon_sym_u64] = ACTIONS(1346), - [anon_sym_i64] = ACTIONS(1346), - [anon_sym_u128] = ACTIONS(1346), - [anon_sym_i128] = ACTIONS(1346), - [anon_sym_isize] = ACTIONS(1346), - [anon_sym_usize] = ACTIONS(1346), - [anon_sym_f32] = ACTIONS(1346), - [anon_sym_f64] = ACTIONS(1346), - [anon_sym_bool] = ACTIONS(1346), - [anon_sym_str] = ACTIONS(1346), - [anon_sym_char] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_fn] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_impl] = ACTIONS(1346), - [anon_sym_let] = ACTIONS(1346), - [anon_sym_loop] = ACTIONS(1346), - [anon_sym_match] = ACTIONS(1346), - [anon_sym_mod] = ACTIONS(1346), - [anon_sym_pub] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_trait] = ACTIONS(1346), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_unsafe] = ACTIONS(1346), - [anon_sym_use] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym_LT] = ACTIONS(1344), - [anon_sym_COLON_COLON] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_DOT_DOT] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PIPE] = ACTIONS(1344), - [anon_sym_yield] = ACTIONS(1346), - [anon_sym_move] = ACTIONS(1346), - [sym_integer_literal] = ACTIONS(1344), - [aux_sym_string_literal_token1] = ACTIONS(1344), - [sym_char_literal] = ACTIONS(1344), - [anon_sym_true] = ACTIONS(1346), - [anon_sym_false] = ACTIONS(1346), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1346), - [sym_super] = ACTIONS(1346), - [sym_crate] = ACTIONS(1346), - [sym_metavariable] = ACTIONS(1344), - [sym_raw_string_literal] = ACTIONS(1344), - [sym_float_literal] = ACTIONS(1344), - [sym_block_comment] = ACTIONS(3), - }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym_macro_rules_BANG] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_u8] = ACTIONS(1350), - [anon_sym_i8] = ACTIONS(1350), - [anon_sym_u16] = ACTIONS(1350), - [anon_sym_i16] = ACTIONS(1350), - [anon_sym_u32] = ACTIONS(1350), - [anon_sym_i32] = ACTIONS(1350), - [anon_sym_u64] = ACTIONS(1350), - [anon_sym_i64] = ACTIONS(1350), - [anon_sym_u128] = ACTIONS(1350), - [anon_sym_i128] = ACTIONS(1350), - [anon_sym_isize] = ACTIONS(1350), - [anon_sym_usize] = ACTIONS(1350), - [anon_sym_f32] = ACTIONS(1350), - [anon_sym_f64] = ACTIONS(1350), - [anon_sym_bool] = ACTIONS(1350), - [anon_sym_str] = ACTIONS(1350), - [anon_sym_char] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_fn] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_impl] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_mod] = ACTIONS(1350), - [anon_sym_pub] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_trait] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_POUND] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1348), - [anon_sym_COLON_COLON] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PIPE] = ACTIONS(1348), - [anon_sym_yield] = ACTIONS(1350), - [anon_sym_move] = ACTIONS(1350), - [sym_integer_literal] = ACTIONS(1348), - [aux_sym_string_literal_token1] = ACTIONS(1348), - [sym_char_literal] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1350), - [anon_sym_false] = ACTIONS(1350), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1350), - [sym_super] = ACTIONS(1350), - [sym_crate] = ACTIONS(1350), - [sym_metavariable] = ACTIONS(1348), - [sym_raw_string_literal] = ACTIONS(1348), - [sym_float_literal] = ACTIONS(1348), - [sym_block_comment] = ACTIONS(3), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym_macro_rules_BANG] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_u8] = ACTIONS(1354), - [anon_sym_i8] = ACTIONS(1354), - [anon_sym_u16] = ACTIONS(1354), - [anon_sym_i16] = ACTIONS(1354), - [anon_sym_u32] = ACTIONS(1354), - [anon_sym_i32] = ACTIONS(1354), - [anon_sym_u64] = ACTIONS(1354), - [anon_sym_i64] = ACTIONS(1354), - [anon_sym_u128] = ACTIONS(1354), - [anon_sym_i128] = ACTIONS(1354), - [anon_sym_isize] = ACTIONS(1354), - [anon_sym_usize] = ACTIONS(1354), - [anon_sym_f32] = ACTIONS(1354), - [anon_sym_f64] = ACTIONS(1354), - [anon_sym_bool] = ACTIONS(1354), - [anon_sym_str] = ACTIONS(1354), - [anon_sym_char] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_async] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_fn] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_impl] = ACTIONS(1354), - [anon_sym_let] = ACTIONS(1354), - [anon_sym_loop] = ACTIONS(1354), - [anon_sym_match] = ACTIONS(1354), - [anon_sym_mod] = ACTIONS(1354), - [anon_sym_pub] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_trait] = ACTIONS(1354), - [anon_sym_type] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_unsafe] = ACTIONS(1354), - [anon_sym_use] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_POUND] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_COLON_COLON] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_DOT_DOT] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(1354), - [anon_sym_move] = ACTIONS(1354), - [sym_integer_literal] = ACTIONS(1352), - [aux_sym_string_literal_token1] = ACTIONS(1352), - [sym_char_literal] = ACTIONS(1352), - [anon_sym_true] = ACTIONS(1354), - [anon_sym_false] = ACTIONS(1354), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1352), - [sym_float_literal] = ACTIONS(1352), - [sym_block_comment] = ACTIONS(3), - }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_macro_rules_BANG] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_u8] = ACTIONS(1358), - [anon_sym_i8] = ACTIONS(1358), - [anon_sym_u16] = ACTIONS(1358), - [anon_sym_i16] = ACTIONS(1358), - [anon_sym_u32] = ACTIONS(1358), - [anon_sym_i32] = ACTIONS(1358), - [anon_sym_u64] = ACTIONS(1358), - [anon_sym_i64] = ACTIONS(1358), - [anon_sym_u128] = ACTIONS(1358), - [anon_sym_i128] = ACTIONS(1358), - [anon_sym_isize] = ACTIONS(1358), - [anon_sym_usize] = ACTIONS(1358), - [anon_sym_f32] = ACTIONS(1358), - [anon_sym_f64] = ACTIONS(1358), - [anon_sym_bool] = ACTIONS(1358), - [anon_sym_str] = ACTIONS(1358), - [anon_sym_char] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_async] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_fn] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_impl] = ACTIONS(1358), - [anon_sym_let] = ACTIONS(1358), - [anon_sym_loop] = ACTIONS(1358), - [anon_sym_match] = ACTIONS(1358), - [anon_sym_mod] = ACTIONS(1358), - [anon_sym_pub] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_trait] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_unsafe] = ACTIONS(1358), - [anon_sym_use] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_COLON_COLON] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_yield] = ACTIONS(1358), - [anon_sym_move] = ACTIONS(1358), - [sym_integer_literal] = ACTIONS(1356), - [aux_sym_string_literal_token1] = ACTIONS(1356), - [sym_char_literal] = ACTIONS(1356), - [anon_sym_true] = ACTIONS(1358), - [anon_sym_false] = ACTIONS(1358), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1358), - [sym_super] = ACTIONS(1358), - [sym_crate] = ACTIONS(1358), - [sym_metavariable] = ACTIONS(1356), - [sym_raw_string_literal] = ACTIONS(1356), - [sym_float_literal] = ACTIONS(1356), - [sym_block_comment] = ACTIONS(3), - }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_macro_rules_BANG] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_u8] = ACTIONS(1362), - [anon_sym_i8] = ACTIONS(1362), - [anon_sym_u16] = ACTIONS(1362), - [anon_sym_i16] = ACTIONS(1362), - [anon_sym_u32] = ACTIONS(1362), - [anon_sym_i32] = ACTIONS(1362), - [anon_sym_u64] = ACTIONS(1362), - [anon_sym_i64] = ACTIONS(1362), - [anon_sym_u128] = ACTIONS(1362), - [anon_sym_i128] = ACTIONS(1362), - [anon_sym_isize] = ACTIONS(1362), - [anon_sym_usize] = ACTIONS(1362), - [anon_sym_f32] = ACTIONS(1362), - [anon_sym_f64] = ACTIONS(1362), - [anon_sym_bool] = ACTIONS(1362), - [anon_sym_str] = ACTIONS(1362), - [anon_sym_char] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_async] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_fn] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_impl] = ACTIONS(1362), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_loop] = ACTIONS(1362), - [anon_sym_match] = ACTIONS(1362), - [anon_sym_mod] = ACTIONS(1362), - [anon_sym_pub] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_trait] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_unsafe] = ACTIONS(1362), - [anon_sym_use] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_POUND] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_COLON_COLON] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_move] = ACTIONS(1362), - [sym_integer_literal] = ACTIONS(1360), - [aux_sym_string_literal_token1] = ACTIONS(1360), - [sym_char_literal] = ACTIONS(1360), - [anon_sym_true] = ACTIONS(1362), - [anon_sym_false] = ACTIONS(1362), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1362), - [sym_super] = ACTIONS(1362), - [sym_crate] = ACTIONS(1362), - [sym_metavariable] = ACTIONS(1360), - [sym_raw_string_literal] = ACTIONS(1360), - [sym_float_literal] = ACTIONS(1360), - [sym_block_comment] = ACTIONS(3), - }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym_macro_rules_BANG] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_u8] = ACTIONS(1366), - [anon_sym_i8] = ACTIONS(1366), - [anon_sym_u16] = ACTIONS(1366), - [anon_sym_i16] = ACTIONS(1366), - [anon_sym_u32] = ACTIONS(1366), - [anon_sym_i32] = ACTIONS(1366), - [anon_sym_u64] = ACTIONS(1366), - [anon_sym_i64] = ACTIONS(1366), - [anon_sym_u128] = ACTIONS(1366), - [anon_sym_i128] = ACTIONS(1366), - [anon_sym_isize] = ACTIONS(1366), - [anon_sym_usize] = ACTIONS(1366), - [anon_sym_f32] = ACTIONS(1366), - [anon_sym_f64] = ACTIONS(1366), - [anon_sym_bool] = ACTIONS(1366), - [anon_sym_str] = ACTIONS(1366), - [anon_sym_char] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_fn] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_impl] = ACTIONS(1366), - [anon_sym_let] = ACTIONS(1366), - [anon_sym_loop] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1366), - [anon_sym_mod] = ACTIONS(1366), - [anon_sym_pub] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_trait] = ACTIONS(1366), - [anon_sym_type] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_unsafe] = ACTIONS(1366), - [anon_sym_use] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1364), - [anon_sym_COLON_COLON] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_DOT_DOT] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PIPE] = ACTIONS(1364), - [anon_sym_yield] = ACTIONS(1366), - [anon_sym_move] = ACTIONS(1366), - [sym_integer_literal] = ACTIONS(1364), - [aux_sym_string_literal_token1] = ACTIONS(1364), - [sym_char_literal] = ACTIONS(1364), - [anon_sym_true] = ACTIONS(1366), - [anon_sym_false] = ACTIONS(1366), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1366), - [sym_super] = ACTIONS(1366), - [sym_crate] = ACTIONS(1366), - [sym_metavariable] = ACTIONS(1364), - [sym_raw_string_literal] = ACTIONS(1364), - [sym_float_literal] = ACTIONS(1364), - [sym_block_comment] = ACTIONS(3), - }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1370), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_macro_rules_BANG] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_u8] = ACTIONS(1370), - [anon_sym_i8] = ACTIONS(1370), - [anon_sym_u16] = ACTIONS(1370), - [anon_sym_i16] = ACTIONS(1370), - [anon_sym_u32] = ACTIONS(1370), - [anon_sym_i32] = ACTIONS(1370), - [anon_sym_u64] = ACTIONS(1370), - [anon_sym_i64] = ACTIONS(1370), - [anon_sym_u128] = ACTIONS(1370), - [anon_sym_i128] = ACTIONS(1370), - [anon_sym_isize] = ACTIONS(1370), - [anon_sym_usize] = ACTIONS(1370), - [anon_sym_f32] = ACTIONS(1370), - [anon_sym_f64] = ACTIONS(1370), - [anon_sym_bool] = ACTIONS(1370), - [anon_sym_str] = ACTIONS(1370), - [anon_sym_char] = ACTIONS(1370), - [anon_sym_SQUOTE] = ACTIONS(1370), - [anon_sym_async] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_fn] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_impl] = ACTIONS(1370), - [anon_sym_let] = ACTIONS(1370), - [anon_sym_loop] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1370), - [anon_sym_mod] = ACTIONS(1370), - [anon_sym_pub] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_trait] = ACTIONS(1370), - [anon_sym_type] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_unsafe] = ACTIONS(1370), - [anon_sym_use] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_COLON_COLON] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_yield] = ACTIONS(1370), - [anon_sym_move] = ACTIONS(1370), - [sym_integer_literal] = ACTIONS(1368), - [aux_sym_string_literal_token1] = ACTIONS(1368), - [sym_char_literal] = ACTIONS(1368), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1370), - [sym_super] = ACTIONS(1370), - [sym_crate] = ACTIONS(1370), - [sym_metavariable] = ACTIONS(1368), - [sym_raw_string_literal] = ACTIONS(1368), - [sym_float_literal] = ACTIONS(1368), - [sym_block_comment] = ACTIONS(3), - }, - [325] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1374), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_macro_rules_BANG] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_u8] = ACTIONS(1374), - [anon_sym_i8] = ACTIONS(1374), - [anon_sym_u16] = ACTIONS(1374), - [anon_sym_i16] = ACTIONS(1374), - [anon_sym_u32] = ACTIONS(1374), - [anon_sym_i32] = ACTIONS(1374), - [anon_sym_u64] = ACTIONS(1374), - [anon_sym_i64] = ACTIONS(1374), - [anon_sym_u128] = ACTIONS(1374), - [anon_sym_i128] = ACTIONS(1374), - [anon_sym_isize] = ACTIONS(1374), - [anon_sym_usize] = ACTIONS(1374), - [anon_sym_f32] = ACTIONS(1374), - [anon_sym_f64] = ACTIONS(1374), - [anon_sym_bool] = ACTIONS(1374), - [anon_sym_str] = ACTIONS(1374), - [anon_sym_char] = ACTIONS(1374), - [anon_sym_SQUOTE] = ACTIONS(1374), - [anon_sym_async] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_fn] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_impl] = ACTIONS(1374), - [anon_sym_let] = ACTIONS(1374), - [anon_sym_loop] = ACTIONS(1374), - [anon_sym_match] = ACTIONS(1374), - [anon_sym_mod] = ACTIONS(1374), - [anon_sym_pub] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_trait] = ACTIONS(1374), - [anon_sym_type] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_unsafe] = ACTIONS(1374), - [anon_sym_use] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_COLON_COLON] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_yield] = ACTIONS(1374), - [anon_sym_move] = ACTIONS(1374), - [sym_integer_literal] = ACTIONS(1372), - [aux_sym_string_literal_token1] = ACTIONS(1372), - [sym_char_literal] = ACTIONS(1372), - [anon_sym_true] = ACTIONS(1374), - [anon_sym_false] = ACTIONS(1374), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1374), - [sym_super] = ACTIONS(1374), - [sym_crate] = ACTIONS(1374), - [sym_metavariable] = ACTIONS(1372), - [sym_raw_string_literal] = ACTIONS(1372), - [sym_float_literal] = ACTIONS(1372), - [sym_block_comment] = ACTIONS(3), - }, - [326] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1378), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_macro_rules_BANG] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1376), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_u8] = ACTIONS(1378), - [anon_sym_i8] = ACTIONS(1378), - [anon_sym_u16] = ACTIONS(1378), - [anon_sym_i16] = ACTIONS(1378), - [anon_sym_u32] = ACTIONS(1378), - [anon_sym_i32] = ACTIONS(1378), - [anon_sym_u64] = ACTIONS(1378), - [anon_sym_i64] = ACTIONS(1378), - [anon_sym_u128] = ACTIONS(1378), - [anon_sym_i128] = ACTIONS(1378), - [anon_sym_isize] = ACTIONS(1378), - [anon_sym_usize] = ACTIONS(1378), - [anon_sym_f32] = ACTIONS(1378), - [anon_sym_f64] = ACTIONS(1378), - [anon_sym_bool] = ACTIONS(1378), - [anon_sym_str] = ACTIONS(1378), - [anon_sym_char] = ACTIONS(1378), - [anon_sym_SQUOTE] = ACTIONS(1378), - [anon_sym_async] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_fn] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_impl] = ACTIONS(1378), - [anon_sym_let] = ACTIONS(1378), - [anon_sym_loop] = ACTIONS(1378), - [anon_sym_match] = ACTIONS(1378), - [anon_sym_mod] = ACTIONS(1378), - [anon_sym_pub] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_trait] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_unsafe] = ACTIONS(1378), - [anon_sym_use] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_POUND] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_COLON_COLON] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_yield] = ACTIONS(1378), - [anon_sym_move] = ACTIONS(1378), - [sym_integer_literal] = ACTIONS(1376), - [aux_sym_string_literal_token1] = ACTIONS(1376), - [sym_char_literal] = ACTIONS(1376), - [anon_sym_true] = ACTIONS(1378), - [anon_sym_false] = ACTIONS(1378), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1378), - [sym_super] = ACTIONS(1378), - [sym_crate] = ACTIONS(1378), - [sym_metavariable] = ACTIONS(1376), - [sym_raw_string_literal] = ACTIONS(1376), - [sym_float_literal] = ACTIONS(1376), - [sym_block_comment] = ACTIONS(3), - }, - [327] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1382), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_macro_rules_BANG] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_u8] = ACTIONS(1382), - [anon_sym_i8] = ACTIONS(1382), - [anon_sym_u16] = ACTIONS(1382), - [anon_sym_i16] = ACTIONS(1382), - [anon_sym_u32] = ACTIONS(1382), - [anon_sym_i32] = ACTIONS(1382), - [anon_sym_u64] = ACTIONS(1382), - [anon_sym_i64] = ACTIONS(1382), - [anon_sym_u128] = ACTIONS(1382), - [anon_sym_i128] = ACTIONS(1382), - [anon_sym_isize] = ACTIONS(1382), - [anon_sym_usize] = ACTIONS(1382), - [anon_sym_f32] = ACTIONS(1382), - [anon_sym_f64] = ACTIONS(1382), - [anon_sym_bool] = ACTIONS(1382), - [anon_sym_str] = ACTIONS(1382), - [anon_sym_char] = ACTIONS(1382), - [anon_sym_SQUOTE] = ACTIONS(1382), - [anon_sym_async] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_fn] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_impl] = ACTIONS(1382), - [anon_sym_let] = ACTIONS(1382), - [anon_sym_loop] = ACTIONS(1382), - [anon_sym_match] = ACTIONS(1382), - [anon_sym_mod] = ACTIONS(1382), - [anon_sym_pub] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_trait] = ACTIONS(1382), - [anon_sym_type] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_unsafe] = ACTIONS(1382), - [anon_sym_use] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_POUND] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym_LT] = ACTIONS(1380), - [anon_sym_COLON_COLON] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(1382), - [anon_sym_move] = ACTIONS(1382), - [sym_integer_literal] = ACTIONS(1380), - [aux_sym_string_literal_token1] = ACTIONS(1380), - [sym_char_literal] = ACTIONS(1380), - [anon_sym_true] = ACTIONS(1382), - [anon_sym_false] = ACTIONS(1382), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1382), - [sym_super] = ACTIONS(1382), - [sym_crate] = ACTIONS(1382), - [sym_metavariable] = ACTIONS(1380), - [sym_raw_string_literal] = ACTIONS(1380), - [sym_float_literal] = ACTIONS(1380), - [sym_block_comment] = ACTIONS(3), - }, - [328] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_macro_rules_BANG] = ACTIONS(1384), - [anon_sym_LPAREN] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1384), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_u8] = ACTIONS(1386), - [anon_sym_i8] = ACTIONS(1386), - [anon_sym_u16] = ACTIONS(1386), - [anon_sym_i16] = ACTIONS(1386), - [anon_sym_u32] = ACTIONS(1386), - [anon_sym_i32] = ACTIONS(1386), - [anon_sym_u64] = ACTIONS(1386), - [anon_sym_i64] = ACTIONS(1386), - [anon_sym_u128] = ACTIONS(1386), - [anon_sym_i128] = ACTIONS(1386), - [anon_sym_isize] = ACTIONS(1386), - [anon_sym_usize] = ACTIONS(1386), - [anon_sym_f32] = ACTIONS(1386), - [anon_sym_f64] = ACTIONS(1386), - [anon_sym_bool] = ACTIONS(1386), - [anon_sym_str] = ACTIONS(1386), - [anon_sym_char] = ACTIONS(1386), - [anon_sym_SQUOTE] = ACTIONS(1386), - [anon_sym_async] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_fn] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_impl] = ACTIONS(1386), - [anon_sym_let] = ACTIONS(1386), - [anon_sym_loop] = ACTIONS(1386), - [anon_sym_match] = ACTIONS(1386), - [anon_sym_mod] = ACTIONS(1386), - [anon_sym_pub] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_trait] = ACTIONS(1386), - [anon_sym_type] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_unsafe] = ACTIONS(1386), - [anon_sym_use] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_POUND] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym_LT] = ACTIONS(1384), - [anon_sym_COLON_COLON] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_DOT_DOT] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1384), - [anon_sym_PIPE] = ACTIONS(1384), - [anon_sym_yield] = ACTIONS(1386), - [anon_sym_move] = ACTIONS(1386), - [sym_integer_literal] = ACTIONS(1384), - [aux_sym_string_literal_token1] = ACTIONS(1384), - [sym_char_literal] = ACTIONS(1384), - [anon_sym_true] = ACTIONS(1386), - [anon_sym_false] = ACTIONS(1386), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1386), - [sym_super] = ACTIONS(1386), - [sym_crate] = ACTIONS(1386), - [sym_metavariable] = ACTIONS(1384), - [sym_raw_string_literal] = ACTIONS(1384), - [sym_float_literal] = ACTIONS(1384), - [sym_block_comment] = ACTIONS(3), - }, - [329] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_macro_rules_BANG] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_u8] = ACTIONS(1390), - [anon_sym_i8] = ACTIONS(1390), - [anon_sym_u16] = ACTIONS(1390), - [anon_sym_i16] = ACTIONS(1390), - [anon_sym_u32] = ACTIONS(1390), - [anon_sym_i32] = ACTIONS(1390), - [anon_sym_u64] = ACTIONS(1390), - [anon_sym_i64] = ACTIONS(1390), - [anon_sym_u128] = ACTIONS(1390), - [anon_sym_i128] = ACTIONS(1390), - [anon_sym_isize] = ACTIONS(1390), - [anon_sym_usize] = ACTIONS(1390), - [anon_sym_f32] = ACTIONS(1390), - [anon_sym_f64] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_str] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_impl] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_mod] = ACTIONS(1390), - [anon_sym_pub] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_trait] = ACTIONS(1390), - [anon_sym_type] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_unsafe] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_COLON_COLON] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_DOT_DOT] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1388), - [anon_sym_PIPE] = ACTIONS(1388), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_move] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1388), - [aux_sym_string_literal_token1] = ACTIONS(1388), - [sym_char_literal] = ACTIONS(1388), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1390), - [sym_super] = ACTIONS(1390), - [sym_crate] = ACTIONS(1390), - [sym_metavariable] = ACTIONS(1388), - [sym_raw_string_literal] = ACTIONS(1388), - [sym_float_literal] = ACTIONS(1388), - [sym_block_comment] = ACTIONS(3), - }, - [330] = { - [ts_builtin_sym_end] = ACTIONS(406), - [sym_identifier] = ACTIONS(408), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_macro_rules_BANG] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(406), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(408), - [anon_sym_i8] = ACTIONS(408), - [anon_sym_u16] = ACTIONS(408), - [anon_sym_i16] = ACTIONS(408), - [anon_sym_u32] = ACTIONS(408), - [anon_sym_i32] = ACTIONS(408), - [anon_sym_u64] = ACTIONS(408), - [anon_sym_i64] = ACTIONS(408), - [anon_sym_u128] = ACTIONS(408), - [anon_sym_i128] = ACTIONS(408), - [anon_sym_isize] = ACTIONS(408), - [anon_sym_usize] = ACTIONS(408), - [anon_sym_f32] = ACTIONS(408), - [anon_sym_f64] = ACTIONS(408), - [anon_sym_bool] = ACTIONS(408), - [anon_sym_str] = ACTIONS(408), - [anon_sym_char] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(408), - [anon_sym_async] = ACTIONS(408), - [anon_sym_break] = ACTIONS(408), - [anon_sym_const] = ACTIONS(408), - [anon_sym_continue] = ACTIONS(408), - [anon_sym_default] = ACTIONS(408), - [anon_sym_enum] = ACTIONS(408), - [anon_sym_fn] = ACTIONS(408), - [anon_sym_for] = ACTIONS(408), - [anon_sym_if] = ACTIONS(408), - [anon_sym_impl] = ACTIONS(408), - [anon_sym_let] = ACTIONS(408), - [anon_sym_loop] = ACTIONS(408), - [anon_sym_match] = ACTIONS(408), - [anon_sym_mod] = ACTIONS(408), - [anon_sym_pub] = ACTIONS(408), - [anon_sym_return] = ACTIONS(408), - [anon_sym_static] = ACTIONS(408), - [anon_sym_struct] = ACTIONS(408), - [anon_sym_trait] = ACTIONS(408), - [anon_sym_type] = ACTIONS(408), - [anon_sym_union] = ACTIONS(408), - [anon_sym_unsafe] = ACTIONS(408), - [anon_sym_use] = ACTIONS(408), - [anon_sym_while] = ACTIONS(408), - [anon_sym_POUND] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_extern] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(406), - [anon_sym_DOT_DOT] = ACTIONS(406), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_yield] = ACTIONS(408), - [anon_sym_move] = ACTIONS(408), - [sym_integer_literal] = ACTIONS(406), - [aux_sym_string_literal_token1] = ACTIONS(406), - [sym_char_literal] = ACTIONS(406), - [anon_sym_true] = ACTIONS(408), - [anon_sym_false] = ACTIONS(408), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(408), - [sym_super] = ACTIONS(408), - [sym_crate] = ACTIONS(408), - [sym_metavariable] = ACTIONS(406), - [sym_raw_string_literal] = ACTIONS(406), - [sym_float_literal] = ACTIONS(406), - [sym_block_comment] = ACTIONS(3), - }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_macro_rules_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_u8] = ACTIONS(1394), - [anon_sym_i8] = ACTIONS(1394), - [anon_sym_u16] = ACTIONS(1394), - [anon_sym_i16] = ACTIONS(1394), - [anon_sym_u32] = ACTIONS(1394), - [anon_sym_i32] = ACTIONS(1394), - [anon_sym_u64] = ACTIONS(1394), - [anon_sym_i64] = ACTIONS(1394), - [anon_sym_u128] = ACTIONS(1394), - [anon_sym_i128] = ACTIONS(1394), - [anon_sym_isize] = ACTIONS(1394), - [anon_sym_usize] = ACTIONS(1394), - [anon_sym_f32] = ACTIONS(1394), - [anon_sym_f64] = ACTIONS(1394), - [anon_sym_bool] = ACTIONS(1394), - [anon_sym_str] = ACTIONS(1394), - [anon_sym_char] = ACTIONS(1394), - [anon_sym_SQUOTE] = ACTIONS(1394), - [anon_sym_async] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_fn] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_impl] = ACTIONS(1394), - [anon_sym_let] = ACTIONS(1394), - [anon_sym_loop] = ACTIONS(1394), - [anon_sym_match] = ACTIONS(1394), - [anon_sym_mod] = ACTIONS(1394), - [anon_sym_pub] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_trait] = ACTIONS(1394), - [anon_sym_type] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_unsafe] = ACTIONS(1394), - [anon_sym_use] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_COLON_COLON] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_yield] = ACTIONS(1394), - [anon_sym_move] = ACTIONS(1394), - [sym_integer_literal] = ACTIONS(1392), - [aux_sym_string_literal_token1] = ACTIONS(1392), - [sym_char_literal] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1394), - [sym_super] = ACTIONS(1394), - [sym_crate] = ACTIONS(1394), - [sym_metavariable] = ACTIONS(1392), - [sym_raw_string_literal] = ACTIONS(1392), - [sym_float_literal] = ACTIONS(1392), - [sym_block_comment] = ACTIONS(3), - }, - [332] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_macro_rules_BANG] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_u8] = ACTIONS(1398), - [anon_sym_i8] = ACTIONS(1398), - [anon_sym_u16] = ACTIONS(1398), - [anon_sym_i16] = ACTIONS(1398), - [anon_sym_u32] = ACTIONS(1398), - [anon_sym_i32] = ACTIONS(1398), - [anon_sym_u64] = ACTIONS(1398), - [anon_sym_i64] = ACTIONS(1398), - [anon_sym_u128] = ACTIONS(1398), - [anon_sym_i128] = ACTIONS(1398), - [anon_sym_isize] = ACTIONS(1398), - [anon_sym_usize] = ACTIONS(1398), - [anon_sym_f32] = ACTIONS(1398), - [anon_sym_f64] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_str] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_impl] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1398), - [anon_sym_pub] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_trait] = ACTIONS(1398), - [anon_sym_type] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_unsafe] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1396), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1396), - [anon_sym_PIPE] = ACTIONS(1396), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_move] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1396), - [aux_sym_string_literal_token1] = ACTIONS(1396), - [sym_char_literal] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1398), - [sym_super] = ACTIONS(1398), - [sym_crate] = ACTIONS(1398), - [sym_metavariable] = ACTIONS(1396), - [sym_raw_string_literal] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1396), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [333] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_macro_rules_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_u8] = ACTIONS(1402), - [anon_sym_i8] = ACTIONS(1402), - [anon_sym_u16] = ACTIONS(1402), - [anon_sym_i16] = ACTIONS(1402), - [anon_sym_u32] = ACTIONS(1402), - [anon_sym_i32] = ACTIONS(1402), - [anon_sym_u64] = ACTIONS(1402), - [anon_sym_i64] = ACTIONS(1402), - [anon_sym_u128] = ACTIONS(1402), - [anon_sym_i128] = ACTIONS(1402), - [anon_sym_isize] = ACTIONS(1402), - [anon_sym_usize] = ACTIONS(1402), - [anon_sym_f32] = ACTIONS(1402), - [anon_sym_f64] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_str] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_impl] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_mod] = ACTIONS(1402), - [anon_sym_pub] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_trait] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1400), - [anon_sym_COLON_COLON] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_DOT_DOT] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PIPE] = ACTIONS(1400), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_move] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1400), - [aux_sym_string_literal_token1] = ACTIONS(1400), - [sym_char_literal] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_crate] = ACTIONS(1402), - [sym_metavariable] = ACTIONS(1400), - [sym_raw_string_literal] = ACTIONS(1400), - [sym_float_literal] = ACTIONS(1400), + [288] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_macro_rules_BANG] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_u8] = ACTIONS(1240), + [anon_sym_i8] = ACTIONS(1240), + [anon_sym_u16] = ACTIONS(1240), + [anon_sym_i16] = ACTIONS(1240), + [anon_sym_u32] = ACTIONS(1240), + [anon_sym_i32] = ACTIONS(1240), + [anon_sym_u64] = ACTIONS(1240), + [anon_sym_i64] = ACTIONS(1240), + [anon_sym_u128] = ACTIONS(1240), + [anon_sym_i128] = ACTIONS(1240), + [anon_sym_isize] = ACTIONS(1240), + [anon_sym_usize] = ACTIONS(1240), + [anon_sym_f32] = ACTIONS(1240), + [anon_sym_f64] = ACTIONS(1240), + [anon_sym_bool] = ACTIONS(1240), + [anon_sym_str] = ACTIONS(1240), + [anon_sym_char] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_async] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_fn] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_impl] = ACTIONS(1240), + [anon_sym_let] = ACTIONS(1240), + [anon_sym_loop] = ACTIONS(1240), + [anon_sym_match] = ACTIONS(1240), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_pub] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_trait] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_unsafe] = ACTIONS(1240), + [anon_sym_use] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_COLON_COLON] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_move] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1238), + [aux_sym_string_literal_token1] = ACTIONS(1238), + [sym_char_literal] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1240), + [anon_sym_false] = ACTIONS(1240), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1240), + [sym_super] = ACTIONS(1240), + [sym_crate] = ACTIONS(1240), + [sym_metavariable] = ACTIONS(1238), + [sym_raw_string_literal] = ACTIONS(1238), + [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_macro_rules_BANG] = ACTIONS(1404), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_u8] = ACTIONS(1406), - [anon_sym_i8] = ACTIONS(1406), - [anon_sym_u16] = ACTIONS(1406), - [anon_sym_i16] = ACTIONS(1406), - [anon_sym_u32] = ACTIONS(1406), - [anon_sym_i32] = ACTIONS(1406), - [anon_sym_u64] = ACTIONS(1406), - [anon_sym_i64] = ACTIONS(1406), - [anon_sym_u128] = ACTIONS(1406), - [anon_sym_i128] = ACTIONS(1406), - [anon_sym_isize] = ACTIONS(1406), - [anon_sym_usize] = ACTIONS(1406), - [anon_sym_f32] = ACTIONS(1406), - [anon_sym_f64] = ACTIONS(1406), - [anon_sym_bool] = ACTIONS(1406), - [anon_sym_str] = ACTIONS(1406), - [anon_sym_char] = ACTIONS(1406), - [anon_sym_SQUOTE] = ACTIONS(1406), - [anon_sym_async] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_fn] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_impl] = ACTIONS(1406), - [anon_sym_let] = ACTIONS(1406), - [anon_sym_loop] = ACTIONS(1406), - [anon_sym_match] = ACTIONS(1406), - [anon_sym_mod] = ACTIONS(1406), - [anon_sym_pub] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_trait] = ACTIONS(1406), - [anon_sym_type] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_unsafe] = ACTIONS(1406), - [anon_sym_use] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_LT] = ACTIONS(1404), - [anon_sym_COLON_COLON] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_DOT_DOT] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_yield] = ACTIONS(1406), - [anon_sym_move] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(1404), - [aux_sym_string_literal_token1] = ACTIONS(1404), - [sym_char_literal] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1406), - [sym_super] = ACTIONS(1406), - [sym_crate] = ACTIONS(1406), - [sym_metavariable] = ACTIONS(1404), - [sym_raw_string_literal] = ACTIONS(1404), - [sym_float_literal] = ACTIONS(1404), + [289] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_macro_rules_BANG] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_fn] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_impl] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_loop] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1244), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_pub] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_trait] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_unsafe] = ACTIONS(1244), + [anon_sym_use] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_COLON_COLON] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1244), + [anon_sym_move] = ACTIONS(1244), + [sym_integer_literal] = ACTIONS(1242), + [aux_sym_string_literal_token1] = ACTIONS(1242), + [sym_char_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1244), + [anon_sym_false] = ACTIONS(1244), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1244), + [sym_super] = ACTIONS(1244), + [sym_crate] = ACTIONS(1244), + [sym_metavariable] = ACTIONS(1242), + [sym_raw_string_literal] = ACTIONS(1242), + [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, - [335] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_macro_rules_BANG] = ACTIONS(1408), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_u8] = ACTIONS(1410), - [anon_sym_i8] = ACTIONS(1410), - [anon_sym_u16] = ACTIONS(1410), - [anon_sym_i16] = ACTIONS(1410), - [anon_sym_u32] = ACTIONS(1410), - [anon_sym_i32] = ACTIONS(1410), - [anon_sym_u64] = ACTIONS(1410), - [anon_sym_i64] = ACTIONS(1410), - [anon_sym_u128] = ACTIONS(1410), - [anon_sym_i128] = ACTIONS(1410), - [anon_sym_isize] = ACTIONS(1410), - [anon_sym_usize] = ACTIONS(1410), - [anon_sym_f32] = ACTIONS(1410), - [anon_sym_f64] = ACTIONS(1410), - [anon_sym_bool] = ACTIONS(1410), - [anon_sym_str] = ACTIONS(1410), - [anon_sym_char] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1410), - [anon_sym_async] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_impl] = ACTIONS(1410), - [anon_sym_let] = ACTIONS(1410), - [anon_sym_loop] = ACTIONS(1410), - [anon_sym_match] = ACTIONS(1410), - [anon_sym_mod] = ACTIONS(1410), - [anon_sym_pub] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_trait] = ACTIONS(1410), - [anon_sym_type] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_unsafe] = ACTIONS(1410), - [anon_sym_use] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_LT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1408), - [anon_sym_PIPE] = ACTIONS(1408), - [anon_sym_yield] = ACTIONS(1410), - [anon_sym_move] = ACTIONS(1410), - [sym_integer_literal] = ACTIONS(1408), - [aux_sym_string_literal_token1] = ACTIONS(1408), - [sym_char_literal] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1410), - [sym_super] = ACTIONS(1410), - [sym_crate] = ACTIONS(1410), - [sym_metavariable] = ACTIONS(1408), - [sym_raw_string_literal] = ACTIONS(1408), - [sym_float_literal] = ACTIONS(1408), + [290] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_macro_rules_BANG] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_u8] = ACTIONS(1248), + [anon_sym_i8] = ACTIONS(1248), + [anon_sym_u16] = ACTIONS(1248), + [anon_sym_i16] = ACTIONS(1248), + [anon_sym_u32] = ACTIONS(1248), + [anon_sym_i32] = ACTIONS(1248), + [anon_sym_u64] = ACTIONS(1248), + [anon_sym_i64] = ACTIONS(1248), + [anon_sym_u128] = ACTIONS(1248), + [anon_sym_i128] = ACTIONS(1248), + [anon_sym_isize] = ACTIONS(1248), + [anon_sym_usize] = ACTIONS(1248), + [anon_sym_f32] = ACTIONS(1248), + [anon_sym_f64] = ACTIONS(1248), + [anon_sym_bool] = ACTIONS(1248), + [anon_sym_str] = ACTIONS(1248), + [anon_sym_char] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_fn] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_impl] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1248), + [anon_sym_match] = ACTIONS(1248), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_pub] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_unsafe] = ACTIONS(1248), + [anon_sym_use] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_COLON_COLON] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1248), + [anon_sym_move] = ACTIONS(1248), + [sym_integer_literal] = ACTIONS(1246), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_crate] = ACTIONS(1248), + [sym_metavariable] = ACTIONS(1246), + [sym_raw_string_literal] = ACTIONS(1246), + [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, - [336] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_macro_rules_BANG] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_u8] = ACTIONS(1414), - [anon_sym_i8] = ACTIONS(1414), - [anon_sym_u16] = ACTIONS(1414), - [anon_sym_i16] = ACTIONS(1414), - [anon_sym_u32] = ACTIONS(1414), - [anon_sym_i32] = ACTIONS(1414), - [anon_sym_u64] = ACTIONS(1414), - [anon_sym_i64] = ACTIONS(1414), - [anon_sym_u128] = ACTIONS(1414), - [anon_sym_i128] = ACTIONS(1414), - [anon_sym_isize] = ACTIONS(1414), - [anon_sym_usize] = ACTIONS(1414), - [anon_sym_f32] = ACTIONS(1414), - [anon_sym_f64] = ACTIONS(1414), - [anon_sym_bool] = ACTIONS(1414), - [anon_sym_str] = ACTIONS(1414), - [anon_sym_char] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_async] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_impl] = ACTIONS(1414), - [anon_sym_let] = ACTIONS(1414), - [anon_sym_loop] = ACTIONS(1414), - [anon_sym_match] = ACTIONS(1414), - [anon_sym_mod] = ACTIONS(1414), - [anon_sym_pub] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_trait] = ACTIONS(1414), - [anon_sym_type] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_unsafe] = ACTIONS(1414), - [anon_sym_use] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_COLON_COLON] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_yield] = ACTIONS(1414), - [anon_sym_move] = ACTIONS(1414), - [sym_integer_literal] = ACTIONS(1412), - [aux_sym_string_literal_token1] = ACTIONS(1412), - [sym_char_literal] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1414), - [sym_crate] = ACTIONS(1414), - [sym_metavariable] = ACTIONS(1412), - [sym_raw_string_literal] = ACTIONS(1412), - [sym_float_literal] = ACTIONS(1412), + [291] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_macro_rules_BANG] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_u8] = ACTIONS(1252), + [anon_sym_i8] = ACTIONS(1252), + [anon_sym_u16] = ACTIONS(1252), + [anon_sym_i16] = ACTIONS(1252), + [anon_sym_u32] = ACTIONS(1252), + [anon_sym_i32] = ACTIONS(1252), + [anon_sym_u64] = ACTIONS(1252), + [anon_sym_i64] = ACTIONS(1252), + [anon_sym_u128] = ACTIONS(1252), + [anon_sym_i128] = ACTIONS(1252), + [anon_sym_isize] = ACTIONS(1252), + [anon_sym_usize] = ACTIONS(1252), + [anon_sym_f32] = ACTIONS(1252), + [anon_sym_f64] = ACTIONS(1252), + [anon_sym_bool] = ACTIONS(1252), + [anon_sym_str] = ACTIONS(1252), + [anon_sym_char] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_fn] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_impl] = ACTIONS(1252), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_loop] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_pub] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_trait] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_unsafe] = ACTIONS(1252), + [anon_sym_use] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_yield] = ACTIONS(1252), + [anon_sym_move] = ACTIONS(1252), + [sym_integer_literal] = ACTIONS(1250), + [aux_sym_string_literal_token1] = ACTIONS(1250), + [sym_char_literal] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1252), + [anon_sym_false] = ACTIONS(1252), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1250), + [sym_raw_string_literal] = ACTIONS(1250), + [sym_float_literal] = ACTIONS(1250), [sym_block_comment] = ACTIONS(3), }, - [337] = { + [292] = { [ts_builtin_sym_end] = ACTIONS(410), [sym_identifier] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(410), @@ -50274,2119 +44350,5329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(410), [sym_block_comment] = ACTIONS(3), }, + [293] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_macro_rules_BANG] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u128] = ACTIONS(1256), + [anon_sym_i128] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_str] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_fn] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_impl] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1256), + [anon_sym_loop] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_pub] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_trait] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_unsafe] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_yield] = ACTIONS(1256), + [anon_sym_move] = ACTIONS(1256), + [sym_integer_literal] = ACTIONS(1254), + [aux_sym_string_literal_token1] = ACTIONS(1254), + [sym_char_literal] = ACTIONS(1254), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1256), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1254), + [sym_float_literal] = ACTIONS(1254), + [sym_block_comment] = ACTIONS(3), + }, + [294] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1260), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_macro_rules_BANG] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_SQUOTE] = ACTIONS(1260), + [anon_sym_async] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_fn] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_impl] = ACTIONS(1260), + [anon_sym_let] = ACTIONS(1260), + [anon_sym_loop] = ACTIONS(1260), + [anon_sym_match] = ACTIONS(1260), + [anon_sym_mod] = ACTIONS(1260), + [anon_sym_pub] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_trait] = ACTIONS(1260), + [anon_sym_type] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_unsafe] = ACTIONS(1260), + [anon_sym_use] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_POUND] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym_LT] = ACTIONS(1258), + [anon_sym_COLON_COLON] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_DOT_DOT] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1258), + [anon_sym_PIPE] = ACTIONS(1258), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_move] = ACTIONS(1260), + [sym_integer_literal] = ACTIONS(1258), + [aux_sym_string_literal_token1] = ACTIONS(1258), + [sym_char_literal] = ACTIONS(1258), + [anon_sym_true] = ACTIONS(1260), + [anon_sym_false] = ACTIONS(1260), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1260), + [sym_super] = ACTIONS(1260), + [sym_crate] = ACTIONS(1260), + [sym_metavariable] = ACTIONS(1258), + [sym_raw_string_literal] = ACTIONS(1258), + [sym_float_literal] = ACTIONS(1258), + [sym_block_comment] = ACTIONS(3), + }, + [295] = { + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_macro_rules_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_u8] = ACTIONS(1264), + [anon_sym_i8] = ACTIONS(1264), + [anon_sym_u16] = ACTIONS(1264), + [anon_sym_i16] = ACTIONS(1264), + [anon_sym_u32] = ACTIONS(1264), + [anon_sym_i32] = ACTIONS(1264), + [anon_sym_u64] = ACTIONS(1264), + [anon_sym_i64] = ACTIONS(1264), + [anon_sym_u128] = ACTIONS(1264), + [anon_sym_i128] = ACTIONS(1264), + [anon_sym_isize] = ACTIONS(1264), + [anon_sym_usize] = ACTIONS(1264), + [anon_sym_f32] = ACTIONS(1264), + [anon_sym_f64] = ACTIONS(1264), + [anon_sym_bool] = ACTIONS(1264), + [anon_sym_str] = ACTIONS(1264), + [anon_sym_char] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_fn] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_impl] = ACTIONS(1264), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_loop] = ACTIONS(1264), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_mod] = ACTIONS(1264), + [anon_sym_pub] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_trait] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_unsafe] = ACTIONS(1264), + [anon_sym_use] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_POUND] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1262), + [anon_sym_COLON_COLON] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PIPE] = ACTIONS(1262), + [anon_sym_yield] = ACTIONS(1264), + [anon_sym_move] = ACTIONS(1264), + [sym_integer_literal] = ACTIONS(1262), + [aux_sym_string_literal_token1] = ACTIONS(1262), + [sym_char_literal] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1264), + [anon_sym_false] = ACTIONS(1264), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1262), + [sym_raw_string_literal] = ACTIONS(1262), + [sym_float_literal] = ACTIONS(1262), + [sym_block_comment] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_macro_rules_BANG] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_u8] = ACTIONS(1268), + [anon_sym_i8] = ACTIONS(1268), + [anon_sym_u16] = ACTIONS(1268), + [anon_sym_i16] = ACTIONS(1268), + [anon_sym_u32] = ACTIONS(1268), + [anon_sym_i32] = ACTIONS(1268), + [anon_sym_u64] = ACTIONS(1268), + [anon_sym_i64] = ACTIONS(1268), + [anon_sym_u128] = ACTIONS(1268), + [anon_sym_i128] = ACTIONS(1268), + [anon_sym_isize] = ACTIONS(1268), + [anon_sym_usize] = ACTIONS(1268), + [anon_sym_f32] = ACTIONS(1268), + [anon_sym_f64] = ACTIONS(1268), + [anon_sym_bool] = ACTIONS(1268), + [anon_sym_str] = ACTIONS(1268), + [anon_sym_char] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_fn] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_impl] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_loop] = ACTIONS(1268), + [anon_sym_match] = ACTIONS(1268), + [anon_sym_mod] = ACTIONS(1268), + [anon_sym_pub] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_trait] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_unsafe] = ACTIONS(1268), + [anon_sym_use] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_yield] = ACTIONS(1268), + [anon_sym_move] = ACTIONS(1268), + [sym_integer_literal] = ACTIONS(1266), + [aux_sym_string_literal_token1] = ACTIONS(1266), + [sym_char_literal] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_crate] = ACTIONS(1268), + [sym_metavariable] = ACTIONS(1266), + [sym_raw_string_literal] = ACTIONS(1266), + [sym_float_literal] = ACTIONS(1266), + [sym_block_comment] = ACTIONS(3), + }, + [297] = { + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_macro_rules_BANG] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_u8] = ACTIONS(1272), + [anon_sym_i8] = ACTIONS(1272), + [anon_sym_u16] = ACTIONS(1272), + [anon_sym_i16] = ACTIONS(1272), + [anon_sym_u32] = ACTIONS(1272), + [anon_sym_i32] = ACTIONS(1272), + [anon_sym_u64] = ACTIONS(1272), + [anon_sym_i64] = ACTIONS(1272), + [anon_sym_u128] = ACTIONS(1272), + [anon_sym_i128] = ACTIONS(1272), + [anon_sym_isize] = ACTIONS(1272), + [anon_sym_usize] = ACTIONS(1272), + [anon_sym_f32] = ACTIONS(1272), + [anon_sym_f64] = ACTIONS(1272), + [anon_sym_bool] = ACTIONS(1272), + [anon_sym_str] = ACTIONS(1272), + [anon_sym_char] = ACTIONS(1272), + [anon_sym_SQUOTE] = ACTIONS(1272), + [anon_sym_async] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_fn] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_impl] = ACTIONS(1272), + [anon_sym_let] = ACTIONS(1272), + [anon_sym_loop] = ACTIONS(1272), + [anon_sym_match] = ACTIONS(1272), + [anon_sym_mod] = ACTIONS(1272), + [anon_sym_pub] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_trait] = ACTIONS(1272), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_unsafe] = ACTIONS(1272), + [anon_sym_use] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_POUND] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym_LT] = ACTIONS(1270), + [anon_sym_COLON_COLON] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1270), + [anon_sym_PIPE] = ACTIONS(1270), + [anon_sym_yield] = ACTIONS(1272), + [anon_sym_move] = ACTIONS(1272), + [sym_integer_literal] = ACTIONS(1270), + [aux_sym_string_literal_token1] = ACTIONS(1270), + [sym_char_literal] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1272), + [anon_sym_false] = ACTIONS(1272), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1272), + [sym_super] = ACTIONS(1272), + [sym_crate] = ACTIONS(1272), + [sym_metavariable] = ACTIONS(1270), + [sym_raw_string_literal] = ACTIONS(1270), + [sym_float_literal] = ACTIONS(1270), + [sym_block_comment] = ACTIONS(3), + }, + [298] = { + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_macro_rules_BANG] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_u8] = ACTIONS(1276), + [anon_sym_i8] = ACTIONS(1276), + [anon_sym_u16] = ACTIONS(1276), + [anon_sym_i16] = ACTIONS(1276), + [anon_sym_u32] = ACTIONS(1276), + [anon_sym_i32] = ACTIONS(1276), + [anon_sym_u64] = ACTIONS(1276), + [anon_sym_i64] = ACTIONS(1276), + [anon_sym_u128] = ACTIONS(1276), + [anon_sym_i128] = ACTIONS(1276), + [anon_sym_isize] = ACTIONS(1276), + [anon_sym_usize] = ACTIONS(1276), + [anon_sym_f32] = ACTIONS(1276), + [anon_sym_f64] = ACTIONS(1276), + [anon_sym_bool] = ACTIONS(1276), + [anon_sym_str] = ACTIONS(1276), + [anon_sym_char] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_async] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_impl] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1276), + [anon_sym_loop] = ACTIONS(1276), + [anon_sym_match] = ACTIONS(1276), + [anon_sym_mod] = ACTIONS(1276), + [anon_sym_pub] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_trait] = ACTIONS(1276), + [anon_sym_type] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_unsafe] = ACTIONS(1276), + [anon_sym_use] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_yield] = ACTIONS(1276), + [anon_sym_move] = ACTIONS(1276), + [sym_integer_literal] = ACTIONS(1274), + [aux_sym_string_literal_token1] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1276), + [sym_super] = ACTIONS(1276), + [sym_crate] = ACTIONS(1276), + [sym_metavariable] = ACTIONS(1274), + [sym_raw_string_literal] = ACTIONS(1274), + [sym_float_literal] = ACTIONS(1274), + [sym_block_comment] = ACTIONS(3), + }, + [299] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_macro_rules_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_u8] = ACTIONS(1280), + [anon_sym_i8] = ACTIONS(1280), + [anon_sym_u16] = ACTIONS(1280), + [anon_sym_i16] = ACTIONS(1280), + [anon_sym_u32] = ACTIONS(1280), + [anon_sym_i32] = ACTIONS(1280), + [anon_sym_u64] = ACTIONS(1280), + [anon_sym_i64] = ACTIONS(1280), + [anon_sym_u128] = ACTIONS(1280), + [anon_sym_i128] = ACTIONS(1280), + [anon_sym_isize] = ACTIONS(1280), + [anon_sym_usize] = ACTIONS(1280), + [anon_sym_f32] = ACTIONS(1280), + [anon_sym_f64] = ACTIONS(1280), + [anon_sym_bool] = ACTIONS(1280), + [anon_sym_str] = ACTIONS(1280), + [anon_sym_char] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_fn] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1280), + [anon_sym_let] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1280), + [anon_sym_match] = ACTIONS(1280), + [anon_sym_mod] = ACTIONS(1280), + [anon_sym_pub] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_trait] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1280), + [anon_sym_use] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1278), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_DOT_DOT] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1278), + [anon_sym_yield] = ACTIONS(1280), + [anon_sym_move] = ACTIONS(1280), + [sym_integer_literal] = ACTIONS(1278), + [aux_sym_string_literal_token1] = ACTIONS(1278), + [sym_char_literal] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1280), + [sym_super] = ACTIONS(1280), + [sym_crate] = ACTIONS(1280), + [sym_metavariable] = ACTIONS(1278), + [sym_raw_string_literal] = ACTIONS(1278), + [sym_float_literal] = ACTIONS(1278), + [sym_block_comment] = ACTIONS(3), + }, + [300] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_macro_rules_BANG] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1284), + [anon_sym_i8] = ACTIONS(1284), + [anon_sym_u16] = ACTIONS(1284), + [anon_sym_i16] = ACTIONS(1284), + [anon_sym_u32] = ACTIONS(1284), + [anon_sym_i32] = ACTIONS(1284), + [anon_sym_u64] = ACTIONS(1284), + [anon_sym_i64] = ACTIONS(1284), + [anon_sym_u128] = ACTIONS(1284), + [anon_sym_i128] = ACTIONS(1284), + [anon_sym_isize] = ACTIONS(1284), + [anon_sym_usize] = ACTIONS(1284), + [anon_sym_f32] = ACTIONS(1284), + [anon_sym_f64] = ACTIONS(1284), + [anon_sym_bool] = ACTIONS(1284), + [anon_sym_str] = ACTIONS(1284), + [anon_sym_char] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_impl] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_loop] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1284), + [anon_sym_mod] = ACTIONS(1284), + [anon_sym_pub] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_trait] = ACTIONS(1284), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_use] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_COLON_COLON] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_yield] = ACTIONS(1284), + [anon_sym_move] = ACTIONS(1284), + [sym_integer_literal] = ACTIONS(1282), + [aux_sym_string_literal_token1] = ACTIONS(1282), + [sym_char_literal] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_crate] = ACTIONS(1284), + [sym_metavariable] = ACTIONS(1282), + [sym_raw_string_literal] = ACTIONS(1282), + [sym_float_literal] = ACTIONS(1282), + [sym_block_comment] = ACTIONS(3), + }, + [301] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_macro_rules_BANG] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_u8] = ACTIONS(1288), + [anon_sym_i8] = ACTIONS(1288), + [anon_sym_u16] = ACTIONS(1288), + [anon_sym_i16] = ACTIONS(1288), + [anon_sym_u32] = ACTIONS(1288), + [anon_sym_i32] = ACTIONS(1288), + [anon_sym_u64] = ACTIONS(1288), + [anon_sym_i64] = ACTIONS(1288), + [anon_sym_u128] = ACTIONS(1288), + [anon_sym_i128] = ACTIONS(1288), + [anon_sym_isize] = ACTIONS(1288), + [anon_sym_usize] = ACTIONS(1288), + [anon_sym_f32] = ACTIONS(1288), + [anon_sym_f64] = ACTIONS(1288), + [anon_sym_bool] = ACTIONS(1288), + [anon_sym_str] = ACTIONS(1288), + [anon_sym_char] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_impl] = ACTIONS(1288), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_loop] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_mod] = ACTIONS(1288), + [anon_sym_pub] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_trait] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_unsafe] = ACTIONS(1288), + [anon_sym_use] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_yield] = ACTIONS(1288), + [anon_sym_move] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1286), + [aux_sym_string_literal_token1] = ACTIONS(1286), + [sym_char_literal] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1286), + [sym_raw_string_literal] = ACTIONS(1286), + [sym_float_literal] = ACTIONS(1286), + [sym_block_comment] = ACTIONS(3), + }, + [302] = { + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_macro_rules_BANG] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u128] = ACTIONS(1292), + [anon_sym_i128] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_str] = ACTIONS(1292), + [anon_sym_char] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_fn] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_loop] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_mod] = ACTIONS(1292), + [anon_sym_pub] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_trait] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_unsafe] = ACTIONS(1292), + [anon_sym_use] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_yield] = ACTIONS(1292), + [anon_sym_move] = ACTIONS(1292), + [sym_integer_literal] = ACTIONS(1290), + [aux_sym_string_literal_token1] = ACTIONS(1290), + [sym_char_literal] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1292), + [sym_super] = ACTIONS(1292), + [sym_crate] = ACTIONS(1292), + [sym_metavariable] = ACTIONS(1290), + [sym_raw_string_literal] = ACTIONS(1290), + [sym_float_literal] = ACTIONS(1290), + [sym_block_comment] = ACTIONS(3), + }, + [303] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_macro_rules_BANG] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_u8] = ACTIONS(1296), + [anon_sym_i8] = ACTIONS(1296), + [anon_sym_u16] = ACTIONS(1296), + [anon_sym_i16] = ACTIONS(1296), + [anon_sym_u32] = ACTIONS(1296), + [anon_sym_i32] = ACTIONS(1296), + [anon_sym_u64] = ACTIONS(1296), + [anon_sym_i64] = ACTIONS(1296), + [anon_sym_u128] = ACTIONS(1296), + [anon_sym_i128] = ACTIONS(1296), + [anon_sym_isize] = ACTIONS(1296), + [anon_sym_usize] = ACTIONS(1296), + [anon_sym_f32] = ACTIONS(1296), + [anon_sym_f64] = ACTIONS(1296), + [anon_sym_bool] = ACTIONS(1296), + [anon_sym_str] = ACTIONS(1296), + [anon_sym_char] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_fn] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_impl] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_mod] = ACTIONS(1296), + [anon_sym_pub] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_trait] = ACTIONS(1296), + [anon_sym_type] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1296), + [anon_sym_move] = ACTIONS(1296), + [sym_integer_literal] = ACTIONS(1294), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1296), + [sym_super] = ACTIONS(1296), + [sym_crate] = ACTIONS(1296), + [sym_metavariable] = ACTIONS(1294), + [sym_raw_string_literal] = ACTIONS(1294), + [sym_float_literal] = ACTIONS(1294), + [sym_block_comment] = ACTIONS(3), + }, + [304] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_macro_rules_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_u8] = ACTIONS(1300), + [anon_sym_i8] = ACTIONS(1300), + [anon_sym_u16] = ACTIONS(1300), + [anon_sym_i16] = ACTIONS(1300), + [anon_sym_u32] = ACTIONS(1300), + [anon_sym_i32] = ACTIONS(1300), + [anon_sym_u64] = ACTIONS(1300), + [anon_sym_i64] = ACTIONS(1300), + [anon_sym_u128] = ACTIONS(1300), + [anon_sym_i128] = ACTIONS(1300), + [anon_sym_isize] = ACTIONS(1300), + [anon_sym_usize] = ACTIONS(1300), + [anon_sym_f32] = ACTIONS(1300), + [anon_sym_f64] = ACTIONS(1300), + [anon_sym_bool] = ACTIONS(1300), + [anon_sym_str] = ACTIONS(1300), + [anon_sym_char] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_async] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_fn] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_impl] = ACTIONS(1300), + [anon_sym_let] = ACTIONS(1300), + [anon_sym_loop] = ACTIONS(1300), + [anon_sym_match] = ACTIONS(1300), + [anon_sym_mod] = ACTIONS(1300), + [anon_sym_pub] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_trait] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_unsafe] = ACTIONS(1300), + [anon_sym_use] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_DOT_DOT] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PIPE] = ACTIONS(1298), + [anon_sym_yield] = ACTIONS(1300), + [anon_sym_move] = ACTIONS(1300), + [sym_integer_literal] = ACTIONS(1298), + [aux_sym_string_literal_token1] = ACTIONS(1298), + [sym_char_literal] = ACTIONS(1298), + [anon_sym_true] = ACTIONS(1300), + [anon_sym_false] = ACTIONS(1300), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1300), + [sym_super] = ACTIONS(1300), + [sym_crate] = ACTIONS(1300), + [sym_metavariable] = ACTIONS(1298), + [sym_raw_string_literal] = ACTIONS(1298), + [sym_float_literal] = ACTIONS(1298), + [sym_block_comment] = ACTIONS(3), + }, + [305] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_macro_rules_BANG] = ACTIONS(1302), + [anon_sym_LPAREN] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_u8] = ACTIONS(1304), + [anon_sym_i8] = ACTIONS(1304), + [anon_sym_u16] = ACTIONS(1304), + [anon_sym_i16] = ACTIONS(1304), + [anon_sym_u32] = ACTIONS(1304), + [anon_sym_i32] = ACTIONS(1304), + [anon_sym_u64] = ACTIONS(1304), + [anon_sym_i64] = ACTIONS(1304), + [anon_sym_u128] = ACTIONS(1304), + [anon_sym_i128] = ACTIONS(1304), + [anon_sym_isize] = ACTIONS(1304), + [anon_sym_usize] = ACTIONS(1304), + [anon_sym_f32] = ACTIONS(1304), + [anon_sym_f64] = ACTIONS(1304), + [anon_sym_bool] = ACTIONS(1304), + [anon_sym_str] = ACTIONS(1304), + [anon_sym_char] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_async] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_fn] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_impl] = ACTIONS(1304), + [anon_sym_let] = ACTIONS(1304), + [anon_sym_loop] = ACTIONS(1304), + [anon_sym_match] = ACTIONS(1304), + [anon_sym_mod] = ACTIONS(1304), + [anon_sym_pub] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_trait] = ACTIONS(1304), + [anon_sym_type] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_unsafe] = ACTIONS(1304), + [anon_sym_use] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_POUND] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1302), + [anon_sym_COLON_COLON] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_DOT_DOT] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1302), + [anon_sym_yield] = ACTIONS(1304), + [anon_sym_move] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1302), + [aux_sym_string_literal_token1] = ACTIONS(1302), + [sym_char_literal] = ACTIONS(1302), + [anon_sym_true] = ACTIONS(1304), + [anon_sym_false] = ACTIONS(1304), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1304), + [sym_super] = ACTIONS(1304), + [sym_crate] = ACTIONS(1304), + [sym_metavariable] = ACTIONS(1302), + [sym_raw_string_literal] = ACTIONS(1302), + [sym_float_literal] = ACTIONS(1302), + [sym_block_comment] = ACTIONS(3), + }, + [306] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_macro_rules_BANG] = ACTIONS(1306), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(1308), + [anon_sym_i8] = ACTIONS(1308), + [anon_sym_u16] = ACTIONS(1308), + [anon_sym_i16] = ACTIONS(1308), + [anon_sym_u32] = ACTIONS(1308), + [anon_sym_i32] = ACTIONS(1308), + [anon_sym_u64] = ACTIONS(1308), + [anon_sym_i64] = ACTIONS(1308), + [anon_sym_u128] = ACTIONS(1308), + [anon_sym_i128] = ACTIONS(1308), + [anon_sym_isize] = ACTIONS(1308), + [anon_sym_usize] = ACTIONS(1308), + [anon_sym_f32] = ACTIONS(1308), + [anon_sym_f64] = ACTIONS(1308), + [anon_sym_bool] = ACTIONS(1308), + [anon_sym_str] = ACTIONS(1308), + [anon_sym_char] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_async] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_fn] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_impl] = ACTIONS(1308), + [anon_sym_let] = ACTIONS(1308), + [anon_sym_loop] = ACTIONS(1308), + [anon_sym_match] = ACTIONS(1308), + [anon_sym_mod] = ACTIONS(1308), + [anon_sym_pub] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_trait] = ACTIONS(1308), + [anon_sym_type] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_unsafe] = ACTIONS(1308), + [anon_sym_use] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym_LT] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_DOT_DOT] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1306), + [anon_sym_yield] = ACTIONS(1308), + [anon_sym_move] = ACTIONS(1308), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1306), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1308), + [anon_sym_false] = ACTIONS(1308), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1308), + [sym_super] = ACTIONS(1308), + [sym_crate] = ACTIONS(1308), + [sym_metavariable] = ACTIONS(1306), + [sym_raw_string_literal] = ACTIONS(1306), + [sym_float_literal] = ACTIONS(1306), + [sym_block_comment] = ACTIONS(3), + }, + [307] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_macro_rules_BANG] = ACTIONS(1310), + [anon_sym_LPAREN] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_LBRACK] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_u8] = ACTIONS(1312), + [anon_sym_i8] = ACTIONS(1312), + [anon_sym_u16] = ACTIONS(1312), + [anon_sym_i16] = ACTIONS(1312), + [anon_sym_u32] = ACTIONS(1312), + [anon_sym_i32] = ACTIONS(1312), + [anon_sym_u64] = ACTIONS(1312), + [anon_sym_i64] = ACTIONS(1312), + [anon_sym_u128] = ACTIONS(1312), + [anon_sym_i128] = ACTIONS(1312), + [anon_sym_isize] = ACTIONS(1312), + [anon_sym_usize] = ACTIONS(1312), + [anon_sym_f32] = ACTIONS(1312), + [anon_sym_f64] = ACTIONS(1312), + [anon_sym_bool] = ACTIONS(1312), + [anon_sym_str] = ACTIONS(1312), + [anon_sym_char] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_async] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_fn] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_impl] = ACTIONS(1312), + [anon_sym_let] = ACTIONS(1312), + [anon_sym_loop] = ACTIONS(1312), + [anon_sym_match] = ACTIONS(1312), + [anon_sym_mod] = ACTIONS(1312), + [anon_sym_pub] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_trait] = ACTIONS(1312), + [anon_sym_type] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_unsafe] = ACTIONS(1312), + [anon_sym_use] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_POUND] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym_LT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PIPE] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_move] = ACTIONS(1312), + [sym_integer_literal] = ACTIONS(1310), + [aux_sym_string_literal_token1] = ACTIONS(1310), + [sym_char_literal] = ACTIONS(1310), + [anon_sym_true] = ACTIONS(1312), + [anon_sym_false] = ACTIONS(1312), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1312), + [sym_crate] = ACTIONS(1312), + [sym_metavariable] = ACTIONS(1310), + [sym_raw_string_literal] = ACTIONS(1310), + [sym_float_literal] = ACTIONS(1310), + [sym_block_comment] = ACTIONS(3), + }, + [308] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_macro_rules_BANG] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_LBRACK] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_POUND] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_DOT_DOT] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_yield] = ACTIONS(1316), + [anon_sym_move] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1314), + [aux_sym_string_literal_token1] = ACTIONS(1314), + [sym_char_literal] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1316), + [anon_sym_false] = ACTIONS(1316), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1314), + [sym_raw_string_literal] = ACTIONS(1314), + [sym_float_literal] = ACTIONS(1314), + [sym_block_comment] = ACTIONS(3), + }, + [309] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_macro_rules_BANG] = ACTIONS(1318), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_u8] = ACTIONS(1320), + [anon_sym_i8] = ACTIONS(1320), + [anon_sym_u16] = ACTIONS(1320), + [anon_sym_i16] = ACTIONS(1320), + [anon_sym_u32] = ACTIONS(1320), + [anon_sym_i32] = ACTIONS(1320), + [anon_sym_u64] = ACTIONS(1320), + [anon_sym_i64] = ACTIONS(1320), + [anon_sym_u128] = ACTIONS(1320), + [anon_sym_i128] = ACTIONS(1320), + [anon_sym_isize] = ACTIONS(1320), + [anon_sym_usize] = ACTIONS(1320), + [anon_sym_f32] = ACTIONS(1320), + [anon_sym_f64] = ACTIONS(1320), + [anon_sym_bool] = ACTIONS(1320), + [anon_sym_str] = ACTIONS(1320), + [anon_sym_char] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_async] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_fn] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_impl] = ACTIONS(1320), + [anon_sym_let] = ACTIONS(1320), + [anon_sym_loop] = ACTIONS(1320), + [anon_sym_match] = ACTIONS(1320), + [anon_sym_mod] = ACTIONS(1320), + [anon_sym_pub] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_trait] = ACTIONS(1320), + [anon_sym_type] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_unsafe] = ACTIONS(1320), + [anon_sym_use] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1318), + [anon_sym_COLON_COLON] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_DOT_DOT] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PIPE] = ACTIONS(1318), + [anon_sym_yield] = ACTIONS(1320), + [anon_sym_move] = ACTIONS(1320), + [sym_integer_literal] = ACTIONS(1318), + [aux_sym_string_literal_token1] = ACTIONS(1318), + [sym_char_literal] = ACTIONS(1318), + [anon_sym_true] = ACTIONS(1320), + [anon_sym_false] = ACTIONS(1320), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1320), + [sym_super] = ACTIONS(1320), + [sym_crate] = ACTIONS(1320), + [sym_metavariable] = ACTIONS(1318), + [sym_raw_string_literal] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1318), + [sym_block_comment] = ACTIONS(3), + }, + [310] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_macro_rules_BANG] = ACTIONS(1322), + [anon_sym_LPAREN] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_u8] = ACTIONS(1324), + [anon_sym_i8] = ACTIONS(1324), + [anon_sym_u16] = ACTIONS(1324), + [anon_sym_i16] = ACTIONS(1324), + [anon_sym_u32] = ACTIONS(1324), + [anon_sym_i32] = ACTIONS(1324), + [anon_sym_u64] = ACTIONS(1324), + [anon_sym_i64] = ACTIONS(1324), + [anon_sym_u128] = ACTIONS(1324), + [anon_sym_i128] = ACTIONS(1324), + [anon_sym_isize] = ACTIONS(1324), + [anon_sym_usize] = ACTIONS(1324), + [anon_sym_f32] = ACTIONS(1324), + [anon_sym_f64] = ACTIONS(1324), + [anon_sym_bool] = ACTIONS(1324), + [anon_sym_str] = ACTIONS(1324), + [anon_sym_char] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_async] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_fn] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_impl] = ACTIONS(1324), + [anon_sym_let] = ACTIONS(1324), + [anon_sym_loop] = ACTIONS(1324), + [anon_sym_match] = ACTIONS(1324), + [anon_sym_mod] = ACTIONS(1324), + [anon_sym_pub] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_trait] = ACTIONS(1324), + [anon_sym_type] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_unsafe] = ACTIONS(1324), + [anon_sym_use] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_POUND] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_COLON_COLON] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1324), + [anon_sym_move] = ACTIONS(1324), + [sym_integer_literal] = ACTIONS(1322), + [aux_sym_string_literal_token1] = ACTIONS(1322), + [sym_char_literal] = ACTIONS(1322), + [anon_sym_true] = ACTIONS(1324), + [anon_sym_false] = ACTIONS(1324), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1324), + [sym_super] = ACTIONS(1324), + [sym_crate] = ACTIONS(1324), + [sym_metavariable] = ACTIONS(1322), + [sym_raw_string_literal] = ACTIONS(1322), + [sym_float_literal] = ACTIONS(1322), + [sym_block_comment] = ACTIONS(3), + }, + [311] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_macro_rules_BANG] = ACTIONS(1326), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_u8] = ACTIONS(1328), + [anon_sym_i8] = ACTIONS(1328), + [anon_sym_u16] = ACTIONS(1328), + [anon_sym_i16] = ACTIONS(1328), + [anon_sym_u32] = ACTIONS(1328), + [anon_sym_i32] = ACTIONS(1328), + [anon_sym_u64] = ACTIONS(1328), + [anon_sym_i64] = ACTIONS(1328), + [anon_sym_u128] = ACTIONS(1328), + [anon_sym_i128] = ACTIONS(1328), + [anon_sym_isize] = ACTIONS(1328), + [anon_sym_usize] = ACTIONS(1328), + [anon_sym_f32] = ACTIONS(1328), + [anon_sym_f64] = ACTIONS(1328), + [anon_sym_bool] = ACTIONS(1328), + [anon_sym_str] = ACTIONS(1328), + [anon_sym_char] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_async] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_fn] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_impl] = ACTIONS(1328), + [anon_sym_let] = ACTIONS(1328), + [anon_sym_loop] = ACTIONS(1328), + [anon_sym_match] = ACTIONS(1328), + [anon_sym_mod] = ACTIONS(1328), + [anon_sym_pub] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_trait] = ACTIONS(1328), + [anon_sym_type] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_unsafe] = ACTIONS(1328), + [anon_sym_use] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_POUND] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1326), + [anon_sym_COLON_COLON] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1326), + [anon_sym_yield] = ACTIONS(1328), + [anon_sym_move] = ACTIONS(1328), + [sym_integer_literal] = ACTIONS(1326), + [aux_sym_string_literal_token1] = ACTIONS(1326), + [sym_char_literal] = ACTIONS(1326), + [anon_sym_true] = ACTIONS(1328), + [anon_sym_false] = ACTIONS(1328), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_crate] = ACTIONS(1328), + [sym_metavariable] = ACTIONS(1326), + [sym_raw_string_literal] = ACTIONS(1326), + [sym_float_literal] = ACTIONS(1326), + [sym_block_comment] = ACTIONS(3), + }, + [312] = { + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_macro_rules_BANG] = ACTIONS(1330), + [anon_sym_LPAREN] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_u8] = ACTIONS(1332), + [anon_sym_i8] = ACTIONS(1332), + [anon_sym_u16] = ACTIONS(1332), + [anon_sym_i16] = ACTIONS(1332), + [anon_sym_u32] = ACTIONS(1332), + [anon_sym_i32] = ACTIONS(1332), + [anon_sym_u64] = ACTIONS(1332), + [anon_sym_i64] = ACTIONS(1332), + [anon_sym_u128] = ACTIONS(1332), + [anon_sym_i128] = ACTIONS(1332), + [anon_sym_isize] = ACTIONS(1332), + [anon_sym_usize] = ACTIONS(1332), + [anon_sym_f32] = ACTIONS(1332), + [anon_sym_f64] = ACTIONS(1332), + [anon_sym_bool] = ACTIONS(1332), + [anon_sym_str] = ACTIONS(1332), + [anon_sym_char] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_async] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_fn] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_impl] = ACTIONS(1332), + [anon_sym_let] = ACTIONS(1332), + [anon_sym_loop] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1332), + [anon_sym_mod] = ACTIONS(1332), + [anon_sym_pub] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_trait] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_unsafe] = ACTIONS(1332), + [anon_sym_use] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_POUND] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1330), + [anon_sym_COLON_COLON] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_DOT_DOT] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1330), + [anon_sym_yield] = ACTIONS(1332), + [anon_sym_move] = ACTIONS(1332), + [sym_integer_literal] = ACTIONS(1330), + [aux_sym_string_literal_token1] = ACTIONS(1330), + [sym_char_literal] = ACTIONS(1330), + [anon_sym_true] = ACTIONS(1332), + [anon_sym_false] = ACTIONS(1332), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1332), + [sym_super] = ACTIONS(1332), + [sym_crate] = ACTIONS(1332), + [sym_metavariable] = ACTIONS(1330), + [sym_raw_string_literal] = ACTIONS(1330), + [sym_float_literal] = ACTIONS(1330), + [sym_block_comment] = ACTIONS(3), + }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_macro_rules_BANG] = ACTIONS(1334), + [anon_sym_LPAREN] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_u8] = ACTIONS(1336), + [anon_sym_i8] = ACTIONS(1336), + [anon_sym_u16] = ACTIONS(1336), + [anon_sym_i16] = ACTIONS(1336), + [anon_sym_u32] = ACTIONS(1336), + [anon_sym_i32] = ACTIONS(1336), + [anon_sym_u64] = ACTIONS(1336), + [anon_sym_i64] = ACTIONS(1336), + [anon_sym_u128] = ACTIONS(1336), + [anon_sym_i128] = ACTIONS(1336), + [anon_sym_isize] = ACTIONS(1336), + [anon_sym_usize] = ACTIONS(1336), + [anon_sym_f32] = ACTIONS(1336), + [anon_sym_f64] = ACTIONS(1336), + [anon_sym_bool] = ACTIONS(1336), + [anon_sym_str] = ACTIONS(1336), + [anon_sym_char] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_fn] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_impl] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_loop] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_mod] = ACTIONS(1336), + [anon_sym_pub] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_trait] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_unsafe] = ACTIONS(1336), + [anon_sym_use] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1334), + [anon_sym_COLON_COLON] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1334), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_move] = ACTIONS(1336), + [sym_integer_literal] = ACTIONS(1334), + [aux_sym_string_literal_token1] = ACTIONS(1334), + [sym_char_literal] = ACTIONS(1334), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_crate] = ACTIONS(1336), + [sym_metavariable] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1334), + [sym_float_literal] = ACTIONS(1334), + [sym_block_comment] = ACTIONS(3), + }, + [314] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_macro_rules_BANG] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_POUND] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_yield] = ACTIONS(1340), + [anon_sym_move] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1338), + [aux_sym_string_literal_token1] = ACTIONS(1338), + [sym_char_literal] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1338), + [sym_raw_string_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1338), + [sym_block_comment] = ACTIONS(3), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_macro_rules_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_u8] = ACTIONS(1344), + [anon_sym_i8] = ACTIONS(1344), + [anon_sym_u16] = ACTIONS(1344), + [anon_sym_i16] = ACTIONS(1344), + [anon_sym_u32] = ACTIONS(1344), + [anon_sym_i32] = ACTIONS(1344), + [anon_sym_u64] = ACTIONS(1344), + [anon_sym_i64] = ACTIONS(1344), + [anon_sym_u128] = ACTIONS(1344), + [anon_sym_i128] = ACTIONS(1344), + [anon_sym_isize] = ACTIONS(1344), + [anon_sym_usize] = ACTIONS(1344), + [anon_sym_f32] = ACTIONS(1344), + [anon_sym_f64] = ACTIONS(1344), + [anon_sym_bool] = ACTIONS(1344), + [anon_sym_str] = ACTIONS(1344), + [anon_sym_char] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_async] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_fn] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_impl] = ACTIONS(1344), + [anon_sym_let] = ACTIONS(1344), + [anon_sym_loop] = ACTIONS(1344), + [anon_sym_match] = ACTIONS(1344), + [anon_sym_mod] = ACTIONS(1344), + [anon_sym_pub] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_trait] = ACTIONS(1344), + [anon_sym_type] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_unsafe] = ACTIONS(1344), + [anon_sym_use] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_POUND] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym_LT] = ACTIONS(1342), + [anon_sym_COLON_COLON] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_DOT_DOT] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1342), + [anon_sym_yield] = ACTIONS(1344), + [anon_sym_move] = ACTIONS(1344), + [sym_integer_literal] = ACTIONS(1342), + [aux_sym_string_literal_token1] = ACTIONS(1342), + [sym_char_literal] = ACTIONS(1342), + [anon_sym_true] = ACTIONS(1344), + [anon_sym_false] = ACTIONS(1344), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1344), + [sym_crate] = ACTIONS(1344), + [sym_metavariable] = ACTIONS(1342), + [sym_raw_string_literal] = ACTIONS(1342), + [sym_float_literal] = ACTIONS(1342), + [sym_block_comment] = ACTIONS(3), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_macro_rules_BANG] = ACTIONS(1346), + [anon_sym_LPAREN] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_u8] = ACTIONS(1348), + [anon_sym_i8] = ACTIONS(1348), + [anon_sym_u16] = ACTIONS(1348), + [anon_sym_i16] = ACTIONS(1348), + [anon_sym_u32] = ACTIONS(1348), + [anon_sym_i32] = ACTIONS(1348), + [anon_sym_u64] = ACTIONS(1348), + [anon_sym_i64] = ACTIONS(1348), + [anon_sym_u128] = ACTIONS(1348), + [anon_sym_i128] = ACTIONS(1348), + [anon_sym_isize] = ACTIONS(1348), + [anon_sym_usize] = ACTIONS(1348), + [anon_sym_f32] = ACTIONS(1348), + [anon_sym_f64] = ACTIONS(1348), + [anon_sym_bool] = ACTIONS(1348), + [anon_sym_str] = ACTIONS(1348), + [anon_sym_char] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_async] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_fn] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_impl] = ACTIONS(1348), + [anon_sym_let] = ACTIONS(1348), + [anon_sym_loop] = ACTIONS(1348), + [anon_sym_match] = ACTIONS(1348), + [anon_sym_mod] = ACTIONS(1348), + [anon_sym_pub] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_trait] = ACTIONS(1348), + [anon_sym_type] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_unsafe] = ACTIONS(1348), + [anon_sym_use] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_POUND] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(1346), + [anon_sym_COLON_COLON] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PIPE] = ACTIONS(1346), + [anon_sym_yield] = ACTIONS(1348), + [anon_sym_move] = ACTIONS(1348), + [sym_integer_literal] = ACTIONS(1346), + [aux_sym_string_literal_token1] = ACTIONS(1346), + [sym_char_literal] = ACTIONS(1346), + [anon_sym_true] = ACTIONS(1348), + [anon_sym_false] = ACTIONS(1348), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1348), + [sym_super] = ACTIONS(1348), + [sym_crate] = ACTIONS(1348), + [sym_metavariable] = ACTIONS(1346), + [sym_raw_string_literal] = ACTIONS(1346), + [sym_float_literal] = ACTIONS(1346), + [sym_block_comment] = ACTIONS(3), + }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_macro_rules_BANG] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_u8] = ACTIONS(1352), + [anon_sym_i8] = ACTIONS(1352), + [anon_sym_u16] = ACTIONS(1352), + [anon_sym_i16] = ACTIONS(1352), + [anon_sym_u32] = ACTIONS(1352), + [anon_sym_i32] = ACTIONS(1352), + [anon_sym_u64] = ACTIONS(1352), + [anon_sym_i64] = ACTIONS(1352), + [anon_sym_u128] = ACTIONS(1352), + [anon_sym_i128] = ACTIONS(1352), + [anon_sym_isize] = ACTIONS(1352), + [anon_sym_usize] = ACTIONS(1352), + [anon_sym_f32] = ACTIONS(1352), + [anon_sym_f64] = ACTIONS(1352), + [anon_sym_bool] = ACTIONS(1352), + [anon_sym_str] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_fn] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_impl] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_loop] = ACTIONS(1352), + [anon_sym_match] = ACTIONS(1352), + [anon_sym_mod] = ACTIONS(1352), + [anon_sym_pub] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_trait] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_unsafe] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1350), + [anon_sym_COLON_COLON] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_DOT_DOT] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_yield] = ACTIONS(1352), + [anon_sym_move] = ACTIONS(1352), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1350), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1352), + [sym_crate] = ACTIONS(1352), + [sym_metavariable] = ACTIONS(1350), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), + [sym_block_comment] = ACTIONS(3), + }, + [318] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_macro_rules_BANG] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_u8] = ACTIONS(1356), + [anon_sym_i8] = ACTIONS(1356), + [anon_sym_u16] = ACTIONS(1356), + [anon_sym_i16] = ACTIONS(1356), + [anon_sym_u32] = ACTIONS(1356), + [anon_sym_i32] = ACTIONS(1356), + [anon_sym_u64] = ACTIONS(1356), + [anon_sym_i64] = ACTIONS(1356), + [anon_sym_u128] = ACTIONS(1356), + [anon_sym_i128] = ACTIONS(1356), + [anon_sym_isize] = ACTIONS(1356), + [anon_sym_usize] = ACTIONS(1356), + [anon_sym_f32] = ACTIONS(1356), + [anon_sym_f64] = ACTIONS(1356), + [anon_sym_bool] = ACTIONS(1356), + [anon_sym_str] = ACTIONS(1356), + [anon_sym_char] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_async] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_fn] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_impl] = ACTIONS(1356), + [anon_sym_let] = ACTIONS(1356), + [anon_sym_loop] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_mod] = ACTIONS(1356), + [anon_sym_pub] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_trait] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_unsafe] = ACTIONS(1356), + [anon_sym_use] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1354), + [anon_sym_COLON_COLON] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_DOT_DOT] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1354), + [anon_sym_yield] = ACTIONS(1356), + [anon_sym_move] = ACTIONS(1356), + [sym_integer_literal] = ACTIONS(1354), + [aux_sym_string_literal_token1] = ACTIONS(1354), + [sym_char_literal] = ACTIONS(1354), + [anon_sym_true] = ACTIONS(1356), + [anon_sym_false] = ACTIONS(1356), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1356), + [sym_super] = ACTIONS(1356), + [sym_crate] = ACTIONS(1356), + [sym_metavariable] = ACTIONS(1354), + [sym_raw_string_literal] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1354), + [sym_block_comment] = ACTIONS(3), + }, + [319] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_macro_rules_BANG] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_u8] = ACTIONS(1360), + [anon_sym_i8] = ACTIONS(1360), + [anon_sym_u16] = ACTIONS(1360), + [anon_sym_i16] = ACTIONS(1360), + [anon_sym_u32] = ACTIONS(1360), + [anon_sym_i32] = ACTIONS(1360), + [anon_sym_u64] = ACTIONS(1360), + [anon_sym_i64] = ACTIONS(1360), + [anon_sym_u128] = ACTIONS(1360), + [anon_sym_i128] = ACTIONS(1360), + [anon_sym_isize] = ACTIONS(1360), + [anon_sym_usize] = ACTIONS(1360), + [anon_sym_f32] = ACTIONS(1360), + [anon_sym_f64] = ACTIONS(1360), + [anon_sym_bool] = ACTIONS(1360), + [anon_sym_str] = ACTIONS(1360), + [anon_sym_char] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_fn] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_impl] = ACTIONS(1360), + [anon_sym_let] = ACTIONS(1360), + [anon_sym_loop] = ACTIONS(1360), + [anon_sym_match] = ACTIONS(1360), + [anon_sym_mod] = ACTIONS(1360), + [anon_sym_pub] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_trait] = ACTIONS(1360), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_unsafe] = ACTIONS(1360), + [anon_sym_use] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_POUND] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_yield] = ACTIONS(1360), + [anon_sym_move] = ACTIONS(1360), + [sym_integer_literal] = ACTIONS(1358), + [aux_sym_string_literal_token1] = ACTIONS(1358), + [sym_char_literal] = ACTIONS(1358), + [anon_sym_true] = ACTIONS(1360), + [anon_sym_false] = ACTIONS(1360), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1360), + [sym_super] = ACTIONS(1360), + [sym_crate] = ACTIONS(1360), + [sym_metavariable] = ACTIONS(1358), + [sym_raw_string_literal] = ACTIONS(1358), + [sym_float_literal] = ACTIONS(1358), + [sym_block_comment] = ACTIONS(3), + }, + [320] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_macro_rules_BANG] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_u8] = ACTIONS(1364), + [anon_sym_i8] = ACTIONS(1364), + [anon_sym_u16] = ACTIONS(1364), + [anon_sym_i16] = ACTIONS(1364), + [anon_sym_u32] = ACTIONS(1364), + [anon_sym_i32] = ACTIONS(1364), + [anon_sym_u64] = ACTIONS(1364), + [anon_sym_i64] = ACTIONS(1364), + [anon_sym_u128] = ACTIONS(1364), + [anon_sym_i128] = ACTIONS(1364), + [anon_sym_isize] = ACTIONS(1364), + [anon_sym_usize] = ACTIONS(1364), + [anon_sym_f32] = ACTIONS(1364), + [anon_sym_f64] = ACTIONS(1364), + [anon_sym_bool] = ACTIONS(1364), + [anon_sym_str] = ACTIONS(1364), + [anon_sym_char] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_async] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_fn] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_impl] = ACTIONS(1364), + [anon_sym_let] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_mod] = ACTIONS(1364), + [anon_sym_pub] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_trait] = ACTIONS(1364), + [anon_sym_type] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_unsafe] = ACTIONS(1364), + [anon_sym_use] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1362), + [anon_sym_COLON_COLON] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_yield] = ACTIONS(1364), + [anon_sym_move] = ACTIONS(1364), + [sym_integer_literal] = ACTIONS(1362), + [aux_sym_string_literal_token1] = ACTIONS(1362), + [sym_char_literal] = ACTIONS(1362), + [anon_sym_true] = ACTIONS(1364), + [anon_sym_false] = ACTIONS(1364), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1364), + [sym_super] = ACTIONS(1364), + [sym_crate] = ACTIONS(1364), + [sym_metavariable] = ACTIONS(1362), + [sym_raw_string_literal] = ACTIONS(1362), + [sym_float_literal] = ACTIONS(1362), + [sym_block_comment] = ACTIONS(3), + }, + [321] = { + [ts_builtin_sym_end] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_macro_rules_BANG] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_u8] = ACTIONS(1368), + [anon_sym_i8] = ACTIONS(1368), + [anon_sym_u16] = ACTIONS(1368), + [anon_sym_i16] = ACTIONS(1368), + [anon_sym_u32] = ACTIONS(1368), + [anon_sym_i32] = ACTIONS(1368), + [anon_sym_u64] = ACTIONS(1368), + [anon_sym_i64] = ACTIONS(1368), + [anon_sym_u128] = ACTIONS(1368), + [anon_sym_i128] = ACTIONS(1368), + [anon_sym_isize] = ACTIONS(1368), + [anon_sym_usize] = ACTIONS(1368), + [anon_sym_f32] = ACTIONS(1368), + [anon_sym_f64] = ACTIONS(1368), + [anon_sym_bool] = ACTIONS(1368), + [anon_sym_str] = ACTIONS(1368), + [anon_sym_char] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_async] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_fn] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_impl] = ACTIONS(1368), + [anon_sym_let] = ACTIONS(1368), + [anon_sym_loop] = ACTIONS(1368), + [anon_sym_match] = ACTIONS(1368), + [anon_sym_mod] = ACTIONS(1368), + [anon_sym_pub] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_trait] = ACTIONS(1368), + [anon_sym_type] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_unsafe] = ACTIONS(1368), + [anon_sym_use] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1366), + [anon_sym_yield] = ACTIONS(1368), + [anon_sym_move] = ACTIONS(1368), + [sym_integer_literal] = ACTIONS(1366), + [aux_sym_string_literal_token1] = ACTIONS(1366), + [sym_char_literal] = ACTIONS(1366), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1368), + [sym_super] = ACTIONS(1368), + [sym_crate] = ACTIONS(1368), + [sym_metavariable] = ACTIONS(1366), + [sym_raw_string_literal] = ACTIONS(1366), + [sym_float_literal] = ACTIONS(1366), + [sym_block_comment] = ACTIONS(3), + }, + [322] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_macro_rules_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_u8] = ACTIONS(1372), + [anon_sym_i8] = ACTIONS(1372), + [anon_sym_u16] = ACTIONS(1372), + [anon_sym_i16] = ACTIONS(1372), + [anon_sym_u32] = ACTIONS(1372), + [anon_sym_i32] = ACTIONS(1372), + [anon_sym_u64] = ACTIONS(1372), + [anon_sym_i64] = ACTIONS(1372), + [anon_sym_u128] = ACTIONS(1372), + [anon_sym_i128] = ACTIONS(1372), + [anon_sym_isize] = ACTIONS(1372), + [anon_sym_usize] = ACTIONS(1372), + [anon_sym_f32] = ACTIONS(1372), + [anon_sym_f64] = ACTIONS(1372), + [anon_sym_bool] = ACTIONS(1372), + [anon_sym_str] = ACTIONS(1372), + [anon_sym_char] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_async] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_fn] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_impl] = ACTIONS(1372), + [anon_sym_let] = ACTIONS(1372), + [anon_sym_loop] = ACTIONS(1372), + [anon_sym_match] = ACTIONS(1372), + [anon_sym_mod] = ACTIONS(1372), + [anon_sym_pub] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_trait] = ACTIONS(1372), + [anon_sym_type] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_unsafe] = ACTIONS(1372), + [anon_sym_use] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1370), + [anon_sym_COLON_COLON] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_DOT_DOT] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1370), + [anon_sym_yield] = ACTIONS(1372), + [anon_sym_move] = ACTIONS(1372), + [sym_integer_literal] = ACTIONS(1370), + [aux_sym_string_literal_token1] = ACTIONS(1370), + [sym_char_literal] = ACTIONS(1370), + [anon_sym_true] = ACTIONS(1372), + [anon_sym_false] = ACTIONS(1372), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_crate] = ACTIONS(1372), + [sym_metavariable] = ACTIONS(1370), + [sym_raw_string_literal] = ACTIONS(1370), + [sym_float_literal] = ACTIONS(1370), + [sym_block_comment] = ACTIONS(3), + }, + [323] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_macro_rules_BANG] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_async] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_fn] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_impl] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_mod] = ACTIONS(1376), + [anon_sym_pub] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_trait] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_unsafe] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_COLON_COLON] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_DOT_DOT] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_yield] = ACTIONS(1376), + [anon_sym_move] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1374), + [aux_sym_string_literal_token1] = ACTIONS(1374), + [sym_char_literal] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1374), + [sym_raw_string_literal] = ACTIONS(1374), + [sym_float_literal] = ACTIONS(1374), + [sym_block_comment] = ACTIONS(3), + }, + [324] = { + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_macro_rules_BANG] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1380), + [anon_sym_i8] = ACTIONS(1380), + [anon_sym_u16] = ACTIONS(1380), + [anon_sym_i16] = ACTIONS(1380), + [anon_sym_u32] = ACTIONS(1380), + [anon_sym_i32] = ACTIONS(1380), + [anon_sym_u64] = ACTIONS(1380), + [anon_sym_i64] = ACTIONS(1380), + [anon_sym_u128] = ACTIONS(1380), + [anon_sym_i128] = ACTIONS(1380), + [anon_sym_isize] = ACTIONS(1380), + [anon_sym_usize] = ACTIONS(1380), + [anon_sym_f32] = ACTIONS(1380), + [anon_sym_f64] = ACTIONS(1380), + [anon_sym_bool] = ACTIONS(1380), + [anon_sym_str] = ACTIONS(1380), + [anon_sym_char] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_async] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_impl] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1380), + [anon_sym_loop] = ACTIONS(1380), + [anon_sym_match] = ACTIONS(1380), + [anon_sym_mod] = ACTIONS(1380), + [anon_sym_pub] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_trait] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1380), + [anon_sym_use] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1378), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_DOT_DOT] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1378), + [anon_sym_yield] = ACTIONS(1380), + [anon_sym_move] = ACTIONS(1380), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1380), + [anon_sym_false] = ACTIONS(1380), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1380), + [sym_super] = ACTIONS(1380), + [sym_crate] = ACTIONS(1380), + [sym_metavariable] = ACTIONS(1378), + [sym_raw_string_literal] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), + [sym_block_comment] = ACTIONS(3), + }, + [325] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_macro_rules_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_u8] = ACTIONS(1384), + [anon_sym_i8] = ACTIONS(1384), + [anon_sym_u16] = ACTIONS(1384), + [anon_sym_i16] = ACTIONS(1384), + [anon_sym_u32] = ACTIONS(1384), + [anon_sym_i32] = ACTIONS(1384), + [anon_sym_u64] = ACTIONS(1384), + [anon_sym_i64] = ACTIONS(1384), + [anon_sym_u128] = ACTIONS(1384), + [anon_sym_i128] = ACTIONS(1384), + [anon_sym_isize] = ACTIONS(1384), + [anon_sym_usize] = ACTIONS(1384), + [anon_sym_f32] = ACTIONS(1384), + [anon_sym_f64] = ACTIONS(1384), + [anon_sym_bool] = ACTIONS(1384), + [anon_sym_str] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_impl] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_loop] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_mod] = ACTIONS(1384), + [anon_sym_pub] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_trait] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_unsafe] = ACTIONS(1384), + [anon_sym_use] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1382), + [anon_sym_COLON_COLON] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_DOT_DOT] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1382), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_move] = ACTIONS(1384), + [sym_integer_literal] = ACTIONS(1382), + [aux_sym_string_literal_token1] = ACTIONS(1382), + [sym_char_literal] = ACTIONS(1382), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_crate] = ACTIONS(1384), + [sym_metavariable] = ACTIONS(1382), + [sym_raw_string_literal] = ACTIONS(1382), + [sym_float_literal] = ACTIONS(1382), + [sym_block_comment] = ACTIONS(3), + }, + [326] = { + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_macro_rules_BANG] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_fn] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_impl] = ACTIONS(1388), + [anon_sym_let] = ACTIONS(1388), + [anon_sym_loop] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_mod] = ACTIONS(1388), + [anon_sym_pub] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_trait] = ACTIONS(1388), + [anon_sym_type] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_unsafe] = ACTIONS(1388), + [anon_sym_use] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_DOT_DOT] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1386), + [anon_sym_yield] = ACTIONS(1388), + [anon_sym_move] = ACTIONS(1388), + [sym_integer_literal] = ACTIONS(1386), + [aux_sym_string_literal_token1] = ACTIONS(1386), + [sym_char_literal] = ACTIONS(1386), + [anon_sym_true] = ACTIONS(1388), + [anon_sym_false] = ACTIONS(1388), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1388), + [sym_super] = ACTIONS(1388), + [sym_crate] = ACTIONS(1388), + [sym_metavariable] = ACTIONS(1386), + [sym_raw_string_literal] = ACTIONS(1386), + [sym_float_literal] = ACTIONS(1386), + [sym_block_comment] = ACTIONS(3), + }, + [327] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_macro_rules_BANG] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_u8] = ACTIONS(1392), + [anon_sym_i8] = ACTIONS(1392), + [anon_sym_u16] = ACTIONS(1392), + [anon_sym_i16] = ACTIONS(1392), + [anon_sym_u32] = ACTIONS(1392), + [anon_sym_i32] = ACTIONS(1392), + [anon_sym_u64] = ACTIONS(1392), + [anon_sym_i64] = ACTIONS(1392), + [anon_sym_u128] = ACTIONS(1392), + [anon_sym_i128] = ACTIONS(1392), + [anon_sym_isize] = ACTIONS(1392), + [anon_sym_usize] = ACTIONS(1392), + [anon_sym_f32] = ACTIONS(1392), + [anon_sym_f64] = ACTIONS(1392), + [anon_sym_bool] = ACTIONS(1392), + [anon_sym_str] = ACTIONS(1392), + [anon_sym_char] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_fn] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_impl] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1392), + [anon_sym_mod] = ACTIONS(1392), + [anon_sym_pub] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_trait] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_unsafe] = ACTIONS(1392), + [anon_sym_use] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_move] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1390), + [aux_sym_string_literal_token1] = ACTIONS(1390), + [sym_char_literal] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1390), + [sym_raw_string_literal] = ACTIONS(1390), + [sym_float_literal] = ACTIONS(1390), + [sym_block_comment] = ACTIONS(3), + }, + [328] = { + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_macro_rules_BANG] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u128] = ACTIONS(1396), + [anon_sym_i128] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_str] = ACTIONS(1396), + [anon_sym_char] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_impl] = ACTIONS(1396), + [anon_sym_let] = ACTIONS(1396), + [anon_sym_loop] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1396), + [anon_sym_mod] = ACTIONS(1396), + [anon_sym_pub] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_trait] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_use] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_move] = ACTIONS(1396), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1396), + [anon_sym_false] = ACTIONS(1396), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1396), + [sym_super] = ACTIONS(1396), + [sym_crate] = ACTIONS(1396), + [sym_metavariable] = ACTIONS(1394), + [sym_raw_string_literal] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), + [sym_block_comment] = ACTIONS(3), + }, + [329] = { + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_macro_rules_BANG] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1398), + [anon_sym_u8] = ACTIONS(1400), + [anon_sym_i8] = ACTIONS(1400), + [anon_sym_u16] = ACTIONS(1400), + [anon_sym_i16] = ACTIONS(1400), + [anon_sym_u32] = ACTIONS(1400), + [anon_sym_i32] = ACTIONS(1400), + [anon_sym_u64] = ACTIONS(1400), + [anon_sym_i64] = ACTIONS(1400), + [anon_sym_u128] = ACTIONS(1400), + [anon_sym_i128] = ACTIONS(1400), + [anon_sym_isize] = ACTIONS(1400), + [anon_sym_usize] = ACTIONS(1400), + [anon_sym_f32] = ACTIONS(1400), + [anon_sym_f64] = ACTIONS(1400), + [anon_sym_bool] = ACTIONS(1400), + [anon_sym_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_fn] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_impl] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_pub] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_trait] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsafe] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_POUND] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1398), + [anon_sym_COLON_COLON] = ACTIONS(1398), + [anon_sym_AMP] = ACTIONS(1398), + [anon_sym_DOT_DOT] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PIPE] = ACTIONS(1398), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1398), + [aux_sym_string_literal_token1] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1398), + [sym_raw_string_literal] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1398), + [sym_block_comment] = ACTIONS(3), + }, + [330] = { + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_BANG] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_AMP] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1402), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PIPE] = ACTIONS(1402), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym_raw_string_literal] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), + [sym_block_comment] = ACTIONS(3), + }, + [331] = { + [ts_builtin_sym_end] = ACTIONS(1406), + [sym_identifier] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_macro_rules_BANG] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1406), + [anon_sym_u8] = ACTIONS(1408), + [anon_sym_i8] = ACTIONS(1408), + [anon_sym_u16] = ACTIONS(1408), + [anon_sym_i16] = ACTIONS(1408), + [anon_sym_u32] = ACTIONS(1408), + [anon_sym_i32] = ACTIONS(1408), + [anon_sym_u64] = ACTIONS(1408), + [anon_sym_i64] = ACTIONS(1408), + [anon_sym_u128] = ACTIONS(1408), + [anon_sym_i128] = ACTIONS(1408), + [anon_sym_isize] = ACTIONS(1408), + [anon_sym_usize] = ACTIONS(1408), + [anon_sym_f32] = ACTIONS(1408), + [anon_sym_f64] = ACTIONS(1408), + [anon_sym_bool] = ACTIONS(1408), + [anon_sym_str] = ACTIONS(1408), + [anon_sym_char] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym_LT] = ACTIONS(1406), + [anon_sym_COLON_COLON] = ACTIONS(1406), + [anon_sym_AMP] = ACTIONS(1406), + [anon_sym_DOT_DOT] = ACTIONS(1406), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PIPE] = ACTIONS(1406), + [anon_sym_yield] = ACTIONS(1408), + [anon_sym_move] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1406), + [aux_sym_string_literal_token1] = ACTIONS(1406), + [sym_char_literal] = ACTIONS(1406), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_metavariable] = ACTIONS(1406), + [sym_raw_string_literal] = ACTIONS(1406), + [sym_float_literal] = ACTIONS(1406), + [sym_block_comment] = ACTIONS(3), + }, + [332] = { + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_macro_rules_BANG] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_COLON_COLON] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_DOT_DOT] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(1412), + [anon_sym_move] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1410), + [aux_sym_string_literal_token1] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1410), + [sym_raw_string_literal] = ACTIONS(1410), + [sym_float_literal] = ACTIONS(1410), + [sym_block_comment] = ACTIONS(3), + }, + [333] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [sym_identifier] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_macro_rules_BANG] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_yield] = ACTIONS(1416), + [anon_sym_move] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), + [sym_block_comment] = ACTIONS(3), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(1418), + [sym_identifier] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1420), + [anon_sym_i8] = ACTIONS(1420), + [anon_sym_u16] = ACTIONS(1420), + [anon_sym_i16] = ACTIONS(1420), + [anon_sym_u32] = ACTIONS(1420), + [anon_sym_i32] = ACTIONS(1420), + [anon_sym_u64] = ACTIONS(1420), + [anon_sym_i64] = ACTIONS(1420), + [anon_sym_u128] = ACTIONS(1420), + [anon_sym_i128] = ACTIONS(1420), + [anon_sym_isize] = ACTIONS(1420), + [anon_sym_usize] = ACTIONS(1420), + [anon_sym_f32] = ACTIONS(1420), + [anon_sym_f64] = ACTIONS(1420), + [anon_sym_bool] = ACTIONS(1420), + [anon_sym_str] = ACTIONS(1420), + [anon_sym_char] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_async] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1420), + [anon_sym_const] = ACTIONS(1420), + [anon_sym_continue] = ACTIONS(1420), + [anon_sym_default] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_fn] = ACTIONS(1420), + [anon_sym_for] = ACTIONS(1420), + [anon_sym_if] = ACTIONS(1420), + [anon_sym_impl] = ACTIONS(1420), + [anon_sym_let] = ACTIONS(1420), + [anon_sym_loop] = ACTIONS(1420), + [anon_sym_match] = ACTIONS(1420), + [anon_sym_mod] = ACTIONS(1420), + [anon_sym_pub] = ACTIONS(1420), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_trait] = ACTIONS(1420), + [anon_sym_type] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_unsafe] = ACTIONS(1420), + [anon_sym_use] = ACTIONS(1420), + [anon_sym_while] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1420), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_DOT_DOT] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_yield] = ACTIONS(1420), + [anon_sym_move] = ACTIONS(1420), + [sym_integer_literal] = ACTIONS(1418), + [aux_sym_string_literal_token1] = ACTIONS(1418), + [sym_char_literal] = ACTIONS(1418), + [anon_sym_true] = ACTIONS(1420), + [anon_sym_false] = ACTIONS(1420), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1420), + [sym_super] = ACTIONS(1420), + [sym_crate] = ACTIONS(1420), + [sym_metavariable] = ACTIONS(1418), + [sym_raw_string_literal] = ACTIONS(1418), + [sym_float_literal] = ACTIONS(1418), + [sym_block_comment] = ACTIONS(3), + }, + [335] = { + [ts_builtin_sym_end] = ACTIONS(1422), + [sym_identifier] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_macro_rules_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_u8] = ACTIONS(1424), + [anon_sym_i8] = ACTIONS(1424), + [anon_sym_u16] = ACTIONS(1424), + [anon_sym_i16] = ACTIONS(1424), + [anon_sym_u32] = ACTIONS(1424), + [anon_sym_i32] = ACTIONS(1424), + [anon_sym_u64] = ACTIONS(1424), + [anon_sym_i64] = ACTIONS(1424), + [anon_sym_u128] = ACTIONS(1424), + [anon_sym_i128] = ACTIONS(1424), + [anon_sym_isize] = ACTIONS(1424), + [anon_sym_usize] = ACTIONS(1424), + [anon_sym_f32] = ACTIONS(1424), + [anon_sym_f64] = ACTIONS(1424), + [anon_sym_bool] = ACTIONS(1424), + [anon_sym_str] = ACTIONS(1424), + [anon_sym_char] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1424), + [anon_sym_break] = ACTIONS(1424), + [anon_sym_const] = ACTIONS(1424), + [anon_sym_continue] = ACTIONS(1424), + [anon_sym_default] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_fn] = ACTIONS(1424), + [anon_sym_for] = ACTIONS(1424), + [anon_sym_if] = ACTIONS(1424), + [anon_sym_impl] = ACTIONS(1424), + [anon_sym_let] = ACTIONS(1424), + [anon_sym_loop] = ACTIONS(1424), + [anon_sym_match] = ACTIONS(1424), + [anon_sym_mod] = ACTIONS(1424), + [anon_sym_pub] = ACTIONS(1424), + [anon_sym_return] = ACTIONS(1424), + [anon_sym_static] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_trait] = ACTIONS(1424), + [anon_sym_type] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_unsafe] = ACTIONS(1424), + [anon_sym_use] = ACTIONS(1424), + [anon_sym_while] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1424), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_COLON_COLON] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1422), + [aux_sym_string_literal_token1] = ACTIONS(1422), + [sym_char_literal] = ACTIONS(1422), + [anon_sym_true] = ACTIONS(1424), + [anon_sym_false] = ACTIONS(1424), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1424), + [sym_super] = ACTIONS(1424), + [sym_crate] = ACTIONS(1424), + [sym_metavariable] = ACTIONS(1422), + [sym_raw_string_literal] = ACTIONS(1422), + [sym_float_literal] = ACTIONS(1422), + [sym_block_comment] = ACTIONS(3), + }, + [336] = { + [ts_builtin_sym_end] = ACTIONS(1426), + [sym_identifier] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_macro_rules_BANG] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_u8] = ACTIONS(1428), + [anon_sym_i8] = ACTIONS(1428), + [anon_sym_u16] = ACTIONS(1428), + [anon_sym_i16] = ACTIONS(1428), + [anon_sym_u32] = ACTIONS(1428), + [anon_sym_i32] = ACTIONS(1428), + [anon_sym_u64] = ACTIONS(1428), + [anon_sym_i64] = ACTIONS(1428), + [anon_sym_u128] = ACTIONS(1428), + [anon_sym_i128] = ACTIONS(1428), + [anon_sym_isize] = ACTIONS(1428), + [anon_sym_usize] = ACTIONS(1428), + [anon_sym_f32] = ACTIONS(1428), + [anon_sym_f64] = ACTIONS(1428), + [anon_sym_bool] = ACTIONS(1428), + [anon_sym_str] = ACTIONS(1428), + [anon_sym_char] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_async] = ACTIONS(1428), + [anon_sym_break] = ACTIONS(1428), + [anon_sym_const] = ACTIONS(1428), + [anon_sym_continue] = ACTIONS(1428), + [anon_sym_default] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_fn] = ACTIONS(1428), + [anon_sym_for] = ACTIONS(1428), + [anon_sym_if] = ACTIONS(1428), + [anon_sym_impl] = ACTIONS(1428), + [anon_sym_let] = ACTIONS(1428), + [anon_sym_loop] = ACTIONS(1428), + [anon_sym_match] = ACTIONS(1428), + [anon_sym_mod] = ACTIONS(1428), + [anon_sym_pub] = ACTIONS(1428), + [anon_sym_return] = ACTIONS(1428), + [anon_sym_static] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_trait] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_unsafe] = ACTIONS(1428), + [anon_sym_use] = ACTIONS(1428), + [anon_sym_while] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_COLON_COLON] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_yield] = ACTIONS(1428), + [anon_sym_move] = ACTIONS(1428), + [sym_integer_literal] = ACTIONS(1426), + [aux_sym_string_literal_token1] = ACTIONS(1426), + [sym_char_literal] = ACTIONS(1426), + [anon_sym_true] = ACTIONS(1428), + [anon_sym_false] = ACTIONS(1428), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1428), + [sym_super] = ACTIONS(1428), + [sym_crate] = ACTIONS(1428), + [sym_metavariable] = ACTIONS(1426), + [sym_raw_string_literal] = ACTIONS(1426), + [sym_float_literal] = ACTIONS(1426), + [sym_block_comment] = ACTIONS(3), + }, + [337] = { + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym_raw_string_literal] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), + [sym_block_comment] = ACTIONS(3), + }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_macro_rules_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_u8] = ACTIONS(1418), - [anon_sym_i8] = ACTIONS(1418), - [anon_sym_u16] = ACTIONS(1418), - [anon_sym_i16] = ACTIONS(1418), - [anon_sym_u32] = ACTIONS(1418), - [anon_sym_i32] = ACTIONS(1418), - [anon_sym_u64] = ACTIONS(1418), - [anon_sym_i64] = ACTIONS(1418), - [anon_sym_u128] = ACTIONS(1418), - [anon_sym_i128] = ACTIONS(1418), - [anon_sym_isize] = ACTIONS(1418), - [anon_sym_usize] = ACTIONS(1418), - [anon_sym_f32] = ACTIONS(1418), - [anon_sym_f64] = ACTIONS(1418), - [anon_sym_bool] = ACTIONS(1418), - [anon_sym_str] = ACTIONS(1418), - [anon_sym_char] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1418), - [anon_sym_async] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_fn] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_impl] = ACTIONS(1418), - [anon_sym_let] = ACTIONS(1418), - [anon_sym_loop] = ACTIONS(1418), - [anon_sym_match] = ACTIONS(1418), - [anon_sym_mod] = ACTIONS(1418), - [anon_sym_pub] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_trait] = ACTIONS(1418), - [anon_sym_type] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_unsafe] = ACTIONS(1418), - [anon_sym_use] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_COLON_COLON] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_yield] = ACTIONS(1418), - [anon_sym_move] = ACTIONS(1418), - [sym_integer_literal] = ACTIONS(1416), - [aux_sym_string_literal_token1] = ACTIONS(1416), - [sym_char_literal] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1418), - [sym_super] = ACTIONS(1418), - [sym_crate] = ACTIONS(1418), - [sym_metavariable] = ACTIONS(1416), - [sym_raw_string_literal] = ACTIONS(1416), - [sym_float_literal] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_DOT_DOT] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_move] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym_raw_string_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_macro_rules_BANG] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_u8] = ACTIONS(1422), - [anon_sym_i8] = ACTIONS(1422), - [anon_sym_u16] = ACTIONS(1422), - [anon_sym_i16] = ACTIONS(1422), - [anon_sym_u32] = ACTIONS(1422), - [anon_sym_i32] = ACTIONS(1422), - [anon_sym_u64] = ACTIONS(1422), - [anon_sym_i64] = ACTIONS(1422), - [anon_sym_u128] = ACTIONS(1422), - [anon_sym_i128] = ACTIONS(1422), - [anon_sym_isize] = ACTIONS(1422), - [anon_sym_usize] = ACTIONS(1422), - [anon_sym_f32] = ACTIONS(1422), - [anon_sym_f64] = ACTIONS(1422), - [anon_sym_bool] = ACTIONS(1422), - [anon_sym_str] = ACTIONS(1422), - [anon_sym_char] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1422), - [anon_sym_async] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_fn] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_impl] = ACTIONS(1422), - [anon_sym_let] = ACTIONS(1422), - [anon_sym_loop] = ACTIONS(1422), - [anon_sym_match] = ACTIONS(1422), - [anon_sym_mod] = ACTIONS(1422), - [anon_sym_pub] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_trait] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_unsafe] = ACTIONS(1422), - [anon_sym_use] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_COLON_COLON] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_yield] = ACTIONS(1422), - [anon_sym_move] = ACTIONS(1422), - [sym_integer_literal] = ACTIONS(1420), - [aux_sym_string_literal_token1] = ACTIONS(1420), - [sym_char_literal] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1422), - [sym_super] = ACTIONS(1422), - [sym_crate] = ACTIONS(1422), - [sym_metavariable] = ACTIONS(1420), - [sym_raw_string_literal] = ACTIONS(1420), - [sym_float_literal] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym_raw_string_literal] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_macro_rules_BANG] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_u8] = ACTIONS(1426), - [anon_sym_i8] = ACTIONS(1426), - [anon_sym_u16] = ACTIONS(1426), - [anon_sym_i16] = ACTIONS(1426), - [anon_sym_u32] = ACTIONS(1426), - [anon_sym_i32] = ACTIONS(1426), - [anon_sym_u64] = ACTIONS(1426), - [anon_sym_i64] = ACTIONS(1426), - [anon_sym_u128] = ACTIONS(1426), - [anon_sym_i128] = ACTIONS(1426), - [anon_sym_isize] = ACTIONS(1426), - [anon_sym_usize] = ACTIONS(1426), - [anon_sym_f32] = ACTIONS(1426), - [anon_sym_f64] = ACTIONS(1426), - [anon_sym_bool] = ACTIONS(1426), - [anon_sym_str] = ACTIONS(1426), - [anon_sym_char] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_fn] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_impl] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), - [anon_sym_loop] = ACTIONS(1426), - [anon_sym_match] = ACTIONS(1426), - [anon_sym_mod] = ACTIONS(1426), - [anon_sym_pub] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_trait] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_unsafe] = ACTIONS(1426), - [anon_sym_use] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_DOT_DOT] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PIPE] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1426), - [anon_sym_move] = ACTIONS(1426), - [sym_integer_literal] = ACTIONS(1424), - [aux_sym_string_literal_token1] = ACTIONS(1424), - [sym_char_literal] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1426), - [sym_super] = ACTIONS(1426), - [sym_crate] = ACTIONS(1426), - [sym_metavariable] = ACTIONS(1424), - [sym_raw_string_literal] = ACTIONS(1424), - [sym_float_literal] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_macro_rules_BANG] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_u8] = ACTIONS(1430), - [anon_sym_i8] = ACTIONS(1430), - [anon_sym_u16] = ACTIONS(1430), - [anon_sym_i16] = ACTIONS(1430), - [anon_sym_u32] = ACTIONS(1430), - [anon_sym_i32] = ACTIONS(1430), - [anon_sym_u64] = ACTIONS(1430), - [anon_sym_i64] = ACTIONS(1430), - [anon_sym_u128] = ACTIONS(1430), - [anon_sym_i128] = ACTIONS(1430), - [anon_sym_isize] = ACTIONS(1430), - [anon_sym_usize] = ACTIONS(1430), - [anon_sym_f32] = ACTIONS(1430), - [anon_sym_f64] = ACTIONS(1430), - [anon_sym_bool] = ACTIONS(1430), - [anon_sym_str] = ACTIONS(1430), - [anon_sym_char] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_async] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_fn] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_impl] = ACTIONS(1430), - [anon_sym_let] = ACTIONS(1430), - [anon_sym_loop] = ACTIONS(1430), - [anon_sym_match] = ACTIONS(1430), - [anon_sym_mod] = ACTIONS(1430), - [anon_sym_pub] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_trait] = ACTIONS(1430), - [anon_sym_type] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_unsafe] = ACTIONS(1430), - [anon_sym_use] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_COLON_COLON] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_yield] = ACTIONS(1430), - [anon_sym_move] = ACTIONS(1430), - [sym_integer_literal] = ACTIONS(1428), - [aux_sym_string_literal_token1] = ACTIONS(1428), - [sym_char_literal] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1430), - [sym_super] = ACTIONS(1430), - [sym_crate] = ACTIONS(1430), - [sym_metavariable] = ACTIONS(1428), - [sym_raw_string_literal] = ACTIONS(1428), - [sym_float_literal] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym_raw_string_literal] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_macro_rules_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_u8] = ACTIONS(1434), - [anon_sym_i8] = ACTIONS(1434), - [anon_sym_u16] = ACTIONS(1434), - [anon_sym_i16] = ACTIONS(1434), - [anon_sym_u32] = ACTIONS(1434), - [anon_sym_i32] = ACTIONS(1434), - [anon_sym_u64] = ACTIONS(1434), - [anon_sym_i64] = ACTIONS(1434), - [anon_sym_u128] = ACTIONS(1434), - [anon_sym_i128] = ACTIONS(1434), - [anon_sym_isize] = ACTIONS(1434), - [anon_sym_usize] = ACTIONS(1434), - [anon_sym_f32] = ACTIONS(1434), - [anon_sym_f64] = ACTIONS(1434), - [anon_sym_bool] = ACTIONS(1434), - [anon_sym_str] = ACTIONS(1434), - [anon_sym_char] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_async] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_const] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_enum] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1434), - [anon_sym_for] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_impl] = ACTIONS(1434), - [anon_sym_let] = ACTIONS(1434), - [anon_sym_loop] = ACTIONS(1434), - [anon_sym_match] = ACTIONS(1434), - [anon_sym_mod] = ACTIONS(1434), - [anon_sym_pub] = ACTIONS(1434), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_struct] = ACTIONS(1434), - [anon_sym_trait] = ACTIONS(1434), - [anon_sym_type] = ACTIONS(1434), - [anon_sym_union] = ACTIONS(1434), - [anon_sym_unsafe] = ACTIONS(1434), - [anon_sym_use] = ACTIONS(1434), - [anon_sym_while] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_COLON_COLON] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1434), - [anon_sym_move] = ACTIONS(1434), - [sym_integer_literal] = ACTIONS(1432), - [aux_sym_string_literal_token1] = ACTIONS(1432), - [sym_char_literal] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1434), - [sym_super] = ACTIONS(1434), - [sym_crate] = ACTIONS(1434), - [sym_metavariable] = ACTIONS(1432), - [sym_raw_string_literal] = ACTIONS(1432), - [sym_float_literal] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1450), + [sym_identifier] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_macro_rules_BANG] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_u8] = ACTIONS(1452), + [anon_sym_i8] = ACTIONS(1452), + [anon_sym_u16] = ACTIONS(1452), + [anon_sym_i16] = ACTIONS(1452), + [anon_sym_u32] = ACTIONS(1452), + [anon_sym_i32] = ACTIONS(1452), + [anon_sym_u64] = ACTIONS(1452), + [anon_sym_i64] = ACTIONS(1452), + [anon_sym_u128] = ACTIONS(1452), + [anon_sym_i128] = ACTIONS(1452), + [anon_sym_isize] = ACTIONS(1452), + [anon_sym_usize] = ACTIONS(1452), + [anon_sym_f32] = ACTIONS(1452), + [anon_sym_f64] = ACTIONS(1452), + [anon_sym_bool] = ACTIONS(1452), + [anon_sym_str] = ACTIONS(1452), + [anon_sym_char] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_async] = ACTIONS(1452), + [anon_sym_break] = ACTIONS(1452), + [anon_sym_const] = ACTIONS(1452), + [anon_sym_continue] = ACTIONS(1452), + [anon_sym_default] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_fn] = ACTIONS(1452), + [anon_sym_for] = ACTIONS(1452), + [anon_sym_if] = ACTIONS(1452), + [anon_sym_impl] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1452), + [anon_sym_loop] = ACTIONS(1452), + [anon_sym_match] = ACTIONS(1452), + [anon_sym_mod] = ACTIONS(1452), + [anon_sym_pub] = ACTIONS(1452), + [anon_sym_return] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_trait] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_unsafe] = ACTIONS(1452), + [anon_sym_use] = ACTIONS(1452), + [anon_sym_while] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_yield] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1452), + [sym_integer_literal] = ACTIONS(1450), + [aux_sym_string_literal_token1] = ACTIONS(1450), + [sym_char_literal] = ACTIONS(1450), + [anon_sym_true] = ACTIONS(1452), + [anon_sym_false] = ACTIONS(1452), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1452), + [sym_super] = ACTIONS(1452), + [sym_crate] = ACTIONS(1452), + [sym_metavariable] = ACTIONS(1450), + [sym_raw_string_literal] = ACTIONS(1450), + [sym_float_literal] = ACTIONS(1450), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_macro_rules_BANG] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_u8] = ACTIONS(1438), - [anon_sym_i8] = ACTIONS(1438), - [anon_sym_u16] = ACTIONS(1438), - [anon_sym_i16] = ACTIONS(1438), - [anon_sym_u32] = ACTIONS(1438), - [anon_sym_i32] = ACTIONS(1438), - [anon_sym_u64] = ACTIONS(1438), - [anon_sym_i64] = ACTIONS(1438), - [anon_sym_u128] = ACTIONS(1438), - [anon_sym_i128] = ACTIONS(1438), - [anon_sym_isize] = ACTIONS(1438), - [anon_sym_usize] = ACTIONS(1438), - [anon_sym_f32] = ACTIONS(1438), - [anon_sym_f64] = ACTIONS(1438), - [anon_sym_bool] = ACTIONS(1438), - [anon_sym_str] = ACTIONS(1438), - [anon_sym_char] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_async] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_enum] = ACTIONS(1438), - [anon_sym_fn] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_impl] = ACTIONS(1438), - [anon_sym_let] = ACTIONS(1438), - [anon_sym_loop] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1438), - [anon_sym_mod] = ACTIONS(1438), - [anon_sym_pub] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_struct] = ACTIONS(1438), - [anon_sym_trait] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_union] = ACTIONS(1438), - [anon_sym_unsafe] = ACTIONS(1438), - [anon_sym_use] = ACTIONS(1438), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_COLON_COLON] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(1438), - [anon_sym_move] = ACTIONS(1438), - [sym_integer_literal] = ACTIONS(1436), - [aux_sym_string_literal_token1] = ACTIONS(1436), - [sym_char_literal] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1438), - [sym_super] = ACTIONS(1438), - [sym_crate] = ACTIONS(1438), - [sym_metavariable] = ACTIONS(1436), - [sym_raw_string_literal] = ACTIONS(1436), - [sym_float_literal] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_macro_rules_BANG] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_u8] = ACTIONS(1456), + [anon_sym_i8] = ACTIONS(1456), + [anon_sym_u16] = ACTIONS(1456), + [anon_sym_i16] = ACTIONS(1456), + [anon_sym_u32] = ACTIONS(1456), + [anon_sym_i32] = ACTIONS(1456), + [anon_sym_u64] = ACTIONS(1456), + [anon_sym_i64] = ACTIONS(1456), + [anon_sym_u128] = ACTIONS(1456), + [anon_sym_i128] = ACTIONS(1456), + [anon_sym_isize] = ACTIONS(1456), + [anon_sym_usize] = ACTIONS(1456), + [anon_sym_f32] = ACTIONS(1456), + [anon_sym_f64] = ACTIONS(1456), + [anon_sym_bool] = ACTIONS(1456), + [anon_sym_str] = ACTIONS(1456), + [anon_sym_char] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_async] = ACTIONS(1456), + [anon_sym_break] = ACTIONS(1456), + [anon_sym_const] = ACTIONS(1456), + [anon_sym_continue] = ACTIONS(1456), + [anon_sym_default] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_fn] = ACTIONS(1456), + [anon_sym_for] = ACTIONS(1456), + [anon_sym_if] = ACTIONS(1456), + [anon_sym_impl] = ACTIONS(1456), + [anon_sym_let] = ACTIONS(1456), + [anon_sym_loop] = ACTIONS(1456), + [anon_sym_match] = ACTIONS(1456), + [anon_sym_mod] = ACTIONS(1456), + [anon_sym_pub] = ACTIONS(1456), + [anon_sym_return] = ACTIONS(1456), + [anon_sym_static] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_trait] = ACTIONS(1456), + [anon_sym_type] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_unsafe] = ACTIONS(1456), + [anon_sym_use] = ACTIONS(1456), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_COLON_COLON] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1456), + [sym_integer_literal] = ACTIONS(1454), + [aux_sym_string_literal_token1] = ACTIONS(1454), + [sym_char_literal] = ACTIONS(1454), + [anon_sym_true] = ACTIONS(1456), + [anon_sym_false] = ACTIONS(1456), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1456), + [sym_super] = ACTIONS(1456), + [sym_crate] = ACTIONS(1456), + [sym_metavariable] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1454), + [sym_float_literal] = ACTIONS(1454), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_macro_rules_BANG] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_u8] = ACTIONS(1442), - [anon_sym_i8] = ACTIONS(1442), - [anon_sym_u16] = ACTIONS(1442), - [anon_sym_i16] = ACTIONS(1442), - [anon_sym_u32] = ACTIONS(1442), - [anon_sym_i32] = ACTIONS(1442), - [anon_sym_u64] = ACTIONS(1442), - [anon_sym_i64] = ACTIONS(1442), - [anon_sym_u128] = ACTIONS(1442), - [anon_sym_i128] = ACTIONS(1442), - [anon_sym_isize] = ACTIONS(1442), - [anon_sym_usize] = ACTIONS(1442), - [anon_sym_f32] = ACTIONS(1442), - [anon_sym_f64] = ACTIONS(1442), - [anon_sym_bool] = ACTIONS(1442), - [anon_sym_str] = ACTIONS(1442), - [anon_sym_char] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_async] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_enum] = ACTIONS(1442), - [anon_sym_fn] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_impl] = ACTIONS(1442), - [anon_sym_let] = ACTIONS(1442), - [anon_sym_loop] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1442), - [anon_sym_mod] = ACTIONS(1442), - [anon_sym_pub] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1442), - [anon_sym_trait] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_union] = ACTIONS(1442), - [anon_sym_unsafe] = ACTIONS(1442), - [anon_sym_use] = ACTIONS(1442), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_yield] = ACTIONS(1442), - [anon_sym_move] = ACTIONS(1442), - [sym_integer_literal] = ACTIONS(1440), - [aux_sym_string_literal_token1] = ACTIONS(1440), - [sym_char_literal] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1442), - [sym_super] = ACTIONS(1442), - [sym_crate] = ACTIONS(1442), - [sym_metavariable] = ACTIONS(1440), - [sym_raw_string_literal] = ACTIONS(1440), - [sym_float_literal] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_macro_rules_BANG] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_u8] = ACTIONS(1460), + [anon_sym_i8] = ACTIONS(1460), + [anon_sym_u16] = ACTIONS(1460), + [anon_sym_i16] = ACTIONS(1460), + [anon_sym_u32] = ACTIONS(1460), + [anon_sym_i32] = ACTIONS(1460), + [anon_sym_u64] = ACTIONS(1460), + [anon_sym_i64] = ACTIONS(1460), + [anon_sym_u128] = ACTIONS(1460), + [anon_sym_i128] = ACTIONS(1460), + [anon_sym_isize] = ACTIONS(1460), + [anon_sym_usize] = ACTIONS(1460), + [anon_sym_f32] = ACTIONS(1460), + [anon_sym_f64] = ACTIONS(1460), + [anon_sym_bool] = ACTIONS(1460), + [anon_sym_str] = ACTIONS(1460), + [anon_sym_char] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_break] = ACTIONS(1460), + [anon_sym_const] = ACTIONS(1460), + [anon_sym_continue] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_fn] = ACTIONS(1460), + [anon_sym_for] = ACTIONS(1460), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_impl] = ACTIONS(1460), + [anon_sym_let] = ACTIONS(1460), + [anon_sym_loop] = ACTIONS(1460), + [anon_sym_match] = ACTIONS(1460), + [anon_sym_mod] = ACTIONS(1460), + [anon_sym_pub] = ACTIONS(1460), + [anon_sym_return] = ACTIONS(1460), + [anon_sym_static] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_trait] = ACTIONS(1460), + [anon_sym_type] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_unsafe] = ACTIONS(1460), + [anon_sym_use] = ACTIONS(1460), + [anon_sym_while] = ACTIONS(1460), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1460), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_COLON_COLON] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1460), + [anon_sym_move] = ACTIONS(1460), + [sym_integer_literal] = ACTIONS(1458), + [aux_sym_string_literal_token1] = ACTIONS(1458), + [sym_char_literal] = ACTIONS(1458), + [anon_sym_true] = ACTIONS(1460), + [anon_sym_false] = ACTIONS(1460), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1460), + [sym_super] = ACTIONS(1460), + [sym_crate] = ACTIONS(1460), + [sym_metavariable] = ACTIONS(1458), + [sym_raw_string_literal] = ACTIONS(1458), + [sym_float_literal] = ACTIONS(1458), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_macro_rules_BANG] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_u8] = ACTIONS(1446), - [anon_sym_i8] = ACTIONS(1446), - [anon_sym_u16] = ACTIONS(1446), - [anon_sym_i16] = ACTIONS(1446), - [anon_sym_u32] = ACTIONS(1446), - [anon_sym_i32] = ACTIONS(1446), - [anon_sym_u64] = ACTIONS(1446), - [anon_sym_i64] = ACTIONS(1446), - [anon_sym_u128] = ACTIONS(1446), - [anon_sym_i128] = ACTIONS(1446), - [anon_sym_isize] = ACTIONS(1446), - [anon_sym_usize] = ACTIONS(1446), - [anon_sym_f32] = ACTIONS(1446), - [anon_sym_f64] = ACTIONS(1446), - [anon_sym_bool] = ACTIONS(1446), - [anon_sym_str] = ACTIONS(1446), - [anon_sym_char] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_async] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_enum] = ACTIONS(1446), - [anon_sym_fn] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_impl] = ACTIONS(1446), - [anon_sym_let] = ACTIONS(1446), - [anon_sym_loop] = ACTIONS(1446), - [anon_sym_match] = ACTIONS(1446), - [anon_sym_mod] = ACTIONS(1446), - [anon_sym_pub] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_struct] = ACTIONS(1446), - [anon_sym_trait] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_union] = ACTIONS(1446), - [anon_sym_unsafe] = ACTIONS(1446), - [anon_sym_use] = ACTIONS(1446), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_COLON_COLON] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1446), - [anon_sym_move] = ACTIONS(1446), - [sym_integer_literal] = ACTIONS(1444), - [aux_sym_string_literal_token1] = ACTIONS(1444), - [sym_char_literal] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1446), - [sym_super] = ACTIONS(1446), - [sym_crate] = ACTIONS(1446), - [sym_metavariable] = ACTIONS(1444), - [sym_raw_string_literal] = ACTIONS(1444), - [sym_float_literal] = ACTIONS(1444), + [ts_builtin_sym_end] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_macro_rules_BANG] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_u8] = ACTIONS(1464), + [anon_sym_i8] = ACTIONS(1464), + [anon_sym_u16] = ACTIONS(1464), + [anon_sym_i16] = ACTIONS(1464), + [anon_sym_u32] = ACTIONS(1464), + [anon_sym_i32] = ACTIONS(1464), + [anon_sym_u64] = ACTIONS(1464), + [anon_sym_i64] = ACTIONS(1464), + [anon_sym_u128] = ACTIONS(1464), + [anon_sym_i128] = ACTIONS(1464), + [anon_sym_isize] = ACTIONS(1464), + [anon_sym_usize] = ACTIONS(1464), + [anon_sym_f32] = ACTIONS(1464), + [anon_sym_f64] = ACTIONS(1464), + [anon_sym_bool] = ACTIONS(1464), + [anon_sym_str] = ACTIONS(1464), + [anon_sym_char] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_async] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_fn] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_impl] = ACTIONS(1464), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_loop] = ACTIONS(1464), + [anon_sym_match] = ACTIONS(1464), + [anon_sym_mod] = ACTIONS(1464), + [anon_sym_pub] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_trait] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_unsafe] = ACTIONS(1464), + [anon_sym_use] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_COLON_COLON] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_DOT_DOT] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_yield] = ACTIONS(1464), + [anon_sym_move] = ACTIONS(1464), + [sym_integer_literal] = ACTIONS(1462), + [aux_sym_string_literal_token1] = ACTIONS(1462), + [sym_char_literal] = ACTIONS(1462), + [anon_sym_true] = ACTIONS(1464), + [anon_sym_false] = ACTIONS(1464), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1464), + [sym_super] = ACTIONS(1464), + [sym_crate] = ACTIONS(1464), + [sym_metavariable] = ACTIONS(1462), + [sym_raw_string_literal] = ACTIONS(1462), + [sym_float_literal] = ACTIONS(1462), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_macro_rules_BANG] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_u8] = ACTIONS(1450), - [anon_sym_i8] = ACTIONS(1450), - [anon_sym_u16] = ACTIONS(1450), - [anon_sym_i16] = ACTIONS(1450), - [anon_sym_u32] = ACTIONS(1450), - [anon_sym_i32] = ACTIONS(1450), - [anon_sym_u64] = ACTIONS(1450), - [anon_sym_i64] = ACTIONS(1450), - [anon_sym_u128] = ACTIONS(1450), - [anon_sym_i128] = ACTIONS(1450), - [anon_sym_isize] = ACTIONS(1450), - [anon_sym_usize] = ACTIONS(1450), - [anon_sym_f32] = ACTIONS(1450), - [anon_sym_f64] = ACTIONS(1450), - [anon_sym_bool] = ACTIONS(1450), - [anon_sym_str] = ACTIONS(1450), - [anon_sym_char] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_async] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_const] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_enum] = ACTIONS(1450), - [anon_sym_fn] = ACTIONS(1450), - [anon_sym_for] = ACTIONS(1450), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_impl] = ACTIONS(1450), - [anon_sym_let] = ACTIONS(1450), - [anon_sym_loop] = ACTIONS(1450), - [anon_sym_match] = ACTIONS(1450), - [anon_sym_mod] = ACTIONS(1450), - [anon_sym_pub] = ACTIONS(1450), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_struct] = ACTIONS(1450), - [anon_sym_trait] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_union] = ACTIONS(1450), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_use] = ACTIONS(1450), - [anon_sym_while] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_COLON_COLON] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1450), - [anon_sym_move] = ACTIONS(1450), - [sym_integer_literal] = ACTIONS(1448), - [aux_sym_string_literal_token1] = ACTIONS(1448), - [sym_char_literal] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1450), - [sym_super] = ACTIONS(1450), - [sym_crate] = ACTIONS(1450), - [sym_metavariable] = ACTIONS(1448), - [sym_raw_string_literal] = ACTIONS(1448), - [sym_float_literal] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_macro_rules_BANG] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_async] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_enum] = ACTIONS(1468), + [anon_sym_fn] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_impl] = ACTIONS(1468), + [anon_sym_let] = ACTIONS(1468), + [anon_sym_loop] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_mod] = ACTIONS(1468), + [anon_sym_pub] = ACTIONS(1468), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_static] = ACTIONS(1468), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_trait] = ACTIONS(1468), + [anon_sym_type] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_unsafe] = ACTIONS(1468), + [anon_sym_use] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_DOT_DOT] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1466), + [sym_raw_string_literal] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_macro_rules_BANG] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_u8] = ACTIONS(1454), - [anon_sym_i8] = ACTIONS(1454), - [anon_sym_u16] = ACTIONS(1454), - [anon_sym_i16] = ACTIONS(1454), - [anon_sym_u32] = ACTIONS(1454), - [anon_sym_i32] = ACTIONS(1454), - [anon_sym_u64] = ACTIONS(1454), - [anon_sym_i64] = ACTIONS(1454), - [anon_sym_u128] = ACTIONS(1454), - [anon_sym_i128] = ACTIONS(1454), - [anon_sym_isize] = ACTIONS(1454), - [anon_sym_usize] = ACTIONS(1454), - [anon_sym_f32] = ACTIONS(1454), - [anon_sym_f64] = ACTIONS(1454), - [anon_sym_bool] = ACTIONS(1454), - [anon_sym_str] = ACTIONS(1454), - [anon_sym_char] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_async] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_enum] = ACTIONS(1454), - [anon_sym_fn] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_impl] = ACTIONS(1454), - [anon_sym_let] = ACTIONS(1454), - [anon_sym_loop] = ACTIONS(1454), - [anon_sym_match] = ACTIONS(1454), - [anon_sym_mod] = ACTIONS(1454), - [anon_sym_pub] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_struct] = ACTIONS(1454), - [anon_sym_trait] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_union] = ACTIONS(1454), - [anon_sym_unsafe] = ACTIONS(1454), - [anon_sym_use] = ACTIONS(1454), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_COLON_COLON] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1454), - [anon_sym_move] = ACTIONS(1454), - [sym_integer_literal] = ACTIONS(1452), - [aux_sym_string_literal_token1] = ACTIONS(1452), - [sym_char_literal] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1454), - [sym_super] = ACTIONS(1454), - [sym_crate] = ACTIONS(1454), - [sym_metavariable] = ACTIONS(1452), - [sym_raw_string_literal] = ACTIONS(1452), - [sym_float_literal] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_macro_rules_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_u8] = ACTIONS(1472), + [anon_sym_i8] = ACTIONS(1472), + [anon_sym_u16] = ACTIONS(1472), + [anon_sym_i16] = ACTIONS(1472), + [anon_sym_u32] = ACTIONS(1472), + [anon_sym_i32] = ACTIONS(1472), + [anon_sym_u64] = ACTIONS(1472), + [anon_sym_i64] = ACTIONS(1472), + [anon_sym_u128] = ACTIONS(1472), + [anon_sym_i128] = ACTIONS(1472), + [anon_sym_isize] = ACTIONS(1472), + [anon_sym_usize] = ACTIONS(1472), + [anon_sym_f32] = ACTIONS(1472), + [anon_sym_f64] = ACTIONS(1472), + [anon_sym_bool] = ACTIONS(1472), + [anon_sym_str] = ACTIONS(1472), + [anon_sym_char] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_async] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_default] = ACTIONS(1472), + [anon_sym_enum] = ACTIONS(1472), + [anon_sym_fn] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_impl] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_mod] = ACTIONS(1472), + [anon_sym_pub] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_static] = ACTIONS(1472), + [anon_sym_struct] = ACTIONS(1472), + [anon_sym_trait] = ACTIONS(1472), + [anon_sym_type] = ACTIONS(1472), + [anon_sym_union] = ACTIONS(1472), + [anon_sym_unsafe] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_COLON_COLON] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_move] = ACTIONS(1472), + [sym_integer_literal] = ACTIONS(1470), + [aux_sym_string_literal_token1] = ACTIONS(1470), + [sym_char_literal] = ACTIONS(1470), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1472), + [sym_super] = ACTIONS(1472), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1470), + [sym_raw_string_literal] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_macro_rules_BANG] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_COLON_COLON] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1458), - [anon_sym_move] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1456), - [aux_sym_string_literal_token1] = ACTIONS(1456), - [sym_char_literal] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_metavariable] = ACTIONS(1456), - [sym_raw_string_literal] = ACTIONS(1456), - [sym_float_literal] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_DOT_DOT] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_macro_rules_BANG] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1462), - [anon_sym_i8] = ACTIONS(1462), - [anon_sym_u16] = ACTIONS(1462), - [anon_sym_i16] = ACTIONS(1462), - [anon_sym_u32] = ACTIONS(1462), - [anon_sym_i32] = ACTIONS(1462), - [anon_sym_u64] = ACTIONS(1462), - [anon_sym_i64] = ACTIONS(1462), - [anon_sym_u128] = ACTIONS(1462), - [anon_sym_i128] = ACTIONS(1462), - [anon_sym_isize] = ACTIONS(1462), - [anon_sym_usize] = ACTIONS(1462), - [anon_sym_f32] = ACTIONS(1462), - [anon_sym_f64] = ACTIONS(1462), - [anon_sym_bool] = ACTIONS(1462), - [anon_sym_str] = ACTIONS(1462), - [anon_sym_char] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_enum] = ACTIONS(1462), - [anon_sym_fn] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_impl] = ACTIONS(1462), - [anon_sym_let] = ACTIONS(1462), - [anon_sym_loop] = ACTIONS(1462), - [anon_sym_match] = ACTIONS(1462), - [anon_sym_mod] = ACTIONS(1462), - [anon_sym_pub] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_struct] = ACTIONS(1462), - [anon_sym_trait] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_union] = ACTIONS(1462), - [anon_sym_unsafe] = ACTIONS(1462), - [anon_sym_use] = ACTIONS(1462), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_move] = ACTIONS(1462), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1462), - [sym_super] = ACTIONS(1462), - [sym_crate] = ACTIONS(1462), - [sym_metavariable] = ACTIONS(1460), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_DOT_DOT] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_macro_rules_BANG] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_u8] = ACTIONS(1466), - [anon_sym_i8] = ACTIONS(1466), - [anon_sym_u16] = ACTIONS(1466), - [anon_sym_i16] = ACTIONS(1466), - [anon_sym_u32] = ACTIONS(1466), - [anon_sym_i32] = ACTIONS(1466), - [anon_sym_u64] = ACTIONS(1466), - [anon_sym_i64] = ACTIONS(1466), - [anon_sym_u128] = ACTIONS(1466), - [anon_sym_i128] = ACTIONS(1466), - [anon_sym_isize] = ACTIONS(1466), - [anon_sym_usize] = ACTIONS(1466), - [anon_sym_f32] = ACTIONS(1466), - [anon_sym_f64] = ACTIONS(1466), - [anon_sym_bool] = ACTIONS(1466), - [anon_sym_str] = ACTIONS(1466), - [anon_sym_char] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_enum] = ACTIONS(1466), - [anon_sym_fn] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_impl] = ACTIONS(1466), - [anon_sym_let] = ACTIONS(1466), - [anon_sym_loop] = ACTIONS(1466), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_mod] = ACTIONS(1466), - [anon_sym_pub] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_struct] = ACTIONS(1466), - [anon_sym_trait] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_union] = ACTIONS(1466), - [anon_sym_unsafe] = ACTIONS(1466), - [anon_sym_use] = ACTIONS(1466), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_COLON_COLON] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1466), - [anon_sym_move] = ACTIONS(1466), - [sym_integer_literal] = ACTIONS(1464), - [aux_sym_string_literal_token1] = ACTIONS(1464), - [sym_char_literal] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1466), - [sym_super] = ACTIONS(1466), - [sym_crate] = ACTIONS(1466), - [sym_metavariable] = ACTIONS(1464), - [sym_raw_string_literal] = ACTIONS(1464), - [sym_float_literal] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_macro_rules_BANG] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_async] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_fn] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_impl] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1484), + [anon_sym_pub] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_trait] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_unsafe] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_yield] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym_raw_string_literal] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_macro_rules_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_u8] = ACTIONS(1470), - [anon_sym_i8] = ACTIONS(1470), - [anon_sym_u16] = ACTIONS(1470), - [anon_sym_i16] = ACTIONS(1470), - [anon_sym_u32] = ACTIONS(1470), - [anon_sym_i32] = ACTIONS(1470), - [anon_sym_u64] = ACTIONS(1470), - [anon_sym_i64] = ACTIONS(1470), - [anon_sym_u128] = ACTIONS(1470), - [anon_sym_i128] = ACTIONS(1470), - [anon_sym_isize] = ACTIONS(1470), - [anon_sym_usize] = ACTIONS(1470), - [anon_sym_f32] = ACTIONS(1470), - [anon_sym_f64] = ACTIONS(1470), - [anon_sym_bool] = ACTIONS(1470), - [anon_sym_str] = ACTIONS(1470), - [anon_sym_char] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_async] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_continue] = ACTIONS(1470), - [anon_sym_default] = ACTIONS(1470), - [anon_sym_enum] = ACTIONS(1470), - [anon_sym_fn] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_impl] = ACTIONS(1470), - [anon_sym_let] = ACTIONS(1470), - [anon_sym_loop] = ACTIONS(1470), - [anon_sym_match] = ACTIONS(1470), - [anon_sym_mod] = ACTIONS(1470), - [anon_sym_pub] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_static] = ACTIONS(1470), - [anon_sym_struct] = ACTIONS(1470), - [anon_sym_trait] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_union] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1470), - [anon_sym_use] = ACTIONS(1470), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_COLON_COLON] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1470), - [anon_sym_move] = ACTIONS(1470), - [sym_integer_literal] = ACTIONS(1468), - [aux_sym_string_literal_token1] = ACTIONS(1468), - [sym_char_literal] = ACTIONS(1468), - [anon_sym_true] = ACTIONS(1470), - [anon_sym_false] = ACTIONS(1470), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1470), - [sym_super] = ACTIONS(1470), - [sym_crate] = ACTIONS(1470), - [sym_metavariable] = ACTIONS(1468), - [sym_raw_string_literal] = ACTIONS(1468), - [sym_float_literal] = ACTIONS(1468), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_macro_rules_BANG] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_async] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_impl] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(1488), + [anon_sym_loop] = ACTIONS(1488), + [anon_sym_match] = ACTIONS(1488), + [anon_sym_mod] = ACTIONS(1488), + [anon_sym_pub] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_trait] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_unsafe] = ACTIONS(1488), + [anon_sym_use] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_yield] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym_raw_string_literal] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1472), - [sym_identifier] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_macro_rules_BANG] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_u8] = ACTIONS(1474), - [anon_sym_i8] = ACTIONS(1474), - [anon_sym_u16] = ACTIONS(1474), - [anon_sym_i16] = ACTIONS(1474), - [anon_sym_u32] = ACTIONS(1474), - [anon_sym_i32] = ACTIONS(1474), - [anon_sym_u64] = ACTIONS(1474), - [anon_sym_i64] = ACTIONS(1474), - [anon_sym_u128] = ACTIONS(1474), - [anon_sym_i128] = ACTIONS(1474), - [anon_sym_isize] = ACTIONS(1474), - [anon_sym_usize] = ACTIONS(1474), - [anon_sym_f32] = ACTIONS(1474), - [anon_sym_f64] = ACTIONS(1474), - [anon_sym_bool] = ACTIONS(1474), - [anon_sym_str] = ACTIONS(1474), - [anon_sym_char] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_async] = ACTIONS(1474), - [anon_sym_break] = ACTIONS(1474), - [anon_sym_const] = ACTIONS(1474), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_default] = ACTIONS(1474), - [anon_sym_enum] = ACTIONS(1474), - [anon_sym_fn] = ACTIONS(1474), - [anon_sym_for] = ACTIONS(1474), - [anon_sym_if] = ACTIONS(1474), - [anon_sym_impl] = ACTIONS(1474), - [anon_sym_let] = ACTIONS(1474), - [anon_sym_loop] = ACTIONS(1474), - [anon_sym_match] = ACTIONS(1474), - [anon_sym_mod] = ACTIONS(1474), - [anon_sym_pub] = ACTIONS(1474), - [anon_sym_return] = ACTIONS(1474), - [anon_sym_static] = ACTIONS(1474), - [anon_sym_struct] = ACTIONS(1474), - [anon_sym_trait] = ACTIONS(1474), - [anon_sym_type] = ACTIONS(1474), - [anon_sym_union] = ACTIONS(1474), - [anon_sym_unsafe] = ACTIONS(1474), - [anon_sym_use] = ACTIONS(1474), - [anon_sym_while] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_COLON_COLON] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1474), - [anon_sym_move] = ACTIONS(1474), - [sym_integer_literal] = ACTIONS(1472), - [aux_sym_string_literal_token1] = ACTIONS(1472), - [sym_char_literal] = ACTIONS(1472), - [anon_sym_true] = ACTIONS(1474), - [anon_sym_false] = ACTIONS(1474), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1474), - [sym_super] = ACTIONS(1474), - [sym_crate] = ACTIONS(1474), - [sym_metavariable] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1472), - [sym_float_literal] = ACTIONS(1472), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_macro_rules_BANG] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_async] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_fn] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_impl] = ACTIONS(1492), + [anon_sym_let] = ACTIONS(1492), + [anon_sym_loop] = ACTIONS(1492), + [anon_sym_match] = ACTIONS(1492), + [anon_sym_mod] = ACTIONS(1492), + [anon_sym_pub] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsafe] = ACTIONS(1492), + [anon_sym_use] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_DOT_DOT] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym_raw_string_literal] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_DOT_DOT] = ACTIONS(1476), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_move] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_macro_rules_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_fn] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_impl] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_mod] = ACTIONS(1496), + [anon_sym_pub] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_trait] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_DOT_DOT] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym_raw_string_literal] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_move] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym_raw_string_literal] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_macro_rules_BANG] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_fn] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_impl] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_mod] = ACTIONS(1500), + [anon_sym_pub] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_trait] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_unsafe] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_DOT_DOT] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym_raw_string_literal] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_BANG] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_AMP] = ACTIONS(1484), - [anon_sym_DOT_DOT] = ACTIONS(1484), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PIPE] = ACTIONS(1484), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_move] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym_raw_string_literal] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_macro_rules_BANG] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_impl] = ACTIONS(1504), + [anon_sym_let] = ACTIONS(1504), + [anon_sym_loop] = ACTIONS(1504), + [anon_sym_match] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1504), + [anon_sym_pub] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_trait] = ACTIONS(1504), + [anon_sym_type] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_unsafe] = ACTIONS(1504), + [anon_sym_use] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_yield] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym_raw_string_literal] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1508), + [anon_sym_i8] = ACTIONS(1508), + [anon_sym_u16] = ACTIONS(1508), + [anon_sym_i16] = ACTIONS(1508), + [anon_sym_u32] = ACTIONS(1508), + [anon_sym_i32] = ACTIONS(1508), + [anon_sym_u64] = ACTIONS(1508), + [anon_sym_i64] = ACTIONS(1508), + [anon_sym_u128] = ACTIONS(1508), + [anon_sym_i128] = ACTIONS(1508), + [anon_sym_isize] = ACTIONS(1508), + [anon_sym_usize] = ACTIONS(1508), + [anon_sym_f32] = ACTIONS(1508), + [anon_sym_f64] = ACTIONS(1508), + [anon_sym_bool] = ACTIONS(1508), + [anon_sym_str] = ACTIONS(1508), + [anon_sym_char] = ACTIONS(1508), + [anon_sym_SQUOTE] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_fn] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_impl] = ACTIONS(1508), + [anon_sym_let] = ACTIONS(1508), + [anon_sym_loop] = ACTIONS(1508), + [anon_sym_match] = ACTIONS(1508), + [anon_sym_mod] = ACTIONS(1508), + [anon_sym_pub] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_trait] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_unsafe] = ACTIONS(1508), + [anon_sym_use] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_DOT_DOT] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_PIPE] = ACTIONS(1506), + [anon_sym_yield] = ACTIONS(1508), + [anon_sym_move] = ACTIONS(1508), + [sym_integer_literal] = ACTIONS(1506), + [aux_sym_string_literal_token1] = ACTIONS(1506), + [sym_char_literal] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1508), + [anon_sym_false] = ACTIONS(1508), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1508), + [sym_super] = ACTIONS(1508), + [sym_crate] = ACTIONS(1508), + [sym_metavariable] = ACTIONS(1506), + [sym_raw_string_literal] = ACTIONS(1506), + [sym_float_literal] = ACTIONS(1506), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_move] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym_raw_string_literal] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), [sym_block_comment] = ACTIONS(3), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_yield] = ACTIONS(1498), - [anon_sym_move] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym_raw_string_literal] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), [sym_block_comment] = ACTIONS(3), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym_raw_string_literal] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_impl] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_pub] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_trait] = ACTIONS(1520), + [anon_sym_type] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_PIPE] = ACTIONS(1518), + [anon_sym_yield] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym_raw_string_literal] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1504), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1506), - [anon_sym_i8] = ACTIONS(1506), - [anon_sym_u16] = ACTIONS(1506), - [anon_sym_i16] = ACTIONS(1506), - [anon_sym_u32] = ACTIONS(1506), - [anon_sym_i32] = ACTIONS(1506), - [anon_sym_u64] = ACTIONS(1506), - [anon_sym_i64] = ACTIONS(1506), - [anon_sym_u128] = ACTIONS(1506), - [anon_sym_i128] = ACTIONS(1506), - [anon_sym_isize] = ACTIONS(1506), - [anon_sym_usize] = ACTIONS(1506), - [anon_sym_f32] = ACTIONS(1506), - [anon_sym_f64] = ACTIONS(1506), - [anon_sym_bool] = ACTIONS(1506), - [anon_sym_str] = ACTIONS(1506), - [anon_sym_char] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_impl] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_loop] = ACTIONS(1506), - [anon_sym_match] = ACTIONS(1506), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_pub] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_trait] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_unsafe] = ACTIONS(1506), - [anon_sym_use] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_DOT_DOT] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_yield] = ACTIONS(1506), - [anon_sym_move] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_metavariable] = ACTIONS(1504), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_macro_rules_BANG] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_async] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_fn] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_impl] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_pub] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_trait] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_unsafe] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_DOT_DOT] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_yield] = ACTIONS(1524), + [anon_sym_move] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym_raw_string_literal] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_move] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1526), + [sym_identifier] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_macro_rules_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1526), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_STAR] = ACTIONS(1526), + [anon_sym_u8] = ACTIONS(1528), + [anon_sym_i8] = ACTIONS(1528), + [anon_sym_u16] = ACTIONS(1528), + [anon_sym_i16] = ACTIONS(1528), + [anon_sym_u32] = ACTIONS(1528), + [anon_sym_i32] = ACTIONS(1528), + [anon_sym_u64] = ACTIONS(1528), + [anon_sym_i64] = ACTIONS(1528), + [anon_sym_u128] = ACTIONS(1528), + [anon_sym_i128] = ACTIONS(1528), + [anon_sym_isize] = ACTIONS(1528), + [anon_sym_usize] = ACTIONS(1528), + [anon_sym_f32] = ACTIONS(1528), + [anon_sym_f64] = ACTIONS(1528), + [anon_sym_bool] = ACTIONS(1528), + [anon_sym_str] = ACTIONS(1528), + [anon_sym_char] = ACTIONS(1528), + [anon_sym_SQUOTE] = ACTIONS(1528), + [anon_sym_async] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_default] = ACTIONS(1528), + [anon_sym_enum] = ACTIONS(1528), + [anon_sym_fn] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_impl] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_mod] = ACTIONS(1528), + [anon_sym_pub] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_static] = ACTIONS(1528), + [anon_sym_struct] = ACTIONS(1528), + [anon_sym_trait] = ACTIONS(1528), + [anon_sym_type] = ACTIONS(1528), + [anon_sym_union] = ACTIONS(1528), + [anon_sym_unsafe] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1526), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_LT] = ACTIONS(1526), + [anon_sym_COLON_COLON] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_DOT_DOT] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_yield] = ACTIONS(1528), + [anon_sym_move] = ACTIONS(1528), + [sym_integer_literal] = ACTIONS(1526), + [aux_sym_string_literal_token1] = ACTIONS(1526), + [sym_char_literal] = ACTIONS(1526), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1528), + [sym_super] = ACTIONS(1528), + [sym_crate] = ACTIONS(1528), + [sym_metavariable] = ACTIONS(1526), + [sym_raw_string_literal] = ACTIONS(1526), + [sym_float_literal] = ACTIONS(1526), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_move] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym_raw_string_literal] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), - [sym_block_comment] = ACTIONS(3), - }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_STAR] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_DOT_DOT] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_move] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym_raw_string_literal] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), - [sym_block_comment] = ACTIONS(3), - }, - [364] = { - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_move] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), - [sym_block_comment] = ACTIONS(3), - }, - [365] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_match_arm] = STATE(490), - [sym_last_match_arm] = STATE(2385), - [sym_match_pattern] = STATE(2387), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(547), - [aux_sym_match_block_repeat1] = STATE(490), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_identifier] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_macro_rules_BANG] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), [anon_sym_u8] = ACTIONS(1532), [anon_sym_i8] = ACTIONS(1532), [anon_sym_u16] = ACTIONS(1532), @@ -52404,17 +49690,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1532), [anon_sym_str] = ACTIONS(1532), [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1532), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_default] = ACTIONS(1532), + [anon_sym_enum] = ACTIONS(1532), + [anon_sym_fn] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_impl] = ACTIONS(1532), + [anon_sym_let] = ACTIONS(1532), + [anon_sym_loop] = ACTIONS(1532), + [anon_sym_match] = ACTIONS(1532), + [anon_sym_mod] = ACTIONS(1532), + [anon_sym_pub] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_static] = ACTIONS(1532), + [anon_sym_struct] = ACTIONS(1532), + [anon_sym_trait] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_union] = ACTIONS(1532), + [anon_sym_unsafe] = ACTIONS(1532), + [anon_sym_use] = ACTIONS(1532), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_extern] = ACTIONS(1532), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_COLON_COLON] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_yield] = ACTIONS(1532), + [anon_sym_move] = ACTIONS(1532), + [sym_integer_literal] = ACTIONS(1530), + [aux_sym_string_literal_token1] = ACTIONS(1530), + [sym_char_literal] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1532), + [anon_sym_false] = ACTIONS(1532), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1532), + [sym_super] = ACTIONS(1532), + [sym_crate] = ACTIONS(1532), + [sym_metavariable] = ACTIONS(1530), + [sym_raw_string_literal] = ACTIONS(1530), + [sym_float_literal] = ACTIONS(1530), + [sym_block_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1534), + [anon_sym_macro_rules_BANG] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1534), + [anon_sym_LBRACE] = ACTIONS(1534), + [anon_sym_RBRACE] = ACTIONS(1534), + [anon_sym_LBRACK] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_u8] = ACTIONS(1536), + [anon_sym_i8] = ACTIONS(1536), + [anon_sym_u16] = ACTIONS(1536), + [anon_sym_i16] = ACTIONS(1536), + [anon_sym_u32] = ACTIONS(1536), + [anon_sym_i32] = ACTIONS(1536), + [anon_sym_u64] = ACTIONS(1536), + [anon_sym_i64] = ACTIONS(1536), + [anon_sym_u128] = ACTIONS(1536), + [anon_sym_i128] = ACTIONS(1536), + [anon_sym_isize] = ACTIONS(1536), + [anon_sym_usize] = ACTIONS(1536), + [anon_sym_f32] = ACTIONS(1536), + [anon_sym_f64] = ACTIONS(1536), + [anon_sym_bool] = ACTIONS(1536), + [anon_sym_str] = ACTIONS(1536), + [anon_sym_char] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1536), + [anon_sym_async] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), [anon_sym_default] = ACTIONS(1536), + [anon_sym_enum] = ACTIONS(1536), + [anon_sym_fn] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_impl] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_mod] = ACTIONS(1536), + [anon_sym_pub] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_static] = ACTIONS(1536), + [anon_sym_struct] = ACTIONS(1536), + [anon_sym_trait] = ACTIONS(1536), + [anon_sym_type] = ACTIONS(1536), [anon_sym_union] = ACTIONS(1536), + [anon_sym_unsafe] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_DOT_DOT] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_yield] = ACTIONS(1536), + [anon_sym_move] = ACTIONS(1536), + [sym_integer_literal] = ACTIONS(1534), + [aux_sym_string_literal_token1] = ACTIONS(1534), + [sym_char_literal] = ACTIONS(1534), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1536), + [sym_super] = ACTIONS(1536), + [sym_crate] = ACTIONS(1536), + [sym_metavariable] = ACTIONS(1534), + [sym_raw_string_literal] = ACTIONS(1534), + [sym_float_literal] = ACTIONS(1534), + [sym_block_comment] = ACTIONS(3), + }, + [364] = { + [ts_builtin_sym_end] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1540), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_macro_rules_BANG] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_u8] = ACTIONS(1540), + [anon_sym_i8] = ACTIONS(1540), + [anon_sym_u16] = ACTIONS(1540), + [anon_sym_i16] = ACTIONS(1540), + [anon_sym_u32] = ACTIONS(1540), + [anon_sym_i32] = ACTIONS(1540), + [anon_sym_u64] = ACTIONS(1540), + [anon_sym_i64] = ACTIONS(1540), + [anon_sym_u128] = ACTIONS(1540), + [anon_sym_i128] = ACTIONS(1540), + [anon_sym_isize] = ACTIONS(1540), + [anon_sym_usize] = ACTIONS(1540), + [anon_sym_f32] = ACTIONS(1540), + [anon_sym_f64] = ACTIONS(1540), + [anon_sym_bool] = ACTIONS(1540), + [anon_sym_str] = ACTIONS(1540), + [anon_sym_char] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1540), + [anon_sym_async] = ACTIONS(1540), + [anon_sym_break] = ACTIONS(1540), + [anon_sym_const] = ACTIONS(1540), + [anon_sym_continue] = ACTIONS(1540), + [anon_sym_default] = ACTIONS(1540), + [anon_sym_enum] = ACTIONS(1540), + [anon_sym_fn] = ACTIONS(1540), + [anon_sym_for] = ACTIONS(1540), + [anon_sym_if] = ACTIONS(1540), + [anon_sym_impl] = ACTIONS(1540), + [anon_sym_let] = ACTIONS(1540), + [anon_sym_loop] = ACTIONS(1540), + [anon_sym_match] = ACTIONS(1540), + [anon_sym_mod] = ACTIONS(1540), + [anon_sym_pub] = ACTIONS(1540), + [anon_sym_return] = ACTIONS(1540), + [anon_sym_static] = ACTIONS(1540), + [anon_sym_struct] = ACTIONS(1540), + [anon_sym_trait] = ACTIONS(1540), + [anon_sym_type] = ACTIONS(1540), + [anon_sym_union] = ACTIONS(1540), + [anon_sym_unsafe] = ACTIONS(1540), + [anon_sym_use] = ACTIONS(1540), + [anon_sym_while] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1540), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_COLON_COLON] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_yield] = ACTIONS(1540), + [anon_sym_move] = ACTIONS(1540), + [sym_integer_literal] = ACTIONS(1538), + [aux_sym_string_literal_token1] = ACTIONS(1538), + [sym_char_literal] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1540), + [anon_sym_false] = ACTIONS(1540), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1540), + [sym_super] = ACTIONS(1540), + [sym_crate] = ACTIONS(1540), + [sym_metavariable] = ACTIONS(1538), + [sym_raw_string_literal] = ACTIONS(1538), + [sym_float_literal] = ACTIONS(1538), + [sym_block_comment] = ACTIONS(3), + }, + [365] = { + [ts_builtin_sym_end] = ACTIONS(1542), + [sym_identifier] = ACTIONS(1544), + [anon_sym_SEMI] = ACTIONS(1542), + [anon_sym_macro_rules_BANG] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1542), + [anon_sym_LBRACE] = ACTIONS(1542), + [anon_sym_RBRACE] = ACTIONS(1542), + [anon_sym_LBRACK] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_u8] = ACTIONS(1544), + [anon_sym_i8] = ACTIONS(1544), + [anon_sym_u16] = ACTIONS(1544), + [anon_sym_i16] = ACTIONS(1544), + [anon_sym_u32] = ACTIONS(1544), + [anon_sym_i32] = ACTIONS(1544), + [anon_sym_u64] = ACTIONS(1544), + [anon_sym_i64] = ACTIONS(1544), + [anon_sym_u128] = ACTIONS(1544), + [anon_sym_i128] = ACTIONS(1544), + [anon_sym_isize] = ACTIONS(1544), + [anon_sym_usize] = ACTIONS(1544), + [anon_sym_f32] = ACTIONS(1544), + [anon_sym_f64] = ACTIONS(1544), + [anon_sym_bool] = ACTIONS(1544), + [anon_sym_str] = ACTIONS(1544), + [anon_sym_char] = ACTIONS(1544), + [anon_sym_SQUOTE] = ACTIONS(1544), + [anon_sym_async] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_enum] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_impl] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1544), + [anon_sym_match] = ACTIONS(1544), + [anon_sym_mod] = ACTIONS(1544), + [anon_sym_pub] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_static] = ACTIONS(1544), + [anon_sym_struct] = ACTIONS(1544), + [anon_sym_trait] = ACTIONS(1544), + [anon_sym_type] = ACTIONS(1544), + [anon_sym_union] = ACTIONS(1544), + [anon_sym_unsafe] = ACTIONS(1544), + [anon_sym_use] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_POUND] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_COLON_COLON] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1544), + [sym_integer_literal] = ACTIONS(1542), + [aux_sym_string_literal_token1] = ACTIONS(1542), + [sym_char_literal] = ACTIONS(1542), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1544), + [sym_super] = ACTIONS(1544), + [sym_crate] = ACTIONS(1544), + [sym_metavariable] = ACTIONS(1542), + [sym_raw_string_literal] = ACTIONS(1542), + [sym_float_literal] = ACTIONS(1542), + [sym_block_comment] = ACTIONS(3), + }, + [366] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_match_arm] = STATE(494), + [sym_last_match_arm] = STATE(2385), + [sym_match_pattern] = STATE(2378), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(494), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -52422,1016 +50040,1016 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [366] = { - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_macro_rules_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_u8] = ACTIONS(1548), - [anon_sym_i8] = ACTIONS(1548), - [anon_sym_u16] = ACTIONS(1548), - [anon_sym_i16] = ACTIONS(1548), - [anon_sym_u32] = ACTIONS(1548), - [anon_sym_i32] = ACTIONS(1548), - [anon_sym_u64] = ACTIONS(1548), - [anon_sym_i64] = ACTIONS(1548), - [anon_sym_u128] = ACTIONS(1548), - [anon_sym_i128] = ACTIONS(1548), - [anon_sym_isize] = ACTIONS(1548), - [anon_sym_usize] = ACTIONS(1548), - [anon_sym_f32] = ACTIONS(1548), - [anon_sym_f64] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_str] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_impl] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_mod] = ACTIONS(1548), - [anon_sym_pub] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1548), - [anon_sym_trait] = ACTIONS(1548), - [anon_sym_type] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1548), - [anon_sym_unsafe] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_DOT_DOT] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_yield] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym_raw_string_literal] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), - [sym_block_comment] = ACTIONS(3), - }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1550), - [sym_identifier] = ACTIONS(1552), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_macro_rules_BANG] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_STAR] = ACTIONS(1550), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym_SQUOTE] = ACTIONS(1552), - [anon_sym_async] = ACTIONS(1552), - [anon_sym_break] = ACTIONS(1552), - [anon_sym_const] = ACTIONS(1552), - [anon_sym_continue] = ACTIONS(1552), - [anon_sym_default] = ACTIONS(1552), - [anon_sym_enum] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1552), - [anon_sym_for] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1552), - [anon_sym_impl] = ACTIONS(1552), - [anon_sym_let] = ACTIONS(1552), - [anon_sym_loop] = ACTIONS(1552), - [anon_sym_match] = ACTIONS(1552), - [anon_sym_mod] = ACTIONS(1552), - [anon_sym_pub] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1552), - [anon_sym_static] = ACTIONS(1552), - [anon_sym_struct] = ACTIONS(1552), - [anon_sym_trait] = ACTIONS(1552), - [anon_sym_type] = ACTIONS(1552), - [anon_sym_union] = ACTIONS(1552), - [anon_sym_unsafe] = ACTIONS(1552), - [anon_sym_use] = ACTIONS(1552), - [anon_sym_while] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(1550), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_COLON_COLON] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_yield] = ACTIONS(1552), - [anon_sym_move] = ACTIONS(1552), - [sym_integer_literal] = ACTIONS(1550), - [aux_sym_string_literal_token1] = ACTIONS(1550), - [sym_char_literal] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1552), - [anon_sym_false] = ACTIONS(1552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1552), - [sym_super] = ACTIONS(1552), - [sym_crate] = ACTIONS(1552), - [sym_metavariable] = ACTIONS(1550), - [sym_raw_string_literal] = ACTIONS(1550), - [sym_float_literal] = ACTIONS(1550), + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_macro_rules_BANG] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_u8] = ACTIONS(1550), + [anon_sym_i8] = ACTIONS(1550), + [anon_sym_u16] = ACTIONS(1550), + [anon_sym_i16] = ACTIONS(1550), + [anon_sym_u32] = ACTIONS(1550), + [anon_sym_i32] = ACTIONS(1550), + [anon_sym_u64] = ACTIONS(1550), + [anon_sym_i64] = ACTIONS(1550), + [anon_sym_u128] = ACTIONS(1550), + [anon_sym_i128] = ACTIONS(1550), + [anon_sym_isize] = ACTIONS(1550), + [anon_sym_usize] = ACTIONS(1550), + [anon_sym_f32] = ACTIONS(1550), + [anon_sym_f64] = ACTIONS(1550), + [anon_sym_bool] = ACTIONS(1550), + [anon_sym_str] = ACTIONS(1550), + [anon_sym_char] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_async] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_fn] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_impl] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1550), + [anon_sym_loop] = ACTIONS(1550), + [anon_sym_match] = ACTIONS(1550), + [anon_sym_mod] = ACTIONS(1550), + [anon_sym_pub] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_trait] = ACTIONS(1550), + [anon_sym_type] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_unsafe] = ACTIONS(1550), + [anon_sym_use] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_yield] = ACTIONS(1550), + [anon_sym_move] = ACTIONS(1550), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1548), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1548), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_macro_rules_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_STAR] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_impl] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_pub] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_struct] = ACTIONS(1556), - [anon_sym_trait] = ACTIONS(1556), - [anon_sym_type] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_unsafe] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_yield] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym_raw_string_literal] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_macro_rules_BANG] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_u8] = ACTIONS(1554), + [anon_sym_i8] = ACTIONS(1554), + [anon_sym_u16] = ACTIONS(1554), + [anon_sym_i16] = ACTIONS(1554), + [anon_sym_u32] = ACTIONS(1554), + [anon_sym_i32] = ACTIONS(1554), + [anon_sym_u64] = ACTIONS(1554), + [anon_sym_i64] = ACTIONS(1554), + [anon_sym_u128] = ACTIONS(1554), + [anon_sym_i128] = ACTIONS(1554), + [anon_sym_isize] = ACTIONS(1554), + [anon_sym_usize] = ACTIONS(1554), + [anon_sym_f32] = ACTIONS(1554), + [anon_sym_f64] = ACTIONS(1554), + [anon_sym_bool] = ACTIONS(1554), + [anon_sym_str] = ACTIONS(1554), + [anon_sym_char] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_impl] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_mod] = ACTIONS(1554), + [anon_sym_pub] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_trait] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_yield] = ACTIONS(1554), + [anon_sym_move] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1552), + [aux_sym_string_literal_token1] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_crate] = ACTIONS(1554), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1552), + [sym_float_literal] = ACTIONS(1552), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_macro_rules_BANG] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_impl] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_pub] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_struct] = ACTIONS(1560), - [anon_sym_trait] = ACTIONS(1560), - [anon_sym_type] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_unsafe] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_DOT_DOT] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_yield] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym_raw_string_literal] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_macro_rules_BANG] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_impl] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_mod] = ACTIONS(1558), + [anon_sym_pub] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_trait] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_unsafe] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_yield] = ACTIONS(1558), + [anon_sym_move] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym_raw_string_literal] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1562), - [sym_identifier] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_macro_rules_BANG] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_u8] = ACTIONS(1564), - [anon_sym_i8] = ACTIONS(1564), - [anon_sym_u16] = ACTIONS(1564), - [anon_sym_i16] = ACTIONS(1564), - [anon_sym_u32] = ACTIONS(1564), - [anon_sym_i32] = ACTIONS(1564), - [anon_sym_u64] = ACTIONS(1564), - [anon_sym_i64] = ACTIONS(1564), - [anon_sym_u128] = ACTIONS(1564), - [anon_sym_i128] = ACTIONS(1564), - [anon_sym_isize] = ACTIONS(1564), - [anon_sym_usize] = ACTIONS(1564), - [anon_sym_f32] = ACTIONS(1564), - [anon_sym_f64] = ACTIONS(1564), - [anon_sym_bool] = ACTIONS(1564), - [anon_sym_str] = ACTIONS(1564), - [anon_sym_char] = ACTIONS(1564), - [anon_sym_SQUOTE] = ACTIONS(1564), - [anon_sym_async] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_continue] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_enum] = ACTIONS(1564), - [anon_sym_fn] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_impl] = ACTIONS(1564), - [anon_sym_let] = ACTIONS(1564), - [anon_sym_loop] = ACTIONS(1564), - [anon_sym_match] = ACTIONS(1564), - [anon_sym_mod] = ACTIONS(1564), - [anon_sym_pub] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1564), - [anon_sym_struct] = ACTIONS(1564), - [anon_sym_trait] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_unsafe] = ACTIONS(1564), - [anon_sym_use] = ACTIONS(1564), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_POUND] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_extern] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_COLON_COLON] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_DOT_DOT] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_yield] = ACTIONS(1564), - [anon_sym_move] = ACTIONS(1564), - [sym_integer_literal] = ACTIONS(1562), - [aux_sym_string_literal_token1] = ACTIONS(1562), - [sym_char_literal] = ACTIONS(1562), - [anon_sym_true] = ACTIONS(1564), - [anon_sym_false] = ACTIONS(1564), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1564), - [sym_super] = ACTIONS(1564), - [sym_crate] = ACTIONS(1564), - [sym_metavariable] = ACTIONS(1562), - [sym_raw_string_literal] = ACTIONS(1562), - [sym_float_literal] = ACTIONS(1562), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_macro_rules_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_u8] = ACTIONS(1562), + [anon_sym_i8] = ACTIONS(1562), + [anon_sym_u16] = ACTIONS(1562), + [anon_sym_i16] = ACTIONS(1562), + [anon_sym_u32] = ACTIONS(1562), + [anon_sym_i32] = ACTIONS(1562), + [anon_sym_u64] = ACTIONS(1562), + [anon_sym_i64] = ACTIONS(1562), + [anon_sym_u128] = ACTIONS(1562), + [anon_sym_i128] = ACTIONS(1562), + [anon_sym_isize] = ACTIONS(1562), + [anon_sym_usize] = ACTIONS(1562), + [anon_sym_f32] = ACTIONS(1562), + [anon_sym_f64] = ACTIONS(1562), + [anon_sym_bool] = ACTIONS(1562), + [anon_sym_str] = ACTIONS(1562), + [anon_sym_char] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_fn] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1562), + [anon_sym_loop] = ACTIONS(1562), + [anon_sym_match] = ACTIONS(1562), + [anon_sym_mod] = ACTIONS(1562), + [anon_sym_pub] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_trait] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1562), + [anon_sym_use] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_COLON_COLON] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_yield] = ACTIONS(1562), + [anon_sym_move] = ACTIONS(1562), + [sym_integer_literal] = ACTIONS(1560), + [aux_sym_string_literal_token1] = ACTIONS(1560), + [sym_char_literal] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1562), + [anon_sym_false] = ACTIONS(1562), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1562), + [sym_super] = ACTIONS(1562), + [sym_crate] = ACTIONS(1562), + [sym_metavariable] = ACTIONS(1560), + [sym_raw_string_literal] = ACTIONS(1560), + [sym_float_literal] = ACTIONS(1560), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [sym_identifier] = ACTIONS(1568), - [anon_sym_SEMI] = ACTIONS(1566), - [anon_sym_macro_rules_BANG] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1566), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_SQUOTE] = ACTIONS(1568), - [anon_sym_async] = ACTIONS(1568), - [anon_sym_break] = ACTIONS(1568), - [anon_sym_const] = ACTIONS(1568), - [anon_sym_continue] = ACTIONS(1568), - [anon_sym_default] = ACTIONS(1568), - [anon_sym_enum] = ACTIONS(1568), - [anon_sym_fn] = ACTIONS(1568), - [anon_sym_for] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1568), - [anon_sym_impl] = ACTIONS(1568), - [anon_sym_let] = ACTIONS(1568), - [anon_sym_loop] = ACTIONS(1568), - [anon_sym_match] = ACTIONS(1568), - [anon_sym_mod] = ACTIONS(1568), - [anon_sym_pub] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1568), - [anon_sym_static] = ACTIONS(1568), - [anon_sym_struct] = ACTIONS(1568), - [anon_sym_trait] = ACTIONS(1568), - [anon_sym_type] = ACTIONS(1568), - [anon_sym_union] = ACTIONS(1568), - [anon_sym_unsafe] = ACTIONS(1568), - [anon_sym_use] = ACTIONS(1568), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_POUND] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_extern] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_COLON_COLON] = ACTIONS(1566), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_DOT_DOT] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_yield] = ACTIONS(1568), - [anon_sym_move] = ACTIONS(1568), - [sym_integer_literal] = ACTIONS(1566), - [aux_sym_string_literal_token1] = ACTIONS(1566), - [sym_char_literal] = ACTIONS(1566), - [anon_sym_true] = ACTIONS(1568), - [anon_sym_false] = ACTIONS(1568), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1568), - [sym_super] = ACTIONS(1568), - [sym_crate] = ACTIONS(1568), - [sym_metavariable] = ACTIONS(1566), - [sym_raw_string_literal] = ACTIONS(1566), - [sym_float_literal] = ACTIONS(1566), + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_macro_rules_BANG] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_fn] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_impl] = ACTIONS(1566), + [anon_sym_let] = ACTIONS(1566), + [anon_sym_loop] = ACTIONS(1566), + [anon_sym_match] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_pub] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_trait] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_unsafe] = ACTIONS(1566), + [anon_sym_use] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_DOT_DOT] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_yield] = ACTIONS(1566), + [anon_sym_move] = ACTIONS(1566), + [sym_integer_literal] = ACTIONS(1564), + [aux_sym_string_literal_token1] = ACTIONS(1564), + [sym_char_literal] = ACTIONS(1564), + [anon_sym_true] = ACTIONS(1566), + [anon_sym_false] = ACTIONS(1566), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1566), + [sym_super] = ACTIONS(1566), + [sym_crate] = ACTIONS(1566), + [sym_metavariable] = ACTIONS(1564), + [sym_raw_string_literal] = ACTIONS(1564), + [sym_float_literal] = ACTIONS(1564), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1570), - [sym_identifier] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_macro_rules_BANG] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_u8] = ACTIONS(1572), - [anon_sym_i8] = ACTIONS(1572), - [anon_sym_u16] = ACTIONS(1572), - [anon_sym_i16] = ACTIONS(1572), - [anon_sym_u32] = ACTIONS(1572), - [anon_sym_i32] = ACTIONS(1572), - [anon_sym_u64] = ACTIONS(1572), - [anon_sym_i64] = ACTIONS(1572), - [anon_sym_u128] = ACTIONS(1572), - [anon_sym_i128] = ACTIONS(1572), - [anon_sym_isize] = ACTIONS(1572), - [anon_sym_usize] = ACTIONS(1572), - [anon_sym_f32] = ACTIONS(1572), - [anon_sym_f64] = ACTIONS(1572), - [anon_sym_bool] = ACTIONS(1572), - [anon_sym_str] = ACTIONS(1572), - [anon_sym_char] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(1572), - [anon_sym_async] = ACTIONS(1572), - [anon_sym_break] = ACTIONS(1572), - [anon_sym_const] = ACTIONS(1572), - [anon_sym_continue] = ACTIONS(1572), - [anon_sym_default] = ACTIONS(1572), - [anon_sym_enum] = ACTIONS(1572), - [anon_sym_fn] = ACTIONS(1572), - [anon_sym_for] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1572), - [anon_sym_impl] = ACTIONS(1572), - [anon_sym_let] = ACTIONS(1572), - [anon_sym_loop] = ACTIONS(1572), - [anon_sym_match] = ACTIONS(1572), - [anon_sym_mod] = ACTIONS(1572), - [anon_sym_pub] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1572), - [anon_sym_static] = ACTIONS(1572), - [anon_sym_struct] = ACTIONS(1572), - [anon_sym_trait] = ACTIONS(1572), - [anon_sym_type] = ACTIONS(1572), - [anon_sym_union] = ACTIONS(1572), - [anon_sym_unsafe] = ACTIONS(1572), - [anon_sym_use] = ACTIONS(1572), - [anon_sym_while] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(1570), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_COLON_COLON] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1570), - [aux_sym_string_literal_token1] = ACTIONS(1570), - [sym_char_literal] = ACTIONS(1570), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1572), - [sym_super] = ACTIONS(1572), - [sym_crate] = ACTIONS(1572), - [sym_metavariable] = ACTIONS(1570), - [sym_raw_string_literal] = ACTIONS(1570), - [sym_float_literal] = ACTIONS(1570), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_macro_rules_BANG] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_u8] = ACTIONS(1570), + [anon_sym_i8] = ACTIONS(1570), + [anon_sym_u16] = ACTIONS(1570), + [anon_sym_i16] = ACTIONS(1570), + [anon_sym_u32] = ACTIONS(1570), + [anon_sym_i32] = ACTIONS(1570), + [anon_sym_u64] = ACTIONS(1570), + [anon_sym_i64] = ACTIONS(1570), + [anon_sym_u128] = ACTIONS(1570), + [anon_sym_i128] = ACTIONS(1570), + [anon_sym_isize] = ACTIONS(1570), + [anon_sym_usize] = ACTIONS(1570), + [anon_sym_f32] = ACTIONS(1570), + [anon_sym_f64] = ACTIONS(1570), + [anon_sym_bool] = ACTIONS(1570), + [anon_sym_str] = ACTIONS(1570), + [anon_sym_char] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_enum] = ACTIONS(1570), + [anon_sym_fn] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_loop] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_mod] = ACTIONS(1570), + [anon_sym_pub] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_static] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1570), + [anon_sym_trait] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1570), + [anon_sym_use] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_extern] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1568), + [aux_sym_string_literal_token1] = ACTIONS(1568), + [sym_char_literal] = ACTIONS(1568), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1570), + [sym_super] = ACTIONS(1570), + [sym_crate] = ACTIONS(1570), + [sym_metavariable] = ACTIONS(1568), + [sym_raw_string_literal] = ACTIONS(1568), + [sym_float_literal] = ACTIONS(1568), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1574), - [sym_identifier] = ACTIONS(1576), - [anon_sym_SEMI] = ACTIONS(1574), - [anon_sym_macro_rules_BANG] = ACTIONS(1574), - [anon_sym_LPAREN] = ACTIONS(1574), - [anon_sym_LBRACE] = ACTIONS(1574), - [anon_sym_RBRACE] = ACTIONS(1574), - [anon_sym_LBRACK] = ACTIONS(1574), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_u8] = ACTIONS(1576), - [anon_sym_i8] = ACTIONS(1576), - [anon_sym_u16] = ACTIONS(1576), - [anon_sym_i16] = ACTIONS(1576), - [anon_sym_u32] = ACTIONS(1576), - [anon_sym_i32] = ACTIONS(1576), - [anon_sym_u64] = ACTIONS(1576), - [anon_sym_i64] = ACTIONS(1576), - [anon_sym_u128] = ACTIONS(1576), - [anon_sym_i128] = ACTIONS(1576), - [anon_sym_isize] = ACTIONS(1576), - [anon_sym_usize] = ACTIONS(1576), - [anon_sym_f32] = ACTIONS(1576), - [anon_sym_f64] = ACTIONS(1576), - [anon_sym_bool] = ACTIONS(1576), - [anon_sym_str] = ACTIONS(1576), - [anon_sym_char] = ACTIONS(1576), - [anon_sym_SQUOTE] = ACTIONS(1576), - [anon_sym_async] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_enum] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_impl] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_mod] = ACTIONS(1576), - [anon_sym_pub] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_static] = ACTIONS(1576), - [anon_sym_struct] = ACTIONS(1576), - [anon_sym_trait] = ACTIONS(1576), - [anon_sym_type] = ACTIONS(1576), - [anon_sym_union] = ACTIONS(1576), - [anon_sym_unsafe] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_DOT_DOT] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_yield] = ACTIONS(1576), - [anon_sym_move] = ACTIONS(1576), - [sym_integer_literal] = ACTIONS(1574), - [aux_sym_string_literal_token1] = ACTIONS(1574), - [sym_char_literal] = ACTIONS(1574), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1576), - [sym_super] = ACTIONS(1576), - [sym_crate] = ACTIONS(1576), - [sym_metavariable] = ACTIONS(1574), - [sym_raw_string_literal] = ACTIONS(1574), - [sym_float_literal] = ACTIONS(1574), + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_macro_rules_BANG] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u128] = ACTIONS(1574), + [anon_sym_i128] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_str] = ACTIONS(1574), + [anon_sym_char] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1574), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_const] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_default] = ACTIONS(1574), + [anon_sym_enum] = ACTIONS(1574), + [anon_sym_fn] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(1574), + [anon_sym_impl] = ACTIONS(1574), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_loop] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1574), + [anon_sym_mod] = ACTIONS(1574), + [anon_sym_pub] = ACTIONS(1574), + [anon_sym_return] = ACTIONS(1574), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_trait] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_union] = ACTIONS(1574), + [anon_sym_unsafe] = ACTIONS(1574), + [anon_sym_use] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_extern] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1574), + [anon_sym_move] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1572), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1574), + [sym_super] = ACTIONS(1574), + [sym_crate] = ACTIONS(1574), + [sym_metavariable] = ACTIONS(1572), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_identifier] = ACTIONS(1580), - [anon_sym_SEMI] = ACTIONS(1578), - [anon_sym_macro_rules_BANG] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_u8] = ACTIONS(1580), - [anon_sym_i8] = ACTIONS(1580), - [anon_sym_u16] = ACTIONS(1580), - [anon_sym_i16] = ACTIONS(1580), - [anon_sym_u32] = ACTIONS(1580), - [anon_sym_i32] = ACTIONS(1580), - [anon_sym_u64] = ACTIONS(1580), - [anon_sym_i64] = ACTIONS(1580), - [anon_sym_u128] = ACTIONS(1580), - [anon_sym_i128] = ACTIONS(1580), - [anon_sym_isize] = ACTIONS(1580), - [anon_sym_usize] = ACTIONS(1580), - [anon_sym_f32] = ACTIONS(1580), - [anon_sym_f64] = ACTIONS(1580), - [anon_sym_bool] = ACTIONS(1580), - [anon_sym_str] = ACTIONS(1580), - [anon_sym_char] = ACTIONS(1580), - [anon_sym_SQUOTE] = ACTIONS(1580), - [anon_sym_async] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_const] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_default] = ACTIONS(1580), - [anon_sym_enum] = ACTIONS(1580), - [anon_sym_fn] = ACTIONS(1580), - [anon_sym_for] = ACTIONS(1580), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_impl] = ACTIONS(1580), - [anon_sym_let] = ACTIONS(1580), - [anon_sym_loop] = ACTIONS(1580), - [anon_sym_match] = ACTIONS(1580), - [anon_sym_mod] = ACTIONS(1580), - [anon_sym_pub] = ACTIONS(1580), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_struct] = ACTIONS(1580), - [anon_sym_trait] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_union] = ACTIONS(1580), - [anon_sym_unsafe] = ACTIONS(1580), - [anon_sym_use] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1578), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_LT] = ACTIONS(1578), - [anon_sym_COLON_COLON] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1578), - [anon_sym_DOT_DOT] = ACTIONS(1578), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_PIPE] = ACTIONS(1578), - [anon_sym_yield] = ACTIONS(1580), - [anon_sym_move] = ACTIONS(1580), - [sym_integer_literal] = ACTIONS(1578), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1578), - [sym_raw_string_literal] = ACTIONS(1578), - [sym_float_literal] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_macro_rules_BANG] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_u8] = ACTIONS(1578), + [anon_sym_i8] = ACTIONS(1578), + [anon_sym_u16] = ACTIONS(1578), + [anon_sym_i16] = ACTIONS(1578), + [anon_sym_u32] = ACTIONS(1578), + [anon_sym_i32] = ACTIONS(1578), + [anon_sym_u64] = ACTIONS(1578), + [anon_sym_i64] = ACTIONS(1578), + [anon_sym_u128] = ACTIONS(1578), + [anon_sym_i128] = ACTIONS(1578), + [anon_sym_isize] = ACTIONS(1578), + [anon_sym_usize] = ACTIONS(1578), + [anon_sym_f32] = ACTIONS(1578), + [anon_sym_f64] = ACTIONS(1578), + [anon_sym_bool] = ACTIONS(1578), + [anon_sym_str] = ACTIONS(1578), + [anon_sym_char] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1578), + [anon_sym_const] = ACTIONS(1578), + [anon_sym_continue] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1578), + [anon_sym_enum] = ACTIONS(1578), + [anon_sym_fn] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1578), + [anon_sym_let] = ACTIONS(1578), + [anon_sym_loop] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_mod] = ACTIONS(1578), + [anon_sym_pub] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1578), + [anon_sym_trait] = ACTIONS(1578), + [anon_sym_type] = ACTIONS(1578), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_use] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_COLON_COLON] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_move] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1576), + [aux_sym_string_literal_token1] = ACTIONS(1576), + [sym_char_literal] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1576), + [sym_raw_string_literal] = ACTIONS(1576), + [sym_float_literal] = ACTIONS(1576), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_macro_rules_BANG] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_u8] = ACTIONS(1584), - [anon_sym_i8] = ACTIONS(1584), - [anon_sym_u16] = ACTIONS(1584), - [anon_sym_i16] = ACTIONS(1584), - [anon_sym_u32] = ACTIONS(1584), - [anon_sym_i32] = ACTIONS(1584), - [anon_sym_u64] = ACTIONS(1584), - [anon_sym_i64] = ACTIONS(1584), - [anon_sym_u128] = ACTIONS(1584), - [anon_sym_i128] = ACTIONS(1584), - [anon_sym_isize] = ACTIONS(1584), - [anon_sym_usize] = ACTIONS(1584), - [anon_sym_f32] = ACTIONS(1584), - [anon_sym_f64] = ACTIONS(1584), - [anon_sym_bool] = ACTIONS(1584), - [anon_sym_str] = ACTIONS(1584), - [anon_sym_char] = ACTIONS(1584), - [anon_sym_SQUOTE] = ACTIONS(1584), - [anon_sym_async] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_const] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_enum] = ACTIONS(1584), - [anon_sym_fn] = ACTIONS(1584), - [anon_sym_for] = ACTIONS(1584), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_impl] = ACTIONS(1584), - [anon_sym_let] = ACTIONS(1584), - [anon_sym_loop] = ACTIONS(1584), - [anon_sym_match] = ACTIONS(1584), - [anon_sym_mod] = ACTIONS(1584), - [anon_sym_pub] = ACTIONS(1584), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_struct] = ACTIONS(1584), - [anon_sym_trait] = ACTIONS(1584), - [anon_sym_type] = ACTIONS(1584), - [anon_sym_union] = ACTIONS(1584), - [anon_sym_unsafe] = ACTIONS(1584), - [anon_sym_use] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1582), - [anon_sym_BANG] = ACTIONS(1582), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_LT] = ACTIONS(1582), - [anon_sym_COLON_COLON] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_DOT_DOT] = ACTIONS(1582), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_PIPE] = ACTIONS(1582), - [anon_sym_yield] = ACTIONS(1584), - [anon_sym_move] = ACTIONS(1584), - [sym_integer_literal] = ACTIONS(1582), - [aux_sym_string_literal_token1] = ACTIONS(1582), - [sym_char_literal] = ACTIONS(1582), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1584), - [sym_super] = ACTIONS(1584), - [sym_crate] = ACTIONS(1584), - [sym_metavariable] = ACTIONS(1582), - [sym_raw_string_literal] = ACTIONS(1582), - [sym_float_literal] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_macro_rules_BANG] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_u8] = ACTIONS(1582), + [anon_sym_i8] = ACTIONS(1582), + [anon_sym_u16] = ACTIONS(1582), + [anon_sym_i16] = ACTIONS(1582), + [anon_sym_u32] = ACTIONS(1582), + [anon_sym_i32] = ACTIONS(1582), + [anon_sym_u64] = ACTIONS(1582), + [anon_sym_i64] = ACTIONS(1582), + [anon_sym_u128] = ACTIONS(1582), + [anon_sym_i128] = ACTIONS(1582), + [anon_sym_isize] = ACTIONS(1582), + [anon_sym_usize] = ACTIONS(1582), + [anon_sym_f32] = ACTIONS(1582), + [anon_sym_f64] = ACTIONS(1582), + [anon_sym_bool] = ACTIONS(1582), + [anon_sym_str] = ACTIONS(1582), + [anon_sym_char] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_async] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1582), + [anon_sym_continue] = ACTIONS(1582), + [anon_sym_default] = ACTIONS(1582), + [anon_sym_enum] = ACTIONS(1582), + [anon_sym_fn] = ACTIONS(1582), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_if] = ACTIONS(1582), + [anon_sym_impl] = ACTIONS(1582), + [anon_sym_let] = ACTIONS(1582), + [anon_sym_loop] = ACTIONS(1582), + [anon_sym_match] = ACTIONS(1582), + [anon_sym_mod] = ACTIONS(1582), + [anon_sym_pub] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_struct] = ACTIONS(1582), + [anon_sym_trait] = ACTIONS(1582), + [anon_sym_type] = ACTIONS(1582), + [anon_sym_union] = ACTIONS(1582), + [anon_sym_unsafe] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1582), + [anon_sym_while] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_yield] = ACTIONS(1582), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1580), + [aux_sym_string_literal_token1] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(1580), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1580), + [sym_float_literal] = ACTIONS(1580), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1586), - [sym_identifier] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1586), - [anon_sym_macro_rules_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_LBRACK] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1586), - [anon_sym_u8] = ACTIONS(1588), - [anon_sym_i8] = ACTIONS(1588), - [anon_sym_u16] = ACTIONS(1588), - [anon_sym_i16] = ACTIONS(1588), - [anon_sym_u32] = ACTIONS(1588), - [anon_sym_i32] = ACTIONS(1588), - [anon_sym_u64] = ACTIONS(1588), - [anon_sym_i64] = ACTIONS(1588), - [anon_sym_u128] = ACTIONS(1588), - [anon_sym_i128] = ACTIONS(1588), - [anon_sym_isize] = ACTIONS(1588), - [anon_sym_usize] = ACTIONS(1588), - [anon_sym_f32] = ACTIONS(1588), - [anon_sym_f64] = ACTIONS(1588), - [anon_sym_bool] = ACTIONS(1588), - [anon_sym_str] = ACTIONS(1588), - [anon_sym_char] = ACTIONS(1588), - [anon_sym_SQUOTE] = ACTIONS(1588), - [anon_sym_async] = ACTIONS(1588), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_const] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1588), - [anon_sym_default] = ACTIONS(1588), - [anon_sym_enum] = ACTIONS(1588), - [anon_sym_fn] = ACTIONS(1588), - [anon_sym_for] = ACTIONS(1588), - [anon_sym_if] = ACTIONS(1588), - [anon_sym_impl] = ACTIONS(1588), - [anon_sym_let] = ACTIONS(1588), - [anon_sym_loop] = ACTIONS(1588), - [anon_sym_match] = ACTIONS(1588), - [anon_sym_mod] = ACTIONS(1588), - [anon_sym_pub] = ACTIONS(1588), - [anon_sym_return] = ACTIONS(1588), - [anon_sym_static] = ACTIONS(1588), - [anon_sym_struct] = ACTIONS(1588), - [anon_sym_trait] = ACTIONS(1588), - [anon_sym_type] = ACTIONS(1588), - [anon_sym_union] = ACTIONS(1588), - [anon_sym_unsafe] = ACTIONS(1588), - [anon_sym_use] = ACTIONS(1588), - [anon_sym_while] = ACTIONS(1588), - [anon_sym_POUND] = ACTIONS(1586), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_extern] = ACTIONS(1588), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_COLON_COLON] = ACTIONS(1586), - [anon_sym_AMP] = ACTIONS(1586), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_PIPE] = ACTIONS(1586), - [anon_sym_yield] = ACTIONS(1588), - [anon_sym_move] = ACTIONS(1588), - [sym_integer_literal] = ACTIONS(1586), - [aux_sym_string_literal_token1] = ACTIONS(1586), - [sym_char_literal] = ACTIONS(1586), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1588), - [sym_super] = ACTIONS(1588), - [sym_crate] = ACTIONS(1588), - [sym_metavariable] = ACTIONS(1586), - [sym_raw_string_literal] = ACTIONS(1586), - [sym_float_literal] = ACTIONS(1586), + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_macro_rules_BANG] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1586), + [anon_sym_i8] = ACTIONS(1586), + [anon_sym_u16] = ACTIONS(1586), + [anon_sym_i16] = ACTIONS(1586), + [anon_sym_u32] = ACTIONS(1586), + [anon_sym_i32] = ACTIONS(1586), + [anon_sym_u64] = ACTIONS(1586), + [anon_sym_i64] = ACTIONS(1586), + [anon_sym_u128] = ACTIONS(1586), + [anon_sym_i128] = ACTIONS(1586), + [anon_sym_isize] = ACTIONS(1586), + [anon_sym_usize] = ACTIONS(1586), + [anon_sym_f32] = ACTIONS(1586), + [anon_sym_f64] = ACTIONS(1586), + [anon_sym_bool] = ACTIONS(1586), + [anon_sym_str] = ACTIONS(1586), + [anon_sym_char] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1586), + [anon_sym_fn] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_impl] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_mod] = ACTIONS(1586), + [anon_sym_pub] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1586), + [anon_sym_trait] = ACTIONS(1586), + [anon_sym_type] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1586), + [anon_sym_unsafe] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_yield] = ACTIONS(1586), + [anon_sym_move] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1586), + [sym_crate] = ACTIONS(1586), + [sym_metavariable] = ACTIONS(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_identifier] = ACTIONS(1592), - [anon_sym_SEMI] = ACTIONS(1590), - [anon_sym_macro_rules_BANG] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_u8] = ACTIONS(1592), - [anon_sym_i8] = ACTIONS(1592), - [anon_sym_u16] = ACTIONS(1592), - [anon_sym_i16] = ACTIONS(1592), - [anon_sym_u32] = ACTIONS(1592), - [anon_sym_i32] = ACTIONS(1592), - [anon_sym_u64] = ACTIONS(1592), - [anon_sym_i64] = ACTIONS(1592), - [anon_sym_u128] = ACTIONS(1592), - [anon_sym_i128] = ACTIONS(1592), - [anon_sym_isize] = ACTIONS(1592), - [anon_sym_usize] = ACTIONS(1592), - [anon_sym_f32] = ACTIONS(1592), - [anon_sym_f64] = ACTIONS(1592), - [anon_sym_bool] = ACTIONS(1592), - [anon_sym_str] = ACTIONS(1592), - [anon_sym_char] = ACTIONS(1592), - [anon_sym_SQUOTE] = ACTIONS(1592), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_break] = ACTIONS(1592), - [anon_sym_const] = ACTIONS(1592), - [anon_sym_continue] = ACTIONS(1592), - [anon_sym_default] = ACTIONS(1592), - [anon_sym_enum] = ACTIONS(1592), - [anon_sym_fn] = ACTIONS(1592), - [anon_sym_for] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1592), - [anon_sym_impl] = ACTIONS(1592), - [anon_sym_let] = ACTIONS(1592), - [anon_sym_loop] = ACTIONS(1592), - [anon_sym_match] = ACTIONS(1592), - [anon_sym_mod] = ACTIONS(1592), - [anon_sym_pub] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1592), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_struct] = ACTIONS(1592), - [anon_sym_trait] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_union] = ACTIONS(1592), - [anon_sym_unsafe] = ACTIONS(1592), - [anon_sym_use] = ACTIONS(1592), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_POUND] = ACTIONS(1590), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_COLON_COLON] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_DOT_DOT] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_move] = ACTIONS(1592), - [sym_integer_literal] = ACTIONS(1590), - [aux_sym_string_literal_token1] = ACTIONS(1590), - [sym_char_literal] = ACTIONS(1590), - [anon_sym_true] = ACTIONS(1592), - [anon_sym_false] = ACTIONS(1592), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1592), - [sym_super] = ACTIONS(1592), - [sym_crate] = ACTIONS(1592), - [sym_metavariable] = ACTIONS(1590), - [sym_raw_string_literal] = ACTIONS(1590), - [sym_float_literal] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_macro_rules_BANG] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u128] = ACTIONS(1590), + [anon_sym_i128] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_str] = ACTIONS(1590), + [anon_sym_char] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_async] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_const] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_enum] = ACTIONS(1590), + [anon_sym_fn] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_impl] = ACTIONS(1590), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_loop] = ACTIONS(1590), + [anon_sym_match] = ACTIONS(1590), + [anon_sym_mod] = ACTIONS(1590), + [anon_sym_pub] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_trait] = ACTIONS(1590), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_union] = ACTIONS(1590), + [anon_sym_unsafe] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_yield] = ACTIONS(1590), + [anon_sym_move] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(1588), + [aux_sym_string_literal_token1] = ACTIONS(1588), + [sym_char_literal] = ACTIONS(1588), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1590), + [sym_super] = ACTIONS(1590), + [sym_crate] = ACTIONS(1590), + [sym_metavariable] = ACTIONS(1588), + [sym_raw_string_literal] = ACTIONS(1588), + [sym_float_literal] = ACTIONS(1588), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1594), - [sym_identifier] = ACTIONS(1596), - [anon_sym_SEMI] = ACTIONS(1594), - [anon_sym_macro_rules_BANG] = ACTIONS(1594), - [anon_sym_LPAREN] = ACTIONS(1594), - [anon_sym_LBRACE] = ACTIONS(1594), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_STAR] = ACTIONS(1594), - [anon_sym_u8] = ACTIONS(1596), - [anon_sym_i8] = ACTIONS(1596), - [anon_sym_u16] = ACTIONS(1596), - [anon_sym_i16] = ACTIONS(1596), - [anon_sym_u32] = ACTIONS(1596), - [anon_sym_i32] = ACTIONS(1596), - [anon_sym_u64] = ACTIONS(1596), - [anon_sym_i64] = ACTIONS(1596), - [anon_sym_u128] = ACTIONS(1596), - [anon_sym_i128] = ACTIONS(1596), - [anon_sym_isize] = ACTIONS(1596), - [anon_sym_usize] = ACTIONS(1596), - [anon_sym_f32] = ACTIONS(1596), - [anon_sym_f64] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_str] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_SQUOTE] = ACTIONS(1596), - [anon_sym_async] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_enum] = ACTIONS(1596), - [anon_sym_fn] = ACTIONS(1596), - [anon_sym_for] = ACTIONS(1596), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_impl] = ACTIONS(1596), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_loop] = ACTIONS(1596), - [anon_sym_match] = ACTIONS(1596), - [anon_sym_mod] = ACTIONS(1596), - [anon_sym_pub] = ACTIONS(1596), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_struct] = ACTIONS(1596), - [anon_sym_trait] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_union] = ACTIONS(1596), - [anon_sym_unsafe] = ACTIONS(1596), - [anon_sym_use] = ACTIONS(1596), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1594), - [anon_sym_BANG] = ACTIONS(1594), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_LT] = ACTIONS(1594), - [anon_sym_COLON_COLON] = ACTIONS(1594), - [anon_sym_AMP] = ACTIONS(1594), - [anon_sym_DOT_DOT] = ACTIONS(1594), - [anon_sym_DASH] = ACTIONS(1594), - [anon_sym_PIPE] = ACTIONS(1594), - [anon_sym_yield] = ACTIONS(1596), - [anon_sym_move] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1594), - [aux_sym_string_literal_token1] = ACTIONS(1594), - [sym_char_literal] = ACTIONS(1594), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1596), - [sym_super] = ACTIONS(1596), - [sym_crate] = ACTIONS(1596), - [sym_metavariable] = ACTIONS(1594), - [sym_raw_string_literal] = ACTIONS(1594), - [sym_float_literal] = ACTIONS(1594), + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_identifier] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_macro_rules_BANG] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(1594), + [anon_sym_continue] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1594), + [anon_sym_enum] = ACTIONS(1594), + [anon_sym_fn] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1594), + [anon_sym_impl] = ACTIONS(1594), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_loop] = ACTIONS(1594), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_mod] = ACTIONS(1594), + [anon_sym_pub] = ACTIONS(1594), + [anon_sym_return] = ACTIONS(1594), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_struct] = ACTIONS(1594), + [anon_sym_trait] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_union] = ACTIONS(1594), + [anon_sym_unsafe] = ACTIONS(1594), + [anon_sym_use] = ACTIONS(1594), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_extern] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_yield] = ACTIONS(1594), + [anon_sym_move] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1592), + [aux_sym_string_literal_token1] = ACTIONS(1592), + [sym_char_literal] = ACTIONS(1592), + [anon_sym_true] = ACTIONS(1594), + [anon_sym_false] = ACTIONS(1594), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1594), + [sym_crate] = ACTIONS(1594), + [sym_metavariable] = ACTIONS(1592), + [sym_raw_string_literal] = ACTIONS(1592), + [sym_float_literal] = ACTIONS(1592), [sym_block_comment] = ACTIONS(3), }, [379] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_match_arm] = STATE(488), + [sym_last_match_arm] = STATE(2357), + [sym_match_pattern] = STATE(2378), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(488), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [380] = { [ts_builtin_sym_end] = ACTIONS(1598), [sym_identifier] = ACTIONS(1600), [anon_sym_SEMI] = ACTIONS(1598), @@ -53508,7 +51126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1598), [sym_block_comment] = ACTIONS(3), }, - [380] = { + [381] = { [ts_builtin_sym_end] = ACTIONS(1602), [sym_identifier] = ACTIONS(1604), [anon_sym_SEMI] = ACTIONS(1602), @@ -53585,7 +51203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1602), [sym_block_comment] = ACTIONS(3), }, - [381] = { + [382] = { [ts_builtin_sym_end] = ACTIONS(1606), [sym_identifier] = ACTIONS(1608), [anon_sym_SEMI] = ACTIONS(1606), @@ -53662,7 +51280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1606), [sym_block_comment] = ACTIONS(3), }, - [382] = { + [383] = { [ts_builtin_sym_end] = ACTIONS(1610), [sym_identifier] = ACTIONS(1612), [anon_sym_SEMI] = ACTIONS(1610), @@ -53739,7 +51357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1610), [sym_block_comment] = ACTIONS(3), }, - [383] = { + [384] = { [ts_builtin_sym_end] = ACTIONS(1614), [sym_identifier] = ACTIONS(1616), [anon_sym_SEMI] = ACTIONS(1614), @@ -53816,7 +51434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1614), [sym_block_comment] = ACTIONS(3), }, - [384] = { + [385] = { [ts_builtin_sym_end] = ACTIONS(1618), [sym_identifier] = ACTIONS(1620), [anon_sym_SEMI] = ACTIONS(1618), @@ -53893,7 +51511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1618), [sym_block_comment] = ACTIONS(3), }, - [385] = { + [386] = { [ts_builtin_sym_end] = ACTIONS(1622), [sym_identifier] = ACTIONS(1624), [anon_sym_SEMI] = ACTIONS(1622), @@ -53970,7 +51588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1622), [sym_block_comment] = ACTIONS(3), }, - [386] = { + [387] = { [ts_builtin_sym_end] = ACTIONS(1626), [sym_identifier] = ACTIONS(1628), [anon_sym_SEMI] = ACTIONS(1626), @@ -54047,7 +51665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1626), [sym_block_comment] = ACTIONS(3), }, - [387] = { + [388] = { [ts_builtin_sym_end] = ACTIONS(1630), [sym_identifier] = ACTIONS(1632), [anon_sym_SEMI] = ACTIONS(1630), @@ -54124,7 +51742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1630), [sym_block_comment] = ACTIONS(3), }, - [388] = { + [389] = { [ts_builtin_sym_end] = ACTIONS(1634), [sym_identifier] = ACTIONS(1636), [anon_sym_SEMI] = ACTIONS(1634), @@ -54201,7 +51819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1634), [sym_block_comment] = ACTIONS(3), }, - [389] = { + [390] = { [ts_builtin_sym_end] = ACTIONS(1638), [sym_identifier] = ACTIONS(1640), [anon_sym_SEMI] = ACTIONS(1638), @@ -54278,7 +51896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1638), [sym_block_comment] = ACTIONS(3), }, - [390] = { + [391] = { [ts_builtin_sym_end] = ACTIONS(1642), [sym_identifier] = ACTIONS(1644), [anon_sym_SEMI] = ACTIONS(1642), @@ -54355,6087 +51973,6010 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1642), [sym_block_comment] = ACTIONS(3), }, - [391] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_match_arm] = STATE(484), - [sym_last_match_arm] = STATE(2338), - [sym_match_pattern] = STATE(2387), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(547), - [aux_sym_match_block_repeat1] = STATE(484), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1646), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [sym_identifier] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_macro_rules_BANG] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_u8] = ACTIONS(1650), - [anon_sym_i8] = ACTIONS(1650), - [anon_sym_u16] = ACTIONS(1650), - [anon_sym_i16] = ACTIONS(1650), - [anon_sym_u32] = ACTIONS(1650), - [anon_sym_i32] = ACTIONS(1650), - [anon_sym_u64] = ACTIONS(1650), - [anon_sym_i64] = ACTIONS(1650), - [anon_sym_u128] = ACTIONS(1650), - [anon_sym_i128] = ACTIONS(1650), - [anon_sym_isize] = ACTIONS(1650), - [anon_sym_usize] = ACTIONS(1650), - [anon_sym_f32] = ACTIONS(1650), - [anon_sym_f64] = ACTIONS(1650), - [anon_sym_bool] = ACTIONS(1650), - [anon_sym_str] = ACTIONS(1650), - [anon_sym_char] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [anon_sym_async] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_enum] = ACTIONS(1650), - [anon_sym_fn] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_impl] = ACTIONS(1650), - [anon_sym_let] = ACTIONS(1650), - [anon_sym_loop] = ACTIONS(1650), - [anon_sym_match] = ACTIONS(1650), - [anon_sym_mod] = ACTIONS(1650), - [anon_sym_pub] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1650), - [anon_sym_struct] = ACTIONS(1650), - [anon_sym_trait] = ACTIONS(1650), - [anon_sym_type] = ACTIONS(1650), - [anon_sym_union] = ACTIONS(1650), - [anon_sym_unsafe] = ACTIONS(1650), - [anon_sym_use] = ACTIONS(1650), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_COLON_COLON] = ACTIONS(1648), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_yield] = ACTIONS(1650), - [anon_sym_move] = ACTIONS(1650), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1648), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1650), - [anon_sym_false] = ACTIONS(1650), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1648), - [sym_raw_string_literal] = ACTIONS(1648), - [sym_float_literal] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1646), + [sym_identifier] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1646), + [anon_sym_macro_rules_BANG] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_RBRACE] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1646), + [anon_sym_STAR] = ACTIONS(1646), + [anon_sym_u8] = ACTIONS(1648), + [anon_sym_i8] = ACTIONS(1648), + [anon_sym_u16] = ACTIONS(1648), + [anon_sym_i16] = ACTIONS(1648), + [anon_sym_u32] = ACTIONS(1648), + [anon_sym_i32] = ACTIONS(1648), + [anon_sym_u64] = ACTIONS(1648), + [anon_sym_i64] = ACTIONS(1648), + [anon_sym_u128] = ACTIONS(1648), + [anon_sym_i128] = ACTIONS(1648), + [anon_sym_isize] = ACTIONS(1648), + [anon_sym_usize] = ACTIONS(1648), + [anon_sym_f32] = ACTIONS(1648), + [anon_sym_f64] = ACTIONS(1648), + [anon_sym_bool] = ACTIONS(1648), + [anon_sym_str] = ACTIONS(1648), + [anon_sym_char] = ACTIONS(1648), + [anon_sym_SQUOTE] = ACTIONS(1648), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_break] = ACTIONS(1648), + [anon_sym_const] = ACTIONS(1648), + [anon_sym_continue] = ACTIONS(1648), + [anon_sym_default] = ACTIONS(1648), + [anon_sym_enum] = ACTIONS(1648), + [anon_sym_fn] = ACTIONS(1648), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_impl] = ACTIONS(1648), + [anon_sym_let] = ACTIONS(1648), + [anon_sym_loop] = ACTIONS(1648), + [anon_sym_match] = ACTIONS(1648), + [anon_sym_mod] = ACTIONS(1648), + [anon_sym_pub] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1648), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_struct] = ACTIONS(1648), + [anon_sym_trait] = ACTIONS(1648), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1648), + [anon_sym_unsafe] = ACTIONS(1648), + [anon_sym_use] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1648), + [anon_sym_POUND] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1646), + [anon_sym_extern] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1646), + [anon_sym_COLON_COLON] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1646), + [anon_sym_DOT_DOT] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PIPE] = ACTIONS(1646), + [anon_sym_yield] = ACTIONS(1648), + [anon_sym_move] = ACTIONS(1648), + [sym_integer_literal] = ACTIONS(1646), + [aux_sym_string_literal_token1] = ACTIONS(1646), + [sym_char_literal] = ACTIONS(1646), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1648), + [sym_super] = ACTIONS(1648), + [sym_crate] = ACTIONS(1648), + [sym_metavariable] = ACTIONS(1646), + [sym_raw_string_literal] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1646), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1652), - [sym_identifier] = ACTIONS(1654), - [anon_sym_SEMI] = ACTIONS(1652), - [anon_sym_macro_rules_BANG] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1652), - [anon_sym_RBRACE] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1652), - [anon_sym_STAR] = ACTIONS(1652), - [anon_sym_u8] = ACTIONS(1654), - [anon_sym_i8] = ACTIONS(1654), - [anon_sym_u16] = ACTIONS(1654), - [anon_sym_i16] = ACTIONS(1654), - [anon_sym_u32] = ACTIONS(1654), - [anon_sym_i32] = ACTIONS(1654), - [anon_sym_u64] = ACTIONS(1654), - [anon_sym_i64] = ACTIONS(1654), - [anon_sym_u128] = ACTIONS(1654), - [anon_sym_i128] = ACTIONS(1654), - [anon_sym_isize] = ACTIONS(1654), - [anon_sym_usize] = ACTIONS(1654), - [anon_sym_f32] = ACTIONS(1654), - [anon_sym_f64] = ACTIONS(1654), - [anon_sym_bool] = ACTIONS(1654), - [anon_sym_str] = ACTIONS(1654), - [anon_sym_char] = ACTIONS(1654), - [anon_sym_SQUOTE] = ACTIONS(1654), - [anon_sym_async] = ACTIONS(1654), - [anon_sym_break] = ACTIONS(1654), - [anon_sym_const] = ACTIONS(1654), - [anon_sym_continue] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), - [anon_sym_enum] = ACTIONS(1654), - [anon_sym_fn] = ACTIONS(1654), - [anon_sym_for] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1654), - [anon_sym_impl] = ACTIONS(1654), - [anon_sym_let] = ACTIONS(1654), - [anon_sym_loop] = ACTIONS(1654), - [anon_sym_match] = ACTIONS(1654), - [anon_sym_mod] = ACTIONS(1654), - [anon_sym_pub] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1654), - [anon_sym_static] = ACTIONS(1654), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_trait] = ACTIONS(1654), - [anon_sym_type] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1654), - [anon_sym_unsafe] = ACTIONS(1654), - [anon_sym_use] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_COLON_COLON] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_DOT_DOT] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_yield] = ACTIONS(1654), - [anon_sym_move] = ACTIONS(1654), - [sym_integer_literal] = ACTIONS(1652), - [aux_sym_string_literal_token1] = ACTIONS(1652), - [sym_char_literal] = ACTIONS(1652), - [anon_sym_true] = ACTIONS(1654), - [anon_sym_false] = ACTIONS(1654), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1654), - [sym_super] = ACTIONS(1654), - [sym_crate] = ACTIONS(1654), - [sym_metavariable] = ACTIONS(1652), - [sym_raw_string_literal] = ACTIONS(1652), - [sym_float_literal] = ACTIONS(1652), + [ts_builtin_sym_end] = ACTIONS(1650), + [sym_identifier] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_macro_rules_BANG] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_u8] = ACTIONS(1652), + [anon_sym_i8] = ACTIONS(1652), + [anon_sym_u16] = ACTIONS(1652), + [anon_sym_i16] = ACTIONS(1652), + [anon_sym_u32] = ACTIONS(1652), + [anon_sym_i32] = ACTIONS(1652), + [anon_sym_u64] = ACTIONS(1652), + [anon_sym_i64] = ACTIONS(1652), + [anon_sym_u128] = ACTIONS(1652), + [anon_sym_i128] = ACTIONS(1652), + [anon_sym_isize] = ACTIONS(1652), + [anon_sym_usize] = ACTIONS(1652), + [anon_sym_f32] = ACTIONS(1652), + [anon_sym_f64] = ACTIONS(1652), + [anon_sym_bool] = ACTIONS(1652), + [anon_sym_str] = ACTIONS(1652), + [anon_sym_char] = ACTIONS(1652), + [anon_sym_SQUOTE] = ACTIONS(1652), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_break] = ACTIONS(1652), + [anon_sym_const] = ACTIONS(1652), + [anon_sym_continue] = ACTIONS(1652), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_enum] = ACTIONS(1652), + [anon_sym_fn] = ACTIONS(1652), + [anon_sym_for] = ACTIONS(1652), + [anon_sym_if] = ACTIONS(1652), + [anon_sym_impl] = ACTIONS(1652), + [anon_sym_let] = ACTIONS(1652), + [anon_sym_loop] = ACTIONS(1652), + [anon_sym_match] = ACTIONS(1652), + [anon_sym_mod] = ACTIONS(1652), + [anon_sym_pub] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1652), + [anon_sym_static] = ACTIONS(1652), + [anon_sym_struct] = ACTIONS(1652), + [anon_sym_trait] = ACTIONS(1652), + [anon_sym_type] = ACTIONS(1652), + [anon_sym_union] = ACTIONS(1652), + [anon_sym_unsafe] = ACTIONS(1652), + [anon_sym_use] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1652), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_extern] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_COLON_COLON] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_DOT_DOT] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_yield] = ACTIONS(1652), + [anon_sym_move] = ACTIONS(1652), + [sym_integer_literal] = ACTIONS(1650), + [aux_sym_string_literal_token1] = ACTIONS(1650), + [sym_char_literal] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1652), + [anon_sym_false] = ACTIONS(1652), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1652), + [sym_super] = ACTIONS(1652), + [sym_crate] = ACTIONS(1652), + [sym_metavariable] = ACTIONS(1650), + [sym_raw_string_literal] = ACTIONS(1650), + [sym_float_literal] = ACTIONS(1650), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [sym_identifier] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_macro_rules_BANG] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_u8] = ACTIONS(1658), - [anon_sym_i8] = ACTIONS(1658), - [anon_sym_u16] = ACTIONS(1658), - [anon_sym_i16] = ACTIONS(1658), - [anon_sym_u32] = ACTIONS(1658), - [anon_sym_i32] = ACTIONS(1658), - [anon_sym_u64] = ACTIONS(1658), - [anon_sym_i64] = ACTIONS(1658), - [anon_sym_u128] = ACTIONS(1658), - [anon_sym_i128] = ACTIONS(1658), - [anon_sym_isize] = ACTIONS(1658), - [anon_sym_usize] = ACTIONS(1658), - [anon_sym_f32] = ACTIONS(1658), - [anon_sym_f64] = ACTIONS(1658), - [anon_sym_bool] = ACTIONS(1658), - [anon_sym_str] = ACTIONS(1658), - [anon_sym_char] = ACTIONS(1658), - [anon_sym_SQUOTE] = ACTIONS(1658), - [anon_sym_async] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_continue] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_enum] = ACTIONS(1658), - [anon_sym_fn] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_impl] = ACTIONS(1658), - [anon_sym_let] = ACTIONS(1658), - [anon_sym_loop] = ACTIONS(1658), - [anon_sym_match] = ACTIONS(1658), - [anon_sym_mod] = ACTIONS(1658), - [anon_sym_pub] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_static] = ACTIONS(1658), - [anon_sym_struct] = ACTIONS(1658), - [anon_sym_trait] = ACTIONS(1658), - [anon_sym_type] = ACTIONS(1658), - [anon_sym_union] = ACTIONS(1658), - [anon_sym_unsafe] = ACTIONS(1658), - [anon_sym_use] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_POUND] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_COLON_COLON] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_DOT_DOT] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_yield] = ACTIONS(1658), - [anon_sym_move] = ACTIONS(1658), - [sym_integer_literal] = ACTIONS(1656), - [aux_sym_string_literal_token1] = ACTIONS(1656), - [sym_char_literal] = ACTIONS(1656), - [anon_sym_true] = ACTIONS(1658), - [anon_sym_false] = ACTIONS(1658), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1658), - [sym_super] = ACTIONS(1658), - [sym_crate] = ACTIONS(1658), - [sym_metavariable] = ACTIONS(1656), - [sym_raw_string_literal] = ACTIONS(1656), - [sym_float_literal] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(1654), + [sym_identifier] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1654), + [anon_sym_macro_rules_BANG] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1654), + [anon_sym_RBRACE] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1654), + [anon_sym_STAR] = ACTIONS(1654), + [anon_sym_u8] = ACTIONS(1656), + [anon_sym_i8] = ACTIONS(1656), + [anon_sym_u16] = ACTIONS(1656), + [anon_sym_i16] = ACTIONS(1656), + [anon_sym_u32] = ACTIONS(1656), + [anon_sym_i32] = ACTIONS(1656), + [anon_sym_u64] = ACTIONS(1656), + [anon_sym_i64] = ACTIONS(1656), + [anon_sym_u128] = ACTIONS(1656), + [anon_sym_i128] = ACTIONS(1656), + [anon_sym_isize] = ACTIONS(1656), + [anon_sym_usize] = ACTIONS(1656), + [anon_sym_f32] = ACTIONS(1656), + [anon_sym_f64] = ACTIONS(1656), + [anon_sym_bool] = ACTIONS(1656), + [anon_sym_str] = ACTIONS(1656), + [anon_sym_char] = ACTIONS(1656), + [anon_sym_SQUOTE] = ACTIONS(1656), + [anon_sym_async] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_default] = ACTIONS(1656), + [anon_sym_enum] = ACTIONS(1656), + [anon_sym_fn] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_impl] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_mod] = ACTIONS(1656), + [anon_sym_pub] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_static] = ACTIONS(1656), + [anon_sym_struct] = ACTIONS(1656), + [anon_sym_trait] = ACTIONS(1656), + [anon_sym_type] = ACTIONS(1656), + [anon_sym_union] = ACTIONS(1656), + [anon_sym_unsafe] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_POUND] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(1654), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_COLON_COLON] = ACTIONS(1654), + [anon_sym_AMP] = ACTIONS(1654), + [anon_sym_DOT_DOT] = ACTIONS(1654), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_PIPE] = ACTIONS(1654), + [anon_sym_yield] = ACTIONS(1656), + [anon_sym_move] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(1654), + [aux_sym_string_literal_token1] = ACTIONS(1654), + [sym_char_literal] = ACTIONS(1654), + [anon_sym_true] = ACTIONS(1656), + [anon_sym_false] = ACTIONS(1656), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1656), + [sym_super] = ACTIONS(1656), + [sym_crate] = ACTIONS(1656), + [sym_metavariable] = ACTIONS(1654), + [sym_raw_string_literal] = ACTIONS(1654), + [sym_float_literal] = ACTIONS(1654), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1660), - [sym_identifier] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_macro_rules_BANG] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_RBRACE] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1660), - [anon_sym_STAR] = ACTIONS(1660), - [anon_sym_u8] = ACTIONS(1662), - [anon_sym_i8] = ACTIONS(1662), - [anon_sym_u16] = ACTIONS(1662), - [anon_sym_i16] = ACTIONS(1662), - [anon_sym_u32] = ACTIONS(1662), - [anon_sym_i32] = ACTIONS(1662), - [anon_sym_u64] = ACTIONS(1662), - [anon_sym_i64] = ACTIONS(1662), - [anon_sym_u128] = ACTIONS(1662), - [anon_sym_i128] = ACTIONS(1662), - [anon_sym_isize] = ACTIONS(1662), - [anon_sym_usize] = ACTIONS(1662), - [anon_sym_f32] = ACTIONS(1662), - [anon_sym_f64] = ACTIONS(1662), - [anon_sym_bool] = ACTIONS(1662), - [anon_sym_str] = ACTIONS(1662), - [anon_sym_char] = ACTIONS(1662), - [anon_sym_SQUOTE] = ACTIONS(1662), - [anon_sym_async] = ACTIONS(1662), - [anon_sym_break] = ACTIONS(1662), - [anon_sym_const] = ACTIONS(1662), - [anon_sym_continue] = ACTIONS(1662), - [anon_sym_default] = ACTIONS(1662), - [anon_sym_enum] = ACTIONS(1662), - [anon_sym_fn] = ACTIONS(1662), - [anon_sym_for] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1662), - [anon_sym_impl] = ACTIONS(1662), - [anon_sym_let] = ACTIONS(1662), - [anon_sym_loop] = ACTIONS(1662), - [anon_sym_match] = ACTIONS(1662), - [anon_sym_mod] = ACTIONS(1662), - [anon_sym_pub] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1662), - [anon_sym_static] = ACTIONS(1662), - [anon_sym_struct] = ACTIONS(1662), - [anon_sym_trait] = ACTIONS(1662), - [anon_sym_type] = ACTIONS(1662), - [anon_sym_union] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1662), - [anon_sym_use] = ACTIONS(1662), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_POUND] = ACTIONS(1660), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_COLON_COLON] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_DOT_DOT] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_yield] = ACTIONS(1662), - [anon_sym_move] = ACTIONS(1662), - [sym_integer_literal] = ACTIONS(1660), - [aux_sym_string_literal_token1] = ACTIONS(1660), - [sym_char_literal] = ACTIONS(1660), - [anon_sym_true] = ACTIONS(1662), - [anon_sym_false] = ACTIONS(1662), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1662), - [sym_super] = ACTIONS(1662), - [sym_crate] = ACTIONS(1662), - [sym_metavariable] = ACTIONS(1660), - [sym_raw_string_literal] = ACTIONS(1660), - [sym_float_literal] = ACTIONS(1660), + [ts_builtin_sym_end] = ACTIONS(1658), + [sym_identifier] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_macro_rules_BANG] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1658), + [anon_sym_u8] = ACTIONS(1660), + [anon_sym_i8] = ACTIONS(1660), + [anon_sym_u16] = ACTIONS(1660), + [anon_sym_i16] = ACTIONS(1660), + [anon_sym_u32] = ACTIONS(1660), + [anon_sym_i32] = ACTIONS(1660), + [anon_sym_u64] = ACTIONS(1660), + [anon_sym_i64] = ACTIONS(1660), + [anon_sym_u128] = ACTIONS(1660), + [anon_sym_i128] = ACTIONS(1660), + [anon_sym_isize] = ACTIONS(1660), + [anon_sym_usize] = ACTIONS(1660), + [anon_sym_f32] = ACTIONS(1660), + [anon_sym_f64] = ACTIONS(1660), + [anon_sym_bool] = ACTIONS(1660), + [anon_sym_str] = ACTIONS(1660), + [anon_sym_char] = ACTIONS(1660), + [anon_sym_SQUOTE] = ACTIONS(1660), + [anon_sym_async] = ACTIONS(1660), + [anon_sym_break] = ACTIONS(1660), + [anon_sym_const] = ACTIONS(1660), + [anon_sym_continue] = ACTIONS(1660), + [anon_sym_default] = ACTIONS(1660), + [anon_sym_enum] = ACTIONS(1660), + [anon_sym_fn] = ACTIONS(1660), + [anon_sym_for] = ACTIONS(1660), + [anon_sym_if] = ACTIONS(1660), + [anon_sym_impl] = ACTIONS(1660), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_loop] = ACTIONS(1660), + [anon_sym_match] = ACTIONS(1660), + [anon_sym_mod] = ACTIONS(1660), + [anon_sym_pub] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1660), + [anon_sym_static] = ACTIONS(1660), + [anon_sym_struct] = ACTIONS(1660), + [anon_sym_trait] = ACTIONS(1660), + [anon_sym_type] = ACTIONS(1660), + [anon_sym_union] = ACTIONS(1660), + [anon_sym_unsafe] = ACTIONS(1660), + [anon_sym_use] = ACTIONS(1660), + [anon_sym_while] = ACTIONS(1660), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_BANG] = ACTIONS(1658), + [anon_sym_extern] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(1658), + [anon_sym_COLON_COLON] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_DOT_DOT] = ACTIONS(1658), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_yield] = ACTIONS(1660), + [anon_sym_move] = ACTIONS(1660), + [sym_integer_literal] = ACTIONS(1658), + [aux_sym_string_literal_token1] = ACTIONS(1658), + [sym_char_literal] = ACTIONS(1658), + [anon_sym_true] = ACTIONS(1660), + [anon_sym_false] = ACTIONS(1660), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1660), + [sym_super] = ACTIONS(1660), + [sym_crate] = ACTIONS(1660), + [sym_metavariable] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1658), + [sym_float_literal] = ACTIONS(1658), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [sym_identifier] = ACTIONS(1666), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_macro_rules_BANG] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_u8] = ACTIONS(1666), - [anon_sym_i8] = ACTIONS(1666), - [anon_sym_u16] = ACTIONS(1666), - [anon_sym_i16] = ACTIONS(1666), - [anon_sym_u32] = ACTIONS(1666), - [anon_sym_i32] = ACTIONS(1666), - [anon_sym_u64] = ACTIONS(1666), - [anon_sym_i64] = ACTIONS(1666), - [anon_sym_u128] = ACTIONS(1666), - [anon_sym_i128] = ACTIONS(1666), - [anon_sym_isize] = ACTIONS(1666), - [anon_sym_usize] = ACTIONS(1666), - [anon_sym_f32] = ACTIONS(1666), - [anon_sym_f64] = ACTIONS(1666), - [anon_sym_bool] = ACTIONS(1666), - [anon_sym_str] = ACTIONS(1666), - [anon_sym_char] = ACTIONS(1666), - [anon_sym_SQUOTE] = ACTIONS(1666), - [anon_sym_async] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_continue] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_enum] = ACTIONS(1666), - [anon_sym_fn] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_impl] = ACTIONS(1666), - [anon_sym_let] = ACTIONS(1666), - [anon_sym_loop] = ACTIONS(1666), - [anon_sym_match] = ACTIONS(1666), - [anon_sym_mod] = ACTIONS(1666), - [anon_sym_pub] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_static] = ACTIONS(1666), - [anon_sym_struct] = ACTIONS(1666), - [anon_sym_trait] = ACTIONS(1666), - [anon_sym_type] = ACTIONS(1666), - [anon_sym_union] = ACTIONS(1666), - [anon_sym_unsafe] = ACTIONS(1666), - [anon_sym_use] = ACTIONS(1666), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_POUND] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_COLON_COLON] = ACTIONS(1664), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_DOT_DOT] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_yield] = ACTIONS(1666), - [anon_sym_move] = ACTIONS(1666), - [sym_integer_literal] = ACTIONS(1664), - [aux_sym_string_literal_token1] = ACTIONS(1664), - [sym_char_literal] = ACTIONS(1664), - [anon_sym_true] = ACTIONS(1666), - [anon_sym_false] = ACTIONS(1666), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1666), - [sym_super] = ACTIONS(1666), - [sym_crate] = ACTIONS(1666), - [sym_metavariable] = ACTIONS(1664), - [sym_raw_string_literal] = ACTIONS(1664), - [sym_float_literal] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1662), + [sym_identifier] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_macro_rules_BANG] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_RBRACE] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_u8] = ACTIONS(1664), + [anon_sym_i8] = ACTIONS(1664), + [anon_sym_u16] = ACTIONS(1664), + [anon_sym_i16] = ACTIONS(1664), + [anon_sym_u32] = ACTIONS(1664), + [anon_sym_i32] = ACTIONS(1664), + [anon_sym_u64] = ACTIONS(1664), + [anon_sym_i64] = ACTIONS(1664), + [anon_sym_u128] = ACTIONS(1664), + [anon_sym_i128] = ACTIONS(1664), + [anon_sym_isize] = ACTIONS(1664), + [anon_sym_usize] = ACTIONS(1664), + [anon_sym_f32] = ACTIONS(1664), + [anon_sym_f64] = ACTIONS(1664), + [anon_sym_bool] = ACTIONS(1664), + [anon_sym_str] = ACTIONS(1664), + [anon_sym_char] = ACTIONS(1664), + [anon_sym_SQUOTE] = ACTIONS(1664), + [anon_sym_async] = ACTIONS(1664), + [anon_sym_break] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(1664), + [anon_sym_continue] = ACTIONS(1664), + [anon_sym_default] = ACTIONS(1664), + [anon_sym_enum] = ACTIONS(1664), + [anon_sym_fn] = ACTIONS(1664), + [anon_sym_for] = ACTIONS(1664), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_impl] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_loop] = ACTIONS(1664), + [anon_sym_match] = ACTIONS(1664), + [anon_sym_mod] = ACTIONS(1664), + [anon_sym_pub] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1664), + [anon_sym_trait] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1664), + [anon_sym_union] = ACTIONS(1664), + [anon_sym_unsafe] = ACTIONS(1664), + [anon_sym_use] = ACTIONS(1664), + [anon_sym_while] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1662), + [anon_sym_extern] = ACTIONS(1664), + [anon_sym_LT] = ACTIONS(1662), + [anon_sym_COLON_COLON] = ACTIONS(1662), + [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_DOT_DOT] = ACTIONS(1662), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_yield] = ACTIONS(1664), + [anon_sym_move] = ACTIONS(1664), + [sym_integer_literal] = ACTIONS(1662), + [aux_sym_string_literal_token1] = ACTIONS(1662), + [sym_char_literal] = ACTIONS(1662), + [anon_sym_true] = ACTIONS(1664), + [anon_sym_false] = ACTIONS(1664), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1664), + [sym_super] = ACTIONS(1664), + [sym_crate] = ACTIONS(1664), + [sym_metavariable] = ACTIONS(1662), + [sym_raw_string_literal] = ACTIONS(1662), + [sym_float_literal] = ACTIONS(1662), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [sym_identifier] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_macro_rules_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_u8] = ACTIONS(1670), - [anon_sym_i8] = ACTIONS(1670), - [anon_sym_u16] = ACTIONS(1670), - [anon_sym_i16] = ACTIONS(1670), - [anon_sym_u32] = ACTIONS(1670), - [anon_sym_i32] = ACTIONS(1670), - [anon_sym_u64] = ACTIONS(1670), - [anon_sym_i64] = ACTIONS(1670), - [anon_sym_u128] = ACTIONS(1670), - [anon_sym_i128] = ACTIONS(1670), - [anon_sym_isize] = ACTIONS(1670), - [anon_sym_usize] = ACTIONS(1670), - [anon_sym_f32] = ACTIONS(1670), - [anon_sym_f64] = ACTIONS(1670), - [anon_sym_bool] = ACTIONS(1670), - [anon_sym_str] = ACTIONS(1670), - [anon_sym_char] = ACTIONS(1670), - [anon_sym_SQUOTE] = ACTIONS(1670), - [anon_sym_async] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_continue] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_enum] = ACTIONS(1670), - [anon_sym_fn] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_impl] = ACTIONS(1670), - [anon_sym_let] = ACTIONS(1670), - [anon_sym_loop] = ACTIONS(1670), - [anon_sym_match] = ACTIONS(1670), - [anon_sym_mod] = ACTIONS(1670), - [anon_sym_pub] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(1670), - [anon_sym_struct] = ACTIONS(1670), - [anon_sym_trait] = ACTIONS(1670), - [anon_sym_type] = ACTIONS(1670), - [anon_sym_union] = ACTIONS(1670), - [anon_sym_unsafe] = ACTIONS(1670), - [anon_sym_use] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_POUND] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_COLON_COLON] = ACTIONS(1668), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_DOT_DOT] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_yield] = ACTIONS(1670), - [anon_sym_move] = ACTIONS(1670), - [sym_integer_literal] = ACTIONS(1668), - [aux_sym_string_literal_token1] = ACTIONS(1668), - [sym_char_literal] = ACTIONS(1668), - [anon_sym_true] = ACTIONS(1670), - [anon_sym_false] = ACTIONS(1670), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1670), - [sym_super] = ACTIONS(1670), - [sym_crate] = ACTIONS(1670), - [sym_metavariable] = ACTIONS(1668), - [sym_raw_string_literal] = ACTIONS(1668), - [sym_float_literal] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1666), + [sym_identifier] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1666), + [anon_sym_macro_rules_BANG] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1666), + [anon_sym_RBRACE] = ACTIONS(1666), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_u8] = ACTIONS(1668), + [anon_sym_i8] = ACTIONS(1668), + [anon_sym_u16] = ACTIONS(1668), + [anon_sym_i16] = ACTIONS(1668), + [anon_sym_u32] = ACTIONS(1668), + [anon_sym_i32] = ACTIONS(1668), + [anon_sym_u64] = ACTIONS(1668), + [anon_sym_i64] = ACTIONS(1668), + [anon_sym_u128] = ACTIONS(1668), + [anon_sym_i128] = ACTIONS(1668), + [anon_sym_isize] = ACTIONS(1668), + [anon_sym_usize] = ACTIONS(1668), + [anon_sym_f32] = ACTIONS(1668), + [anon_sym_f64] = ACTIONS(1668), + [anon_sym_bool] = ACTIONS(1668), + [anon_sym_str] = ACTIONS(1668), + [anon_sym_char] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_async] = ACTIONS(1668), + [anon_sym_break] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(1668), + [anon_sym_continue] = ACTIONS(1668), + [anon_sym_default] = ACTIONS(1668), + [anon_sym_enum] = ACTIONS(1668), + [anon_sym_fn] = ACTIONS(1668), + [anon_sym_for] = ACTIONS(1668), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_impl] = ACTIONS(1668), + [anon_sym_let] = ACTIONS(1668), + [anon_sym_loop] = ACTIONS(1668), + [anon_sym_match] = ACTIONS(1668), + [anon_sym_mod] = ACTIONS(1668), + [anon_sym_pub] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(1668), + [anon_sym_struct] = ACTIONS(1668), + [anon_sym_trait] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1668), + [anon_sym_union] = ACTIONS(1668), + [anon_sym_unsafe] = ACTIONS(1668), + [anon_sym_use] = ACTIONS(1668), + [anon_sym_while] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1666), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_extern] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1666), + [anon_sym_COLON_COLON] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), + [anon_sym_DOT_DOT] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_PIPE] = ACTIONS(1666), + [anon_sym_yield] = ACTIONS(1668), + [anon_sym_move] = ACTIONS(1668), + [sym_integer_literal] = ACTIONS(1666), + [aux_sym_string_literal_token1] = ACTIONS(1666), + [sym_char_literal] = ACTIONS(1666), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1668), + [sym_super] = ACTIONS(1668), + [sym_crate] = ACTIONS(1668), + [sym_metavariable] = ACTIONS(1666), + [sym_raw_string_literal] = ACTIONS(1666), + [sym_float_literal] = ACTIONS(1666), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1672), - [sym_identifier] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1672), - [anon_sym_macro_rules_BANG] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_STAR] = ACTIONS(1672), - [anon_sym_u8] = ACTIONS(1674), - [anon_sym_i8] = ACTIONS(1674), - [anon_sym_u16] = ACTIONS(1674), - [anon_sym_i16] = ACTIONS(1674), - [anon_sym_u32] = ACTIONS(1674), - [anon_sym_i32] = ACTIONS(1674), - [anon_sym_u64] = ACTIONS(1674), - [anon_sym_i64] = ACTIONS(1674), - [anon_sym_u128] = ACTIONS(1674), - [anon_sym_i128] = ACTIONS(1674), - [anon_sym_isize] = ACTIONS(1674), - [anon_sym_usize] = ACTIONS(1674), - [anon_sym_f32] = ACTIONS(1674), - [anon_sym_f64] = ACTIONS(1674), - [anon_sym_bool] = ACTIONS(1674), - [anon_sym_str] = ACTIONS(1674), - [anon_sym_char] = ACTIONS(1674), - [anon_sym_SQUOTE] = ACTIONS(1674), - [anon_sym_async] = ACTIONS(1674), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_enum] = ACTIONS(1674), - [anon_sym_fn] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1674), - [anon_sym_impl] = ACTIONS(1674), - [anon_sym_let] = ACTIONS(1674), - [anon_sym_loop] = ACTIONS(1674), - [anon_sym_match] = ACTIONS(1674), - [anon_sym_mod] = ACTIONS(1674), - [anon_sym_pub] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1674), - [anon_sym_struct] = ACTIONS(1674), - [anon_sym_trait] = ACTIONS(1674), - [anon_sym_type] = ACTIONS(1674), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_unsafe] = ACTIONS(1674), - [anon_sym_use] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1674), - [anon_sym_POUND] = ACTIONS(1672), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_COLON_COLON] = ACTIONS(1672), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_DOT_DOT] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_yield] = ACTIONS(1674), - [anon_sym_move] = ACTIONS(1674), - [sym_integer_literal] = ACTIONS(1672), - [aux_sym_string_literal_token1] = ACTIONS(1672), - [sym_char_literal] = ACTIONS(1672), - [anon_sym_true] = ACTIONS(1674), - [anon_sym_false] = ACTIONS(1674), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1674), - [sym_super] = ACTIONS(1674), - [sym_crate] = ACTIONS(1674), - [sym_metavariable] = ACTIONS(1672), - [sym_raw_string_literal] = ACTIONS(1672), - [sym_float_literal] = ACTIONS(1672), + [ts_builtin_sym_end] = ACTIONS(1670), + [sym_identifier] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_macro_rules_BANG] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_u8] = ACTIONS(1672), + [anon_sym_i8] = ACTIONS(1672), + [anon_sym_u16] = ACTIONS(1672), + [anon_sym_i16] = ACTIONS(1672), + [anon_sym_u32] = ACTIONS(1672), + [anon_sym_i32] = ACTIONS(1672), + [anon_sym_u64] = ACTIONS(1672), + [anon_sym_i64] = ACTIONS(1672), + [anon_sym_u128] = ACTIONS(1672), + [anon_sym_i128] = ACTIONS(1672), + [anon_sym_isize] = ACTIONS(1672), + [anon_sym_usize] = ACTIONS(1672), + [anon_sym_f32] = ACTIONS(1672), + [anon_sym_f64] = ACTIONS(1672), + [anon_sym_bool] = ACTIONS(1672), + [anon_sym_str] = ACTIONS(1672), + [anon_sym_char] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(1672), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_const] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_enum] = ACTIONS(1672), + [anon_sym_fn] = ACTIONS(1672), + [anon_sym_for] = ACTIONS(1672), + [anon_sym_if] = ACTIONS(1672), + [anon_sym_impl] = ACTIONS(1672), + [anon_sym_let] = ACTIONS(1672), + [anon_sym_loop] = ACTIONS(1672), + [anon_sym_match] = ACTIONS(1672), + [anon_sym_mod] = ACTIONS(1672), + [anon_sym_pub] = ACTIONS(1672), + [anon_sym_return] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(1672), + [anon_sym_struct] = ACTIONS(1672), + [anon_sym_trait] = ACTIONS(1672), + [anon_sym_type] = ACTIONS(1672), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1672), + [anon_sym_use] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_COLON_COLON] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_yield] = ACTIONS(1672), + [anon_sym_move] = ACTIONS(1672), + [sym_integer_literal] = ACTIONS(1670), + [aux_sym_string_literal_token1] = ACTIONS(1670), + [sym_char_literal] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1672), + [sym_super] = ACTIONS(1672), + [sym_crate] = ACTIONS(1672), + [sym_metavariable] = ACTIONS(1670), + [sym_raw_string_literal] = ACTIONS(1670), + [sym_float_literal] = ACTIONS(1670), [sym_block_comment] = ACTIONS(3), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(1676), - [sym_identifier] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1676), - [anon_sym_macro_rules_BANG] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_RBRACE] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_STAR] = ACTIONS(1676), - [anon_sym_u8] = ACTIONS(1678), - [anon_sym_i8] = ACTIONS(1678), - [anon_sym_u16] = ACTIONS(1678), - [anon_sym_i16] = ACTIONS(1678), - [anon_sym_u32] = ACTIONS(1678), - [anon_sym_i32] = ACTIONS(1678), - [anon_sym_u64] = ACTIONS(1678), - [anon_sym_i64] = ACTIONS(1678), - [anon_sym_u128] = ACTIONS(1678), - [anon_sym_i128] = ACTIONS(1678), - [anon_sym_isize] = ACTIONS(1678), - [anon_sym_usize] = ACTIONS(1678), - [anon_sym_f32] = ACTIONS(1678), - [anon_sym_f64] = ACTIONS(1678), - [anon_sym_bool] = ACTIONS(1678), - [anon_sym_str] = ACTIONS(1678), - [anon_sym_char] = ACTIONS(1678), - [anon_sym_SQUOTE] = ACTIONS(1678), - [anon_sym_async] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1678), - [anon_sym_continue] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_enum] = ACTIONS(1678), - [anon_sym_fn] = ACTIONS(1678), - [anon_sym_for] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_impl] = ACTIONS(1678), - [anon_sym_let] = ACTIONS(1678), - [anon_sym_loop] = ACTIONS(1678), - [anon_sym_match] = ACTIONS(1678), - [anon_sym_mod] = ACTIONS(1678), - [anon_sym_pub] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_static] = ACTIONS(1678), - [anon_sym_struct] = ACTIONS(1678), - [anon_sym_trait] = ACTIONS(1678), - [anon_sym_type] = ACTIONS(1678), - [anon_sym_union] = ACTIONS(1678), - [anon_sym_unsafe] = ACTIONS(1678), - [anon_sym_use] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1678), - [anon_sym_POUND] = ACTIONS(1676), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_COLON_COLON] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_DOT_DOT] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_yield] = ACTIONS(1678), - [anon_sym_move] = ACTIONS(1678), - [sym_integer_literal] = ACTIONS(1676), - [aux_sym_string_literal_token1] = ACTIONS(1676), - [sym_char_literal] = ACTIONS(1676), - [anon_sym_true] = ACTIONS(1678), - [anon_sym_false] = ACTIONS(1678), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1678), - [sym_super] = ACTIONS(1678), - [sym_crate] = ACTIONS(1678), - [sym_metavariable] = ACTIONS(1676), - [sym_raw_string_literal] = ACTIONS(1676), - [sym_float_literal] = ACTIONS(1676), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_macro_rules_BANG] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_async] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_enum] = ACTIONS(1676), + [anon_sym_fn] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_impl] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_mod] = ACTIONS(1676), + [anon_sym_pub] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_static] = ACTIONS(1676), + [anon_sym_struct] = ACTIONS(1676), + [anon_sym_trait] = ACTIONS(1676), + [anon_sym_type] = ACTIONS(1676), + [anon_sym_union] = ACTIONS(1676), + [anon_sym_unsafe] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_COLON_COLON] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_DOT_DOT] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_yield] = ACTIONS(1676), + [anon_sym_move] = ACTIONS(1676), + [sym_integer_literal] = ACTIONS(1674), + [aux_sym_string_literal_token1] = ACTIONS(1674), + [sym_char_literal] = ACTIONS(1674), + [anon_sym_true] = ACTIONS(1676), + [anon_sym_false] = ACTIONS(1676), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1676), + [sym_super] = ACTIONS(1676), + [sym_crate] = ACTIONS(1676), + [sym_metavariable] = ACTIONS(1674), + [sym_raw_string_literal] = ACTIONS(1674), + [sym_float_literal] = ACTIONS(1674), [sym_block_comment] = ACTIONS(3), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(1680), - [sym_identifier] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1680), - [anon_sym_macro_rules_BANG] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_STAR] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1682), - [anon_sym_i8] = ACTIONS(1682), - [anon_sym_u16] = ACTIONS(1682), - [anon_sym_i16] = ACTIONS(1682), - [anon_sym_u32] = ACTIONS(1682), - [anon_sym_i32] = ACTIONS(1682), - [anon_sym_u64] = ACTIONS(1682), - [anon_sym_i64] = ACTIONS(1682), - [anon_sym_u128] = ACTIONS(1682), - [anon_sym_i128] = ACTIONS(1682), - [anon_sym_isize] = ACTIONS(1682), - [anon_sym_usize] = ACTIONS(1682), - [anon_sym_f32] = ACTIONS(1682), - [anon_sym_f64] = ACTIONS(1682), - [anon_sym_bool] = ACTIONS(1682), - [anon_sym_str] = ACTIONS(1682), - [anon_sym_char] = ACTIONS(1682), - [anon_sym_SQUOTE] = ACTIONS(1682), - [anon_sym_async] = ACTIONS(1682), - [anon_sym_break] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_enum] = ACTIONS(1682), - [anon_sym_fn] = ACTIONS(1682), - [anon_sym_for] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1682), - [anon_sym_impl] = ACTIONS(1682), - [anon_sym_let] = ACTIONS(1682), - [anon_sym_loop] = ACTIONS(1682), - [anon_sym_match] = ACTIONS(1682), - [anon_sym_mod] = ACTIONS(1682), - [anon_sym_pub] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_static] = ACTIONS(1682), - [anon_sym_struct] = ACTIONS(1682), - [anon_sym_trait] = ACTIONS(1682), - [anon_sym_type] = ACTIONS(1682), - [anon_sym_union] = ACTIONS(1682), - [anon_sym_unsafe] = ACTIONS(1682), - [anon_sym_use] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_POUND] = ACTIONS(1680), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_COLON_COLON] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_DOT_DOT] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_yield] = ACTIONS(1682), - [anon_sym_move] = ACTIONS(1682), - [sym_integer_literal] = ACTIONS(1680), - [aux_sym_string_literal_token1] = ACTIONS(1680), - [sym_char_literal] = ACTIONS(1680), - [anon_sym_true] = ACTIONS(1682), - [anon_sym_false] = ACTIONS(1682), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1682), - [sym_super] = ACTIONS(1682), - [sym_crate] = ACTIONS(1682), - [sym_metavariable] = ACTIONS(1680), - [sym_raw_string_literal] = ACTIONS(1680), - [sym_float_literal] = ACTIONS(1680), + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_macro_rules_BANG] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_STAR] = ACTIONS(1678), + [anon_sym_u8] = ACTIONS(1680), + [anon_sym_i8] = ACTIONS(1680), + [anon_sym_u16] = ACTIONS(1680), + [anon_sym_i16] = ACTIONS(1680), + [anon_sym_u32] = ACTIONS(1680), + [anon_sym_i32] = ACTIONS(1680), + [anon_sym_u64] = ACTIONS(1680), + [anon_sym_i64] = ACTIONS(1680), + [anon_sym_u128] = ACTIONS(1680), + [anon_sym_i128] = ACTIONS(1680), + [anon_sym_isize] = ACTIONS(1680), + [anon_sym_usize] = ACTIONS(1680), + [anon_sym_f32] = ACTIONS(1680), + [anon_sym_f64] = ACTIONS(1680), + [anon_sym_bool] = ACTIONS(1680), + [anon_sym_str] = ACTIONS(1680), + [anon_sym_char] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_async] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1680), + [anon_sym_const] = ACTIONS(1680), + [anon_sym_continue] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_enum] = ACTIONS(1680), + [anon_sym_fn] = ACTIONS(1680), + [anon_sym_for] = ACTIONS(1680), + [anon_sym_if] = ACTIONS(1680), + [anon_sym_impl] = ACTIONS(1680), + [anon_sym_let] = ACTIONS(1680), + [anon_sym_loop] = ACTIONS(1680), + [anon_sym_match] = ACTIONS(1680), + [anon_sym_mod] = ACTIONS(1680), + [anon_sym_pub] = ACTIONS(1680), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_static] = ACTIONS(1680), + [anon_sym_struct] = ACTIONS(1680), + [anon_sym_trait] = ACTIONS(1680), + [anon_sym_type] = ACTIONS(1680), + [anon_sym_union] = ACTIONS(1680), + [anon_sym_unsafe] = ACTIONS(1680), + [anon_sym_use] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_extern] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_COLON_COLON] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_yield] = ACTIONS(1680), + [anon_sym_move] = ACTIONS(1680), + [sym_integer_literal] = ACTIONS(1678), + [aux_sym_string_literal_token1] = ACTIONS(1678), + [sym_char_literal] = ACTIONS(1678), + [anon_sym_true] = ACTIONS(1680), + [anon_sym_false] = ACTIONS(1680), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_crate] = ACTIONS(1680), + [sym_metavariable] = ACTIONS(1678), + [sym_raw_string_literal] = ACTIONS(1678), + [sym_float_literal] = ACTIONS(1678), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1686), - [anon_sym_SEMI] = ACTIONS(1684), - [anon_sym_macro_rules_BANG] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_RBRACE] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_u8] = ACTIONS(1686), - [anon_sym_i8] = ACTIONS(1686), - [anon_sym_u16] = ACTIONS(1686), - [anon_sym_i16] = ACTIONS(1686), - [anon_sym_u32] = ACTIONS(1686), - [anon_sym_i32] = ACTIONS(1686), - [anon_sym_u64] = ACTIONS(1686), - [anon_sym_i64] = ACTIONS(1686), - [anon_sym_u128] = ACTIONS(1686), - [anon_sym_i128] = ACTIONS(1686), - [anon_sym_isize] = ACTIONS(1686), - [anon_sym_usize] = ACTIONS(1686), - [anon_sym_f32] = ACTIONS(1686), - [anon_sym_f64] = ACTIONS(1686), - [anon_sym_bool] = ACTIONS(1686), - [anon_sym_str] = ACTIONS(1686), - [anon_sym_char] = ACTIONS(1686), - [anon_sym_SQUOTE] = ACTIONS(1686), - [anon_sym_async] = ACTIONS(1686), - [anon_sym_break] = ACTIONS(1686), - [anon_sym_const] = ACTIONS(1686), - [anon_sym_continue] = ACTIONS(1686), - [anon_sym_default] = ACTIONS(1686), - [anon_sym_enum] = ACTIONS(1686), - [anon_sym_fn] = ACTIONS(1686), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_impl] = ACTIONS(1686), - [anon_sym_let] = ACTIONS(1686), - [anon_sym_loop] = ACTIONS(1686), - [anon_sym_match] = ACTIONS(1686), - [anon_sym_mod] = ACTIONS(1686), - [anon_sym_pub] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1686), - [anon_sym_static] = ACTIONS(1686), - [anon_sym_struct] = ACTIONS(1686), - [anon_sym_trait] = ACTIONS(1686), - [anon_sym_type] = ACTIONS(1686), - [anon_sym_union] = ACTIONS(1686), - [anon_sym_unsafe] = ACTIONS(1686), - [anon_sym_use] = ACTIONS(1686), - [anon_sym_while] = ACTIONS(1686), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1684), - [anon_sym_COLON_COLON] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_DOT_DOT] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1684), - [anon_sym_yield] = ACTIONS(1686), - [anon_sym_move] = ACTIONS(1686), - [sym_integer_literal] = ACTIONS(1684), - [aux_sym_string_literal_token1] = ACTIONS(1684), - [sym_char_literal] = ACTIONS(1684), - [anon_sym_true] = ACTIONS(1686), - [anon_sym_false] = ACTIONS(1686), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1686), - [sym_super] = ACTIONS(1686), - [sym_crate] = ACTIONS(1686), - [sym_metavariable] = ACTIONS(1684), - [sym_raw_string_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(1684), + [anon_sym_SEMI] = ACTIONS(1682), + [anon_sym_macro_rules_BANG] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1682), + [anon_sym_RBRACE] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_u8] = ACTIONS(1684), + [anon_sym_i8] = ACTIONS(1684), + [anon_sym_u16] = ACTIONS(1684), + [anon_sym_i16] = ACTIONS(1684), + [anon_sym_u32] = ACTIONS(1684), + [anon_sym_i32] = ACTIONS(1684), + [anon_sym_u64] = ACTIONS(1684), + [anon_sym_i64] = ACTIONS(1684), + [anon_sym_u128] = ACTIONS(1684), + [anon_sym_i128] = ACTIONS(1684), + [anon_sym_isize] = ACTIONS(1684), + [anon_sym_usize] = ACTIONS(1684), + [anon_sym_f32] = ACTIONS(1684), + [anon_sym_f64] = ACTIONS(1684), + [anon_sym_bool] = ACTIONS(1684), + [anon_sym_str] = ACTIONS(1684), + [anon_sym_char] = ACTIONS(1684), + [anon_sym_SQUOTE] = ACTIONS(1684), + [anon_sym_async] = ACTIONS(1684), + [anon_sym_break] = ACTIONS(1684), + [anon_sym_const] = ACTIONS(1684), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_default] = ACTIONS(1684), + [anon_sym_enum] = ACTIONS(1684), + [anon_sym_fn] = ACTIONS(1684), + [anon_sym_for] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1684), + [anon_sym_impl] = ACTIONS(1684), + [anon_sym_let] = ACTIONS(1684), + [anon_sym_loop] = ACTIONS(1684), + [anon_sym_match] = ACTIONS(1684), + [anon_sym_mod] = ACTIONS(1684), + [anon_sym_pub] = ACTIONS(1684), + [anon_sym_return] = ACTIONS(1684), + [anon_sym_static] = ACTIONS(1684), + [anon_sym_struct] = ACTIONS(1684), + [anon_sym_trait] = ACTIONS(1684), + [anon_sym_type] = ACTIONS(1684), + [anon_sym_union] = ACTIONS(1684), + [anon_sym_unsafe] = ACTIONS(1684), + [anon_sym_use] = ACTIONS(1684), + [anon_sym_while] = ACTIONS(1684), + [anon_sym_POUND] = ACTIONS(1682), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_extern] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_yield] = ACTIONS(1684), + [anon_sym_move] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [aux_sym_string_literal_token1] = ACTIONS(1682), + [sym_char_literal] = ACTIONS(1682), + [anon_sym_true] = ACTIONS(1684), + [anon_sym_false] = ACTIONS(1684), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1684), + [sym_super] = ACTIONS(1684), + [sym_crate] = ACTIONS(1684), + [sym_metavariable] = ACTIONS(1682), + [sym_raw_string_literal] = ACTIONS(1682), + [sym_float_literal] = ACTIONS(1682), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1688), - [sym_identifier] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1688), - [anon_sym_macro_rules_BANG] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1688), - [anon_sym_RBRACE] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1688), - [anon_sym_STAR] = ACTIONS(1688), - [anon_sym_u8] = ACTIONS(1690), - [anon_sym_i8] = ACTIONS(1690), - [anon_sym_u16] = ACTIONS(1690), - [anon_sym_i16] = ACTIONS(1690), - [anon_sym_u32] = ACTIONS(1690), - [anon_sym_i32] = ACTIONS(1690), - [anon_sym_u64] = ACTIONS(1690), - [anon_sym_i64] = ACTIONS(1690), - [anon_sym_u128] = ACTIONS(1690), - [anon_sym_i128] = ACTIONS(1690), - [anon_sym_isize] = ACTIONS(1690), - [anon_sym_usize] = ACTIONS(1690), - [anon_sym_f32] = ACTIONS(1690), - [anon_sym_f64] = ACTIONS(1690), - [anon_sym_bool] = ACTIONS(1690), - [anon_sym_str] = ACTIONS(1690), - [anon_sym_char] = ACTIONS(1690), - [anon_sym_SQUOTE] = ACTIONS(1690), - [anon_sym_async] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_default] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_impl] = ACTIONS(1690), - [anon_sym_let] = ACTIONS(1690), - [anon_sym_loop] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_mod] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_static] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_trait] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_use] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1688), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_COLON_COLON] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_DOT_DOT] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_yield] = ACTIONS(1690), - [anon_sym_move] = ACTIONS(1690), - [sym_integer_literal] = ACTIONS(1688), - [aux_sym_string_literal_token1] = ACTIONS(1688), - [sym_char_literal] = ACTIONS(1688), - [anon_sym_true] = ACTIONS(1690), - [anon_sym_false] = ACTIONS(1690), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1690), - [sym_super] = ACTIONS(1690), - [sym_crate] = ACTIONS(1690), - [sym_metavariable] = ACTIONS(1688), - [sym_raw_string_literal] = ACTIONS(1688), - [sym_float_literal] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1686), + [sym_identifier] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_macro_rules_BANG] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_u8] = ACTIONS(1688), + [anon_sym_i8] = ACTIONS(1688), + [anon_sym_u16] = ACTIONS(1688), + [anon_sym_i16] = ACTIONS(1688), + [anon_sym_u32] = ACTIONS(1688), + [anon_sym_i32] = ACTIONS(1688), + [anon_sym_u64] = ACTIONS(1688), + [anon_sym_i64] = ACTIONS(1688), + [anon_sym_u128] = ACTIONS(1688), + [anon_sym_i128] = ACTIONS(1688), + [anon_sym_isize] = ACTIONS(1688), + [anon_sym_usize] = ACTIONS(1688), + [anon_sym_f32] = ACTIONS(1688), + [anon_sym_f64] = ACTIONS(1688), + [anon_sym_bool] = ACTIONS(1688), + [anon_sym_str] = ACTIONS(1688), + [anon_sym_char] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_async] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_continue] = ACTIONS(1688), + [anon_sym_default] = ACTIONS(1688), + [anon_sym_enum] = ACTIONS(1688), + [anon_sym_fn] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_impl] = ACTIONS(1688), + [anon_sym_let] = ACTIONS(1688), + [anon_sym_loop] = ACTIONS(1688), + [anon_sym_match] = ACTIONS(1688), + [anon_sym_mod] = ACTIONS(1688), + [anon_sym_pub] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_trait] = ACTIONS(1688), + [anon_sym_type] = ACTIONS(1688), + [anon_sym_union] = ACTIONS(1688), + [anon_sym_unsafe] = ACTIONS(1688), + [anon_sym_use] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_POUND] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_extern] = ACTIONS(1688), + [anon_sym_LT] = ACTIONS(1686), + [anon_sym_COLON_COLON] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1686), + [anon_sym_yield] = ACTIONS(1688), + [anon_sym_move] = ACTIONS(1688), + [sym_integer_literal] = ACTIONS(1686), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1686), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_crate] = ACTIONS(1688), + [sym_metavariable] = ACTIONS(1686), + [sym_raw_string_literal] = ACTIONS(1686), + [sym_float_literal] = ACTIONS(1686), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_macro_rules_BANG] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_u8] = ACTIONS(1694), - [anon_sym_i8] = ACTIONS(1694), - [anon_sym_u16] = ACTIONS(1694), - [anon_sym_i16] = ACTIONS(1694), - [anon_sym_u32] = ACTIONS(1694), - [anon_sym_i32] = ACTIONS(1694), - [anon_sym_u64] = ACTIONS(1694), - [anon_sym_i64] = ACTIONS(1694), - [anon_sym_u128] = ACTIONS(1694), - [anon_sym_i128] = ACTIONS(1694), - [anon_sym_isize] = ACTIONS(1694), - [anon_sym_usize] = ACTIONS(1694), - [anon_sym_f32] = ACTIONS(1694), - [anon_sym_f64] = ACTIONS(1694), - [anon_sym_bool] = ACTIONS(1694), - [anon_sym_str] = ACTIONS(1694), - [anon_sym_char] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_async] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1694), - [anon_sym_enum] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_impl] = ACTIONS(1694), - [anon_sym_let] = ACTIONS(1694), - [anon_sym_loop] = ACTIONS(1694), - [anon_sym_match] = ACTIONS(1694), - [anon_sym_mod] = ACTIONS(1694), - [anon_sym_pub] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_struct] = ACTIONS(1694), - [anon_sym_trait] = ACTIONS(1694), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_union] = ACTIONS(1694), - [anon_sym_unsafe] = ACTIONS(1694), - [anon_sym_use] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_POUND] = ACTIONS(1692), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_extern] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_COLON_COLON] = ACTIONS(1692), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_yield] = ACTIONS(1694), - [anon_sym_move] = ACTIONS(1694), - [sym_integer_literal] = ACTIONS(1692), - [aux_sym_string_literal_token1] = ACTIONS(1692), - [sym_char_literal] = ACTIONS(1692), - [anon_sym_true] = ACTIONS(1694), - [anon_sym_false] = ACTIONS(1694), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1694), - [sym_super] = ACTIONS(1694), - [sym_crate] = ACTIONS(1694), - [sym_metavariable] = ACTIONS(1692), - [sym_raw_string_literal] = ACTIONS(1692), - [sym_float_literal] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_macro_rules_BANG] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_u8] = ACTIONS(1692), + [anon_sym_i8] = ACTIONS(1692), + [anon_sym_u16] = ACTIONS(1692), + [anon_sym_i16] = ACTIONS(1692), + [anon_sym_u32] = ACTIONS(1692), + [anon_sym_i32] = ACTIONS(1692), + [anon_sym_u64] = ACTIONS(1692), + [anon_sym_i64] = ACTIONS(1692), + [anon_sym_u128] = ACTIONS(1692), + [anon_sym_i128] = ACTIONS(1692), + [anon_sym_isize] = ACTIONS(1692), + [anon_sym_usize] = ACTIONS(1692), + [anon_sym_f32] = ACTIONS(1692), + [anon_sym_f64] = ACTIONS(1692), + [anon_sym_bool] = ACTIONS(1692), + [anon_sym_str] = ACTIONS(1692), + [anon_sym_char] = ACTIONS(1692), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_fn] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_impl] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_loop] = ACTIONS(1692), + [anon_sym_match] = ACTIONS(1692), + [anon_sym_mod] = ACTIONS(1692), + [anon_sym_pub] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_trait] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_unsafe] = ACTIONS(1692), + [anon_sym_use] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_POUND] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_move] = ACTIONS(1692), + [sym_integer_literal] = ACTIONS(1690), + [aux_sym_string_literal_token1] = ACTIONS(1690), + [sym_char_literal] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1692), + [anon_sym_false] = ACTIONS(1692), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_crate] = ACTIONS(1692), + [sym_metavariable] = ACTIONS(1690), + [sym_raw_string_literal] = ACTIONS(1690), + [sym_float_literal] = ACTIONS(1690), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1696), - [sym_identifier] = ACTIONS(1698), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_macro_rules_BANG] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_u8] = ACTIONS(1698), - [anon_sym_i8] = ACTIONS(1698), - [anon_sym_u16] = ACTIONS(1698), - [anon_sym_i16] = ACTIONS(1698), - [anon_sym_u32] = ACTIONS(1698), - [anon_sym_i32] = ACTIONS(1698), - [anon_sym_u64] = ACTIONS(1698), - [anon_sym_i64] = ACTIONS(1698), - [anon_sym_u128] = ACTIONS(1698), - [anon_sym_i128] = ACTIONS(1698), - [anon_sym_isize] = ACTIONS(1698), - [anon_sym_usize] = ACTIONS(1698), - [anon_sym_f32] = ACTIONS(1698), - [anon_sym_f64] = ACTIONS(1698), - [anon_sym_bool] = ACTIONS(1698), - [anon_sym_str] = ACTIONS(1698), - [anon_sym_char] = ACTIONS(1698), - [anon_sym_SQUOTE] = ACTIONS(1698), - [anon_sym_async] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1698), - [anon_sym_enum] = ACTIONS(1698), - [anon_sym_fn] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_impl] = ACTIONS(1698), - [anon_sym_let] = ACTIONS(1698), - [anon_sym_loop] = ACTIONS(1698), - [anon_sym_match] = ACTIONS(1698), - [anon_sym_mod] = ACTIONS(1698), - [anon_sym_pub] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_static] = ACTIONS(1698), - [anon_sym_struct] = ACTIONS(1698), - [anon_sym_trait] = ACTIONS(1698), - [anon_sym_type] = ACTIONS(1698), - [anon_sym_union] = ACTIONS(1698), - [anon_sym_unsafe] = ACTIONS(1698), - [anon_sym_use] = ACTIONS(1698), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1696), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_DOT_DOT] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_yield] = ACTIONS(1698), - [anon_sym_move] = ACTIONS(1698), - [sym_integer_literal] = ACTIONS(1696), - [aux_sym_string_literal_token1] = ACTIONS(1696), - [sym_char_literal] = ACTIONS(1696), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1698), - [sym_super] = ACTIONS(1698), - [sym_crate] = ACTIONS(1698), - [sym_metavariable] = ACTIONS(1696), - [sym_raw_string_literal] = ACTIONS(1696), - [sym_float_literal] = ACTIONS(1696), + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_identifier] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_macro_rules_BANG] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_u8] = ACTIONS(1696), + [anon_sym_i8] = ACTIONS(1696), + [anon_sym_u16] = ACTIONS(1696), + [anon_sym_i16] = ACTIONS(1696), + [anon_sym_u32] = ACTIONS(1696), + [anon_sym_i32] = ACTIONS(1696), + [anon_sym_u64] = ACTIONS(1696), + [anon_sym_i64] = ACTIONS(1696), + [anon_sym_u128] = ACTIONS(1696), + [anon_sym_i128] = ACTIONS(1696), + [anon_sym_isize] = ACTIONS(1696), + [anon_sym_usize] = ACTIONS(1696), + [anon_sym_f32] = ACTIONS(1696), + [anon_sym_f64] = ACTIONS(1696), + [anon_sym_bool] = ACTIONS(1696), + [anon_sym_str] = ACTIONS(1696), + [anon_sym_char] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_fn] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_impl] = ACTIONS(1696), + [anon_sym_let] = ACTIONS(1696), + [anon_sym_loop] = ACTIONS(1696), + [anon_sym_match] = ACTIONS(1696), + [anon_sym_mod] = ACTIONS(1696), + [anon_sym_pub] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_trait] = ACTIONS(1696), + [anon_sym_type] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_unsafe] = ACTIONS(1696), + [anon_sym_use] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_DOT_DOT] = ACTIONS(1694), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_yield] = ACTIONS(1696), + [anon_sym_move] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [aux_sym_string_literal_token1] = ACTIONS(1694), + [sym_char_literal] = ACTIONS(1694), + [anon_sym_true] = ACTIONS(1696), + [anon_sym_false] = ACTIONS(1696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1696), + [sym_super] = ACTIONS(1696), + [sym_crate] = ACTIONS(1696), + [sym_metavariable] = ACTIONS(1694), + [sym_raw_string_literal] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1694), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1700), - [sym_identifier] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1700), - [anon_sym_macro_rules_BANG] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1700), - [anon_sym_RBRACE] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_u8] = ACTIONS(1702), - [anon_sym_i8] = ACTIONS(1702), - [anon_sym_u16] = ACTIONS(1702), - [anon_sym_i16] = ACTIONS(1702), - [anon_sym_u32] = ACTIONS(1702), - [anon_sym_i32] = ACTIONS(1702), - [anon_sym_u64] = ACTIONS(1702), - [anon_sym_i64] = ACTIONS(1702), - [anon_sym_u128] = ACTIONS(1702), - [anon_sym_i128] = ACTIONS(1702), - [anon_sym_isize] = ACTIONS(1702), - [anon_sym_usize] = ACTIONS(1702), - [anon_sym_f32] = ACTIONS(1702), - [anon_sym_f64] = ACTIONS(1702), - [anon_sym_bool] = ACTIONS(1702), - [anon_sym_str] = ACTIONS(1702), - [anon_sym_char] = ACTIONS(1702), - [anon_sym_SQUOTE] = ACTIONS(1702), - [anon_sym_async] = ACTIONS(1702), - [anon_sym_break] = ACTIONS(1702), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_continue] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1702), - [anon_sym_enum] = ACTIONS(1702), - [anon_sym_fn] = ACTIONS(1702), - [anon_sym_for] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_impl] = ACTIONS(1702), - [anon_sym_let] = ACTIONS(1702), - [anon_sym_loop] = ACTIONS(1702), - [anon_sym_match] = ACTIONS(1702), - [anon_sym_mod] = ACTIONS(1702), - [anon_sym_pub] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1702), - [anon_sym_static] = ACTIONS(1702), - [anon_sym_struct] = ACTIONS(1702), - [anon_sym_trait] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1702), - [anon_sym_union] = ACTIONS(1702), - [anon_sym_unsafe] = ACTIONS(1702), - [anon_sym_use] = ACTIONS(1702), - [anon_sym_while] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_COLON_COLON] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1700), - [anon_sym_DOT_DOT] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_yield] = ACTIONS(1702), - [anon_sym_move] = ACTIONS(1702), - [sym_integer_literal] = ACTIONS(1700), - [aux_sym_string_literal_token1] = ACTIONS(1700), - [sym_char_literal] = ACTIONS(1700), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1702), - [sym_super] = ACTIONS(1702), - [sym_crate] = ACTIONS(1702), - [sym_metavariable] = ACTIONS(1700), - [sym_raw_string_literal] = ACTIONS(1700), - [sym_float_literal] = ACTIONS(1700), + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_macro_rules_BANG] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_u8] = ACTIONS(1700), + [anon_sym_i8] = ACTIONS(1700), + [anon_sym_u16] = ACTIONS(1700), + [anon_sym_i16] = ACTIONS(1700), + [anon_sym_u32] = ACTIONS(1700), + [anon_sym_i32] = ACTIONS(1700), + [anon_sym_u64] = ACTIONS(1700), + [anon_sym_i64] = ACTIONS(1700), + [anon_sym_u128] = ACTIONS(1700), + [anon_sym_i128] = ACTIONS(1700), + [anon_sym_isize] = ACTIONS(1700), + [anon_sym_usize] = ACTIONS(1700), + [anon_sym_f32] = ACTIONS(1700), + [anon_sym_f64] = ACTIONS(1700), + [anon_sym_bool] = ACTIONS(1700), + [anon_sym_str] = ACTIONS(1700), + [anon_sym_char] = ACTIONS(1700), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_async] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_fn] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_impl] = ACTIONS(1700), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_loop] = ACTIONS(1700), + [anon_sym_match] = ACTIONS(1700), + [anon_sym_mod] = ACTIONS(1700), + [anon_sym_pub] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_trait] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_unsafe] = ACTIONS(1700), + [anon_sym_use] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_POUND] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_DOT_DOT] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_yield] = ACTIONS(1700), + [anon_sym_move] = ACTIONS(1700), + [sym_integer_literal] = ACTIONS(1698), + [aux_sym_string_literal_token1] = ACTIONS(1698), + [sym_char_literal] = ACTIONS(1698), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_crate] = ACTIONS(1700), + [sym_metavariable] = ACTIONS(1698), + [sym_raw_string_literal] = ACTIONS(1698), + [sym_float_literal] = ACTIONS(1698), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1704), - [sym_identifier] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_macro_rules_BANG] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1704), - [anon_sym_RBRACE] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1704), - [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_u8] = ACTIONS(1706), - [anon_sym_i8] = ACTIONS(1706), - [anon_sym_u16] = ACTIONS(1706), - [anon_sym_i16] = ACTIONS(1706), - [anon_sym_u32] = ACTIONS(1706), - [anon_sym_i32] = ACTIONS(1706), - [anon_sym_u64] = ACTIONS(1706), - [anon_sym_i64] = ACTIONS(1706), - [anon_sym_u128] = ACTIONS(1706), - [anon_sym_i128] = ACTIONS(1706), - [anon_sym_isize] = ACTIONS(1706), - [anon_sym_usize] = ACTIONS(1706), - [anon_sym_f32] = ACTIONS(1706), - [anon_sym_f64] = ACTIONS(1706), - [anon_sym_bool] = ACTIONS(1706), - [anon_sym_str] = ACTIONS(1706), - [anon_sym_char] = ACTIONS(1706), - [anon_sym_SQUOTE] = ACTIONS(1706), - [anon_sym_async] = ACTIONS(1706), - [anon_sym_break] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(1706), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_fn] = ACTIONS(1706), - [anon_sym_for] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1706), - [anon_sym_impl] = ACTIONS(1706), - [anon_sym_let] = ACTIONS(1706), - [anon_sym_loop] = ACTIONS(1706), - [anon_sym_match] = ACTIONS(1706), - [anon_sym_mod] = ACTIONS(1706), - [anon_sym_pub] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_trait] = ACTIONS(1706), - [anon_sym_type] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [anon_sym_unsafe] = ACTIONS(1706), - [anon_sym_use] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1706), - [anon_sym_POUND] = ACTIONS(1704), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_COLON_COLON] = ACTIONS(1704), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_DOT_DOT] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_yield] = ACTIONS(1706), - [anon_sym_move] = ACTIONS(1706), - [sym_integer_literal] = ACTIONS(1704), - [aux_sym_string_literal_token1] = ACTIONS(1704), - [sym_char_literal] = ACTIONS(1704), - [anon_sym_true] = ACTIONS(1706), - [anon_sym_false] = ACTIONS(1706), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1706), - [sym_super] = ACTIONS(1706), - [sym_crate] = ACTIONS(1706), - [sym_metavariable] = ACTIONS(1704), - [sym_raw_string_literal] = ACTIONS(1704), - [sym_float_literal] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_macro_rules_BANG] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_u8] = ACTIONS(1704), + [anon_sym_i8] = ACTIONS(1704), + [anon_sym_u16] = ACTIONS(1704), + [anon_sym_i16] = ACTIONS(1704), + [anon_sym_u32] = ACTIONS(1704), + [anon_sym_i32] = ACTIONS(1704), + [anon_sym_u64] = ACTIONS(1704), + [anon_sym_i64] = ACTIONS(1704), + [anon_sym_u128] = ACTIONS(1704), + [anon_sym_i128] = ACTIONS(1704), + [anon_sym_isize] = ACTIONS(1704), + [anon_sym_usize] = ACTIONS(1704), + [anon_sym_f32] = ACTIONS(1704), + [anon_sym_f64] = ACTIONS(1704), + [anon_sym_bool] = ACTIONS(1704), + [anon_sym_str] = ACTIONS(1704), + [anon_sym_char] = ACTIONS(1704), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_fn] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_impl] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_loop] = ACTIONS(1704), + [anon_sym_match] = ACTIONS(1704), + [anon_sym_mod] = ACTIONS(1704), + [anon_sym_pub] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_trait] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_unsafe] = ACTIONS(1704), + [anon_sym_use] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_COLON_COLON] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_move] = ACTIONS(1704), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1702), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1704), + [anon_sym_false] = ACTIONS(1704), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_crate] = ACTIONS(1704), + [sym_metavariable] = ACTIONS(1702), + [sym_raw_string_literal] = ACTIONS(1702), + [sym_float_literal] = ACTIONS(1702), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1708), - [sym_identifier] = ACTIONS(1710), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym_macro_rules_BANG] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1708), - [anon_sym_RBRACE] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(1708), - [anon_sym_u8] = ACTIONS(1710), - [anon_sym_i8] = ACTIONS(1710), - [anon_sym_u16] = ACTIONS(1710), - [anon_sym_i16] = ACTIONS(1710), - [anon_sym_u32] = ACTIONS(1710), - [anon_sym_i32] = ACTIONS(1710), - [anon_sym_u64] = ACTIONS(1710), - [anon_sym_i64] = ACTIONS(1710), - [anon_sym_u128] = ACTIONS(1710), - [anon_sym_i128] = ACTIONS(1710), - [anon_sym_isize] = ACTIONS(1710), - [anon_sym_usize] = ACTIONS(1710), - [anon_sym_f32] = ACTIONS(1710), - [anon_sym_f64] = ACTIONS(1710), - [anon_sym_bool] = ACTIONS(1710), - [anon_sym_str] = ACTIONS(1710), - [anon_sym_char] = ACTIONS(1710), - [anon_sym_SQUOTE] = ACTIONS(1710), - [anon_sym_async] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_default] = ACTIONS(1710), - [anon_sym_enum] = ACTIONS(1710), - [anon_sym_fn] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_impl] = ACTIONS(1710), - [anon_sym_let] = ACTIONS(1710), - [anon_sym_loop] = ACTIONS(1710), - [anon_sym_match] = ACTIONS(1710), - [anon_sym_mod] = ACTIONS(1710), - [anon_sym_pub] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_static] = ACTIONS(1710), - [anon_sym_struct] = ACTIONS(1710), - [anon_sym_trait] = ACTIONS(1710), - [anon_sym_type] = ACTIONS(1710), - [anon_sym_union] = ACTIONS(1710), - [anon_sym_unsafe] = ACTIONS(1710), - [anon_sym_use] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_POUND] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_COLON_COLON] = ACTIONS(1708), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_DOT_DOT] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_yield] = ACTIONS(1710), - [anon_sym_move] = ACTIONS(1710), - [sym_integer_literal] = ACTIONS(1708), - [aux_sym_string_literal_token1] = ACTIONS(1708), - [sym_char_literal] = ACTIONS(1708), - [anon_sym_true] = ACTIONS(1710), - [anon_sym_false] = ACTIONS(1710), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1710), - [sym_super] = ACTIONS(1710), - [sym_crate] = ACTIONS(1710), - [sym_metavariable] = ACTIONS(1708), - [sym_raw_string_literal] = ACTIONS(1708), - [sym_float_literal] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_macro_rules_BANG] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_u8] = ACTIONS(1708), + [anon_sym_i8] = ACTIONS(1708), + [anon_sym_u16] = ACTIONS(1708), + [anon_sym_i16] = ACTIONS(1708), + [anon_sym_u32] = ACTIONS(1708), + [anon_sym_i32] = ACTIONS(1708), + [anon_sym_u64] = ACTIONS(1708), + [anon_sym_i64] = ACTIONS(1708), + [anon_sym_u128] = ACTIONS(1708), + [anon_sym_i128] = ACTIONS(1708), + [anon_sym_isize] = ACTIONS(1708), + [anon_sym_usize] = ACTIONS(1708), + [anon_sym_f32] = ACTIONS(1708), + [anon_sym_f64] = ACTIONS(1708), + [anon_sym_bool] = ACTIONS(1708), + [anon_sym_str] = ACTIONS(1708), + [anon_sym_char] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_fn] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_impl] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_mod] = ACTIONS(1708), + [anon_sym_pub] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_struct] = ACTIONS(1708), + [anon_sym_trait] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_unsafe] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_COLON_COLON] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_DOT_DOT] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_move] = ACTIONS(1708), + [sym_integer_literal] = ACTIONS(1706), + [aux_sym_string_literal_token1] = ACTIONS(1706), + [sym_char_literal] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1706), + [sym_raw_string_literal] = ACTIONS(1706), + [sym_float_literal] = ACTIONS(1706), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1712), - [sym_identifier] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1712), - [anon_sym_macro_rules_BANG] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_RBRACE] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_STAR] = ACTIONS(1712), - [anon_sym_u8] = ACTIONS(1714), - [anon_sym_i8] = ACTIONS(1714), - [anon_sym_u16] = ACTIONS(1714), - [anon_sym_i16] = ACTIONS(1714), - [anon_sym_u32] = ACTIONS(1714), - [anon_sym_i32] = ACTIONS(1714), - [anon_sym_u64] = ACTIONS(1714), - [anon_sym_i64] = ACTIONS(1714), - [anon_sym_u128] = ACTIONS(1714), - [anon_sym_i128] = ACTIONS(1714), - [anon_sym_isize] = ACTIONS(1714), - [anon_sym_usize] = ACTIONS(1714), - [anon_sym_f32] = ACTIONS(1714), - [anon_sym_f64] = ACTIONS(1714), - [anon_sym_bool] = ACTIONS(1714), - [anon_sym_str] = ACTIONS(1714), - [anon_sym_char] = ACTIONS(1714), - [anon_sym_SQUOTE] = ACTIONS(1714), - [anon_sym_async] = ACTIONS(1714), - [anon_sym_break] = ACTIONS(1714), - [anon_sym_const] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(1714), - [anon_sym_default] = ACTIONS(1714), - [anon_sym_enum] = ACTIONS(1714), - [anon_sym_fn] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1714), - [anon_sym_impl] = ACTIONS(1714), - [anon_sym_let] = ACTIONS(1714), - [anon_sym_loop] = ACTIONS(1714), - [anon_sym_match] = ACTIONS(1714), - [anon_sym_mod] = ACTIONS(1714), - [anon_sym_pub] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_static] = ACTIONS(1714), - [anon_sym_struct] = ACTIONS(1714), - [anon_sym_trait] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1714), - [anon_sym_union] = ACTIONS(1714), - [anon_sym_unsafe] = ACTIONS(1714), - [anon_sym_use] = ACTIONS(1714), - [anon_sym_while] = ACTIONS(1714), - [anon_sym_POUND] = ACTIONS(1712), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_COLON_COLON] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_DOT_DOT] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_yield] = ACTIONS(1714), - [anon_sym_move] = ACTIONS(1714), - [sym_integer_literal] = ACTIONS(1712), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1712), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1714), - [sym_super] = ACTIONS(1714), - [sym_crate] = ACTIONS(1714), - [sym_metavariable] = ACTIONS(1712), - [sym_raw_string_literal] = ACTIONS(1712), - [sym_float_literal] = ACTIONS(1712), + [ts_builtin_sym_end] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_macro_rules_BANG] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_u8] = ACTIONS(1712), + [anon_sym_i8] = ACTIONS(1712), + [anon_sym_u16] = ACTIONS(1712), + [anon_sym_i16] = ACTIONS(1712), + [anon_sym_u32] = ACTIONS(1712), + [anon_sym_i32] = ACTIONS(1712), + [anon_sym_u64] = ACTIONS(1712), + [anon_sym_i64] = ACTIONS(1712), + [anon_sym_u128] = ACTIONS(1712), + [anon_sym_i128] = ACTIONS(1712), + [anon_sym_isize] = ACTIONS(1712), + [anon_sym_usize] = ACTIONS(1712), + [anon_sym_f32] = ACTIONS(1712), + [anon_sym_f64] = ACTIONS(1712), + [anon_sym_bool] = ACTIONS(1712), + [anon_sym_str] = ACTIONS(1712), + [anon_sym_char] = ACTIONS(1712), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_async] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [anon_sym_fn] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_impl] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_mod] = ACTIONS(1712), + [anon_sym_pub] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_struct] = ACTIONS(1712), + [anon_sym_trait] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1712), + [anon_sym_unsafe] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_COLON_COLON] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_DOT_DOT] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_yield] = ACTIONS(1712), + [anon_sym_move] = ACTIONS(1712), + [sym_integer_literal] = ACTIONS(1710), + [aux_sym_string_literal_token1] = ACTIONS(1710), + [sym_char_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1712), + [anon_sym_false] = ACTIONS(1712), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_crate] = ACTIONS(1712), + [sym_metavariable] = ACTIONS(1710), + [sym_raw_string_literal] = ACTIONS(1710), + [sym_float_literal] = ACTIONS(1710), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_identifier] = ACTIONS(1718), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_macro_rules_BANG] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1716), - [anon_sym_RBRACE] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1716), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_u8] = ACTIONS(1718), - [anon_sym_i8] = ACTIONS(1718), - [anon_sym_u16] = ACTIONS(1718), - [anon_sym_i16] = ACTIONS(1718), - [anon_sym_u32] = ACTIONS(1718), - [anon_sym_i32] = ACTIONS(1718), - [anon_sym_u64] = ACTIONS(1718), - [anon_sym_i64] = ACTIONS(1718), - [anon_sym_u128] = ACTIONS(1718), - [anon_sym_i128] = ACTIONS(1718), - [anon_sym_isize] = ACTIONS(1718), - [anon_sym_usize] = ACTIONS(1718), - [anon_sym_f32] = ACTIONS(1718), - [anon_sym_f64] = ACTIONS(1718), - [anon_sym_bool] = ACTIONS(1718), - [anon_sym_str] = ACTIONS(1718), - [anon_sym_char] = ACTIONS(1718), - [anon_sym_SQUOTE] = ACTIONS(1718), - [anon_sym_async] = ACTIONS(1718), - [anon_sym_break] = ACTIONS(1718), - [anon_sym_const] = ACTIONS(1718), - [anon_sym_continue] = ACTIONS(1718), - [anon_sym_default] = ACTIONS(1718), - [anon_sym_enum] = ACTIONS(1718), - [anon_sym_fn] = ACTIONS(1718), - [anon_sym_for] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_impl] = ACTIONS(1718), - [anon_sym_let] = ACTIONS(1718), - [anon_sym_loop] = ACTIONS(1718), - [anon_sym_match] = ACTIONS(1718), - [anon_sym_mod] = ACTIONS(1718), - [anon_sym_pub] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1718), - [anon_sym_static] = ACTIONS(1718), - [anon_sym_struct] = ACTIONS(1718), - [anon_sym_trait] = ACTIONS(1718), - [anon_sym_type] = ACTIONS(1718), - [anon_sym_union] = ACTIONS(1718), - [anon_sym_unsafe] = ACTIONS(1718), - [anon_sym_use] = ACTIONS(1718), - [anon_sym_while] = ACTIONS(1718), - [anon_sym_POUND] = ACTIONS(1716), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_extern] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_COLON_COLON] = ACTIONS(1716), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_DOT_DOT] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_yield] = ACTIONS(1718), - [anon_sym_move] = ACTIONS(1718), - [sym_integer_literal] = ACTIONS(1716), - [aux_sym_string_literal_token1] = ACTIONS(1716), - [sym_char_literal] = ACTIONS(1716), - [anon_sym_true] = ACTIONS(1718), - [anon_sym_false] = ACTIONS(1718), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1718), - [sym_super] = ACTIONS(1718), - [sym_crate] = ACTIONS(1718), - [sym_metavariable] = ACTIONS(1716), - [sym_raw_string_literal] = ACTIONS(1716), - [sym_float_literal] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(1714), + [sym_identifier] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_macro_rules_BANG] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_u8] = ACTIONS(1716), + [anon_sym_i8] = ACTIONS(1716), + [anon_sym_u16] = ACTIONS(1716), + [anon_sym_i16] = ACTIONS(1716), + [anon_sym_u32] = ACTIONS(1716), + [anon_sym_i32] = ACTIONS(1716), + [anon_sym_u64] = ACTIONS(1716), + [anon_sym_i64] = ACTIONS(1716), + [anon_sym_u128] = ACTIONS(1716), + [anon_sym_i128] = ACTIONS(1716), + [anon_sym_isize] = ACTIONS(1716), + [anon_sym_usize] = ACTIONS(1716), + [anon_sym_f32] = ACTIONS(1716), + [anon_sym_f64] = ACTIONS(1716), + [anon_sym_bool] = ACTIONS(1716), + [anon_sym_str] = ACTIONS(1716), + [anon_sym_char] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_async] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_fn] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_impl] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_mod] = ACTIONS(1716), + [anon_sym_pub] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_trait] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_unsafe] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_DOT_DOT] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1716), + [anon_sym_move] = ACTIONS(1716), + [sym_integer_literal] = ACTIONS(1714), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1714), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_crate] = ACTIONS(1716), + [sym_metavariable] = ACTIONS(1714), + [sym_raw_string_literal] = ACTIONS(1714), + [sym_float_literal] = ACTIONS(1714), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1720), - [sym_identifier] = ACTIONS(1722), - [anon_sym_SEMI] = ACTIONS(1720), - [anon_sym_macro_rules_BANG] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1720), - [anon_sym_RBRACE] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1720), - [anon_sym_STAR] = ACTIONS(1720), - [anon_sym_u8] = ACTIONS(1722), - [anon_sym_i8] = ACTIONS(1722), - [anon_sym_u16] = ACTIONS(1722), - [anon_sym_i16] = ACTIONS(1722), - [anon_sym_u32] = ACTIONS(1722), - [anon_sym_i32] = ACTIONS(1722), - [anon_sym_u64] = ACTIONS(1722), - [anon_sym_i64] = ACTIONS(1722), - [anon_sym_u128] = ACTIONS(1722), - [anon_sym_i128] = ACTIONS(1722), - [anon_sym_isize] = ACTIONS(1722), - [anon_sym_usize] = ACTIONS(1722), - [anon_sym_f32] = ACTIONS(1722), - [anon_sym_f64] = ACTIONS(1722), - [anon_sym_bool] = ACTIONS(1722), - [anon_sym_str] = ACTIONS(1722), - [anon_sym_char] = ACTIONS(1722), - [anon_sym_SQUOTE] = ACTIONS(1722), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_break] = ACTIONS(1722), - [anon_sym_const] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(1722), - [anon_sym_default] = ACTIONS(1722), - [anon_sym_enum] = ACTIONS(1722), - [anon_sym_fn] = ACTIONS(1722), - [anon_sym_for] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1722), - [anon_sym_impl] = ACTIONS(1722), - [anon_sym_let] = ACTIONS(1722), - [anon_sym_loop] = ACTIONS(1722), - [anon_sym_match] = ACTIONS(1722), - [anon_sym_mod] = ACTIONS(1722), - [anon_sym_pub] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_struct] = ACTIONS(1722), - [anon_sym_trait] = ACTIONS(1722), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_union] = ACTIONS(1722), - [anon_sym_unsafe] = ACTIONS(1722), - [anon_sym_use] = ACTIONS(1722), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_POUND] = ACTIONS(1720), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_COLON_COLON] = ACTIONS(1720), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_DOT_DOT] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_yield] = ACTIONS(1722), - [anon_sym_move] = ACTIONS(1722), - [sym_integer_literal] = ACTIONS(1720), - [aux_sym_string_literal_token1] = ACTIONS(1720), - [sym_char_literal] = ACTIONS(1720), - [anon_sym_true] = ACTIONS(1722), - [anon_sym_false] = ACTIONS(1722), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1722), - [sym_super] = ACTIONS(1722), - [sym_crate] = ACTIONS(1722), - [sym_metavariable] = ACTIONS(1720), - [sym_raw_string_literal] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1720), + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_macro_rules_BANG] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_u8] = ACTIONS(1720), + [anon_sym_i8] = ACTIONS(1720), + [anon_sym_u16] = ACTIONS(1720), + [anon_sym_i16] = ACTIONS(1720), + [anon_sym_u32] = ACTIONS(1720), + [anon_sym_i32] = ACTIONS(1720), + [anon_sym_u64] = ACTIONS(1720), + [anon_sym_i64] = ACTIONS(1720), + [anon_sym_u128] = ACTIONS(1720), + [anon_sym_i128] = ACTIONS(1720), + [anon_sym_isize] = ACTIONS(1720), + [anon_sym_usize] = ACTIONS(1720), + [anon_sym_f32] = ACTIONS(1720), + [anon_sym_f64] = ACTIONS(1720), + [anon_sym_bool] = ACTIONS(1720), + [anon_sym_str] = ACTIONS(1720), + [anon_sym_char] = ACTIONS(1720), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_async] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_impl] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_mod] = ACTIONS(1720), + [anon_sym_pub] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1720), + [anon_sym_trait] = ACTIONS(1720), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_union] = ACTIONS(1720), + [anon_sym_unsafe] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_DOT_DOT] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1720), + [anon_sym_move] = ACTIONS(1720), + [sym_integer_literal] = ACTIONS(1718), + [aux_sym_string_literal_token1] = ACTIONS(1718), + [sym_char_literal] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1720), + [sym_super] = ACTIONS(1720), + [sym_crate] = ACTIONS(1720), + [sym_metavariable] = ACTIONS(1718), + [sym_raw_string_literal] = ACTIONS(1718), + [sym_float_literal] = ACTIONS(1718), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1724), - [sym_identifier] = ACTIONS(1726), - [anon_sym_SEMI] = ACTIONS(1724), - [anon_sym_macro_rules_BANG] = ACTIONS(1724), - [anon_sym_LPAREN] = ACTIONS(1724), - [anon_sym_LBRACE] = ACTIONS(1724), - [anon_sym_RBRACE] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1724), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_u8] = ACTIONS(1726), - [anon_sym_i8] = ACTIONS(1726), - [anon_sym_u16] = ACTIONS(1726), - [anon_sym_i16] = ACTIONS(1726), - [anon_sym_u32] = ACTIONS(1726), - [anon_sym_i32] = ACTIONS(1726), - [anon_sym_u64] = ACTIONS(1726), - [anon_sym_i64] = ACTIONS(1726), - [anon_sym_u128] = ACTIONS(1726), - [anon_sym_i128] = ACTIONS(1726), - [anon_sym_isize] = ACTIONS(1726), - [anon_sym_usize] = ACTIONS(1726), - [anon_sym_f32] = ACTIONS(1726), - [anon_sym_f64] = ACTIONS(1726), - [anon_sym_bool] = ACTIONS(1726), - [anon_sym_str] = ACTIONS(1726), - [anon_sym_char] = ACTIONS(1726), - [anon_sym_SQUOTE] = ACTIONS(1726), - [anon_sym_async] = ACTIONS(1726), - [anon_sym_break] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1726), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_default] = ACTIONS(1726), - [anon_sym_enum] = ACTIONS(1726), - [anon_sym_fn] = ACTIONS(1726), - [anon_sym_for] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1726), - [anon_sym_impl] = ACTIONS(1726), - [anon_sym_let] = ACTIONS(1726), - [anon_sym_loop] = ACTIONS(1726), - [anon_sym_match] = ACTIONS(1726), - [anon_sym_mod] = ACTIONS(1726), - [anon_sym_pub] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1726), - [anon_sym_struct] = ACTIONS(1726), - [anon_sym_trait] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1726), - [anon_sym_union] = ACTIONS(1726), - [anon_sym_unsafe] = ACTIONS(1726), - [anon_sym_use] = ACTIONS(1726), - [anon_sym_while] = ACTIONS(1726), - [anon_sym_POUND] = ACTIONS(1724), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_extern] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_COLON_COLON] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_DOT_DOT] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_yield] = ACTIONS(1726), - [anon_sym_move] = ACTIONS(1726), - [sym_integer_literal] = ACTIONS(1724), - [aux_sym_string_literal_token1] = ACTIONS(1724), - [sym_char_literal] = ACTIONS(1724), - [anon_sym_true] = ACTIONS(1726), - [anon_sym_false] = ACTIONS(1726), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1726), - [sym_super] = ACTIONS(1726), - [sym_crate] = ACTIONS(1726), - [sym_metavariable] = ACTIONS(1724), - [sym_raw_string_literal] = ACTIONS(1724), - [sym_float_literal] = ACTIONS(1724), + [ts_builtin_sym_end] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_macro_rules_BANG] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_u8] = ACTIONS(1724), + [anon_sym_i8] = ACTIONS(1724), + [anon_sym_u16] = ACTIONS(1724), + [anon_sym_i16] = ACTIONS(1724), + [anon_sym_u32] = ACTIONS(1724), + [anon_sym_i32] = ACTIONS(1724), + [anon_sym_u64] = ACTIONS(1724), + [anon_sym_i64] = ACTIONS(1724), + [anon_sym_u128] = ACTIONS(1724), + [anon_sym_i128] = ACTIONS(1724), + [anon_sym_isize] = ACTIONS(1724), + [anon_sym_usize] = ACTIONS(1724), + [anon_sym_f32] = ACTIONS(1724), + [anon_sym_f64] = ACTIONS(1724), + [anon_sym_bool] = ACTIONS(1724), + [anon_sym_str] = ACTIONS(1724), + [anon_sym_char] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_enum] = ACTIONS(1724), + [anon_sym_fn] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_impl] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_mod] = ACTIONS(1724), + [anon_sym_pub] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_struct] = ACTIONS(1724), + [anon_sym_trait] = ACTIONS(1724), + [anon_sym_type] = ACTIONS(1724), + [anon_sym_union] = ACTIONS(1724), + [anon_sym_unsafe] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_COLON_COLON] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_DOT_DOT] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1724), + [anon_sym_move] = ACTIONS(1724), + [sym_integer_literal] = ACTIONS(1722), + [aux_sym_string_literal_token1] = ACTIONS(1722), + [sym_char_literal] = ACTIONS(1722), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1724), + [sym_super] = ACTIONS(1724), + [sym_crate] = ACTIONS(1724), + [sym_metavariable] = ACTIONS(1722), + [sym_raw_string_literal] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1722), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1730), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_macro_rules_BANG] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_u8] = ACTIONS(1730), - [anon_sym_i8] = ACTIONS(1730), - [anon_sym_u16] = ACTIONS(1730), - [anon_sym_i16] = ACTIONS(1730), - [anon_sym_u32] = ACTIONS(1730), - [anon_sym_i32] = ACTIONS(1730), - [anon_sym_u64] = ACTIONS(1730), - [anon_sym_i64] = ACTIONS(1730), - [anon_sym_u128] = ACTIONS(1730), - [anon_sym_i128] = ACTIONS(1730), - [anon_sym_isize] = ACTIONS(1730), - [anon_sym_usize] = ACTIONS(1730), - [anon_sym_f32] = ACTIONS(1730), - [anon_sym_f64] = ACTIONS(1730), - [anon_sym_bool] = ACTIONS(1730), - [anon_sym_str] = ACTIONS(1730), - [anon_sym_char] = ACTIONS(1730), - [anon_sym_SQUOTE] = ACTIONS(1730), - [anon_sym_async] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_fn] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_impl] = ACTIONS(1730), - [anon_sym_let] = ACTIONS(1730), - [anon_sym_loop] = ACTIONS(1730), - [anon_sym_match] = ACTIONS(1730), - [anon_sym_mod] = ACTIONS(1730), - [anon_sym_pub] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_trait] = ACTIONS(1730), - [anon_sym_type] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_unsafe] = ACTIONS(1730), - [anon_sym_use] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_POUND] = ACTIONS(1728), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_COLON_COLON] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_DOT_DOT] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1730), - [anon_sym_move] = ACTIONS(1730), - [sym_integer_literal] = ACTIONS(1728), - [aux_sym_string_literal_token1] = ACTIONS(1728), - [sym_char_literal] = ACTIONS(1728), - [anon_sym_true] = ACTIONS(1730), - [anon_sym_false] = ACTIONS(1730), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1730), - [sym_super] = ACTIONS(1730), - [sym_crate] = ACTIONS(1730), - [sym_metavariable] = ACTIONS(1728), - [sym_raw_string_literal] = ACTIONS(1728), - [sym_float_literal] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_macro_rules_BANG] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u128] = ACTIONS(1728), + [anon_sym_i128] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_str] = ACTIONS(1728), + [anon_sym_char] = ACTIONS(1728), + [anon_sym_SQUOTE] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [anon_sym_fn] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_impl] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_loop] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_mod] = ACTIONS(1728), + [anon_sym_pub] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_trait] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_unsafe] = ACTIONS(1728), + [anon_sym_use] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_extern] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_DOT_DOT] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_move] = ACTIONS(1728), + [sym_integer_literal] = ACTIONS(1726), + [aux_sym_string_literal_token1] = ACTIONS(1726), + [sym_char_literal] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_crate] = ACTIONS(1728), + [sym_metavariable] = ACTIONS(1726), + [sym_raw_string_literal] = ACTIONS(1726), + [sym_float_literal] = ACTIONS(1726), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym_macro_rules_BANG] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1732), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_u8] = ACTIONS(1734), - [anon_sym_i8] = ACTIONS(1734), - [anon_sym_u16] = ACTIONS(1734), - [anon_sym_i16] = ACTIONS(1734), - [anon_sym_u32] = ACTIONS(1734), - [anon_sym_i32] = ACTIONS(1734), - [anon_sym_u64] = ACTIONS(1734), - [anon_sym_i64] = ACTIONS(1734), - [anon_sym_u128] = ACTIONS(1734), - [anon_sym_i128] = ACTIONS(1734), - [anon_sym_isize] = ACTIONS(1734), - [anon_sym_usize] = ACTIONS(1734), - [anon_sym_f32] = ACTIONS(1734), - [anon_sym_f64] = ACTIONS(1734), - [anon_sym_bool] = ACTIONS(1734), - [anon_sym_str] = ACTIONS(1734), - [anon_sym_char] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1734), - [anon_sym_async] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_fn] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_impl] = ACTIONS(1734), - [anon_sym_let] = ACTIONS(1734), - [anon_sym_loop] = ACTIONS(1734), - [anon_sym_match] = ACTIONS(1734), - [anon_sym_mod] = ACTIONS(1734), - [anon_sym_pub] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_trait] = ACTIONS(1734), - [anon_sym_type] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_unsafe] = ACTIONS(1734), - [anon_sym_use] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_POUND] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_DOT_DOT] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_yield] = ACTIONS(1734), - [anon_sym_move] = ACTIONS(1734), - [sym_integer_literal] = ACTIONS(1732), - [aux_sym_string_literal_token1] = ACTIONS(1732), - [sym_char_literal] = ACTIONS(1732), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1734), - [sym_super] = ACTIONS(1734), - [sym_crate] = ACTIONS(1734), - [sym_metavariable] = ACTIONS(1732), - [sym_raw_string_literal] = ACTIONS(1732), - [sym_float_literal] = ACTIONS(1732), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_macro_rules_BANG] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_u8] = ACTIONS(1732), + [anon_sym_i8] = ACTIONS(1732), + [anon_sym_u16] = ACTIONS(1732), + [anon_sym_i16] = ACTIONS(1732), + [anon_sym_u32] = ACTIONS(1732), + [anon_sym_i32] = ACTIONS(1732), + [anon_sym_u64] = ACTIONS(1732), + [anon_sym_i64] = ACTIONS(1732), + [anon_sym_u128] = ACTIONS(1732), + [anon_sym_i128] = ACTIONS(1732), + [anon_sym_isize] = ACTIONS(1732), + [anon_sym_usize] = ACTIONS(1732), + [anon_sym_f32] = ACTIONS(1732), + [anon_sym_f64] = ACTIONS(1732), + [anon_sym_bool] = ACTIONS(1732), + [anon_sym_str] = ACTIONS(1732), + [anon_sym_char] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [anon_sym_fn] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_impl] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_loop] = ACTIONS(1732), + [anon_sym_match] = ACTIONS(1732), + [anon_sym_mod] = ACTIONS(1732), + [anon_sym_pub] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1732), + [anon_sym_trait] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_union] = ACTIONS(1732), + [anon_sym_unsafe] = ACTIONS(1732), + [anon_sym_use] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_COLON_COLON] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_DOT_DOT] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_move] = ACTIONS(1732), + [sym_integer_literal] = ACTIONS(1730), + [aux_sym_string_literal_token1] = ACTIONS(1730), + [sym_char_literal] = ACTIONS(1730), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_crate] = ACTIONS(1732), + [sym_metavariable] = ACTIONS(1730), + [sym_raw_string_literal] = ACTIONS(1730), + [sym_float_literal] = ACTIONS(1730), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1736), - [sym_identifier] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_macro_rules_BANG] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_SQUOTE] = ACTIONS(1738), - [anon_sym_async] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_default] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1738), - [anon_sym_fn] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_impl] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_mod] = ACTIONS(1738), - [anon_sym_pub] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_static] = ACTIONS(1738), - [anon_sym_struct] = ACTIONS(1738), - [anon_sym_trait] = ACTIONS(1738), - [anon_sym_type] = ACTIONS(1738), - [anon_sym_union] = ACTIONS(1738), - [anon_sym_unsafe] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_yield] = ACTIONS(1738), - [anon_sym_move] = ACTIONS(1738), - [sym_integer_literal] = ACTIONS(1736), - [aux_sym_string_literal_token1] = ACTIONS(1736), - [sym_char_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1738), - [sym_super] = ACTIONS(1738), - [sym_crate] = ACTIONS(1738), - [sym_metavariable] = ACTIONS(1736), - [sym_raw_string_literal] = ACTIONS(1736), - [sym_float_literal] = ACTIONS(1736), + [ts_builtin_sym_end] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_macro_rules_BANG] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_u8] = ACTIONS(1736), + [anon_sym_i8] = ACTIONS(1736), + [anon_sym_u16] = ACTIONS(1736), + [anon_sym_i16] = ACTIONS(1736), + [anon_sym_u32] = ACTIONS(1736), + [anon_sym_i32] = ACTIONS(1736), + [anon_sym_u64] = ACTIONS(1736), + [anon_sym_i64] = ACTIONS(1736), + [anon_sym_u128] = ACTIONS(1736), + [anon_sym_i128] = ACTIONS(1736), + [anon_sym_isize] = ACTIONS(1736), + [anon_sym_usize] = ACTIONS(1736), + [anon_sym_f32] = ACTIONS(1736), + [anon_sym_f64] = ACTIONS(1736), + [anon_sym_bool] = ACTIONS(1736), + [anon_sym_str] = ACTIONS(1736), + [anon_sym_char] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_fn] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_impl] = ACTIONS(1736), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_loop] = ACTIONS(1736), + [anon_sym_match] = ACTIONS(1736), + [anon_sym_mod] = ACTIONS(1736), + [anon_sym_pub] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_trait] = ACTIONS(1736), + [anon_sym_type] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_unsafe] = ACTIONS(1736), + [anon_sym_use] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_POUND] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_yield] = ACTIONS(1736), + [anon_sym_move] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [aux_sym_string_literal_token1] = ACTIONS(1734), + [sym_char_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1736), + [anon_sym_false] = ACTIONS(1736), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_crate] = ACTIONS(1736), + [sym_metavariable] = ACTIONS(1734), + [sym_raw_string_literal] = ACTIONS(1734), + [sym_float_literal] = ACTIONS(1734), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_identifier] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_macro_rules_BANG] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1740), - [anon_sym_u8] = ACTIONS(1742), - [anon_sym_i8] = ACTIONS(1742), - [anon_sym_u16] = ACTIONS(1742), - [anon_sym_i16] = ACTIONS(1742), - [anon_sym_u32] = ACTIONS(1742), - [anon_sym_i32] = ACTIONS(1742), - [anon_sym_u64] = ACTIONS(1742), - [anon_sym_i64] = ACTIONS(1742), - [anon_sym_u128] = ACTIONS(1742), - [anon_sym_i128] = ACTIONS(1742), - [anon_sym_isize] = ACTIONS(1742), - [anon_sym_usize] = ACTIONS(1742), - [anon_sym_f32] = ACTIONS(1742), - [anon_sym_f64] = ACTIONS(1742), - [anon_sym_bool] = ACTIONS(1742), - [anon_sym_str] = ACTIONS(1742), - [anon_sym_char] = ACTIONS(1742), - [anon_sym_SQUOTE] = ACTIONS(1742), - [anon_sym_async] = ACTIONS(1742), - [anon_sym_break] = ACTIONS(1742), - [anon_sym_const] = ACTIONS(1742), - [anon_sym_continue] = ACTIONS(1742), - [anon_sym_default] = ACTIONS(1742), - [anon_sym_enum] = ACTIONS(1742), - [anon_sym_fn] = ACTIONS(1742), - [anon_sym_for] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1742), - [anon_sym_impl] = ACTIONS(1742), - [anon_sym_let] = ACTIONS(1742), - [anon_sym_loop] = ACTIONS(1742), - [anon_sym_match] = ACTIONS(1742), - [anon_sym_mod] = ACTIONS(1742), - [anon_sym_pub] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1742), - [anon_sym_static] = ACTIONS(1742), - [anon_sym_struct] = ACTIONS(1742), - [anon_sym_trait] = ACTIONS(1742), - [anon_sym_type] = ACTIONS(1742), - [anon_sym_union] = ACTIONS(1742), - [anon_sym_unsafe] = ACTIONS(1742), - [anon_sym_use] = ACTIONS(1742), - [anon_sym_while] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(1740), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_COLON_COLON] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_yield] = ACTIONS(1742), - [anon_sym_move] = ACTIONS(1742), - [sym_integer_literal] = ACTIONS(1740), - [aux_sym_string_literal_token1] = ACTIONS(1740), - [sym_char_literal] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1742), - [sym_super] = ACTIONS(1742), - [sym_crate] = ACTIONS(1742), - [sym_metavariable] = ACTIONS(1740), - [sym_raw_string_literal] = ACTIONS(1740), - [sym_float_literal] = ACTIONS(1740), + [ts_builtin_sym_end] = ACTIONS(1738), + [sym_identifier] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_macro_rules_BANG] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_u8] = ACTIONS(1740), + [anon_sym_i8] = ACTIONS(1740), + [anon_sym_u16] = ACTIONS(1740), + [anon_sym_i16] = ACTIONS(1740), + [anon_sym_u32] = ACTIONS(1740), + [anon_sym_i32] = ACTIONS(1740), + [anon_sym_u64] = ACTIONS(1740), + [anon_sym_i64] = ACTIONS(1740), + [anon_sym_u128] = ACTIONS(1740), + [anon_sym_i128] = ACTIONS(1740), + [anon_sym_isize] = ACTIONS(1740), + [anon_sym_usize] = ACTIONS(1740), + [anon_sym_f32] = ACTIONS(1740), + [anon_sym_f64] = ACTIONS(1740), + [anon_sym_bool] = ACTIONS(1740), + [anon_sym_str] = ACTIONS(1740), + [anon_sym_char] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_async] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_continue] = ACTIONS(1740), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_fn] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_impl] = ACTIONS(1740), + [anon_sym_let] = ACTIONS(1740), + [anon_sym_loop] = ACTIONS(1740), + [anon_sym_match] = ACTIONS(1740), + [anon_sym_mod] = ACTIONS(1740), + [anon_sym_pub] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_trait] = ACTIONS(1740), + [anon_sym_type] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_unsafe] = ACTIONS(1740), + [anon_sym_use] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_yield] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [aux_sym_string_literal_token1] = ACTIONS(1738), + [sym_char_literal] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1740), + [sym_super] = ACTIONS(1740), + [sym_crate] = ACTIONS(1740), + [sym_metavariable] = ACTIONS(1738), + [sym_raw_string_literal] = ACTIONS(1738), + [sym_float_literal] = ACTIONS(1738), [sym_block_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1744), - [sym_identifier] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_macro_rules_BANG] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1744), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_u8] = ACTIONS(1746), - [anon_sym_i8] = ACTIONS(1746), - [anon_sym_u16] = ACTIONS(1746), - [anon_sym_i16] = ACTIONS(1746), - [anon_sym_u32] = ACTIONS(1746), - [anon_sym_i32] = ACTIONS(1746), - [anon_sym_u64] = ACTIONS(1746), - [anon_sym_i64] = ACTIONS(1746), - [anon_sym_u128] = ACTIONS(1746), - [anon_sym_i128] = ACTIONS(1746), - [anon_sym_isize] = ACTIONS(1746), - [anon_sym_usize] = ACTIONS(1746), - [anon_sym_f32] = ACTIONS(1746), - [anon_sym_f64] = ACTIONS(1746), - [anon_sym_bool] = ACTIONS(1746), - [anon_sym_str] = ACTIONS(1746), - [anon_sym_char] = ACTIONS(1746), - [anon_sym_SQUOTE] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_break] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1746), - [anon_sym_continue] = ACTIONS(1746), - [anon_sym_default] = ACTIONS(1746), - [anon_sym_enum] = ACTIONS(1746), - [anon_sym_fn] = ACTIONS(1746), - [anon_sym_for] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1746), - [anon_sym_impl] = ACTIONS(1746), - [anon_sym_let] = ACTIONS(1746), - [anon_sym_loop] = ACTIONS(1746), - [anon_sym_match] = ACTIONS(1746), - [anon_sym_mod] = ACTIONS(1746), - [anon_sym_pub] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(1746), - [anon_sym_struct] = ACTIONS(1746), - [anon_sym_trait] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1746), - [anon_sym_union] = ACTIONS(1746), - [anon_sym_unsafe] = ACTIONS(1746), - [anon_sym_use] = ACTIONS(1746), - [anon_sym_while] = ACTIONS(1746), - [anon_sym_POUND] = ACTIONS(1744), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_yield] = ACTIONS(1746), - [anon_sym_move] = ACTIONS(1746), - [sym_integer_literal] = ACTIONS(1744), - [aux_sym_string_literal_token1] = ACTIONS(1744), - [sym_char_literal] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1746), - [sym_super] = ACTIONS(1746), - [sym_crate] = ACTIONS(1746), - [sym_metavariable] = ACTIONS(1744), - [sym_raw_string_literal] = ACTIONS(1744), - [sym_float_literal] = ACTIONS(1744), + [ts_builtin_sym_end] = ACTIONS(1742), + [sym_identifier] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_macro_rules_BANG] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_u8] = ACTIONS(1744), + [anon_sym_i8] = ACTIONS(1744), + [anon_sym_u16] = ACTIONS(1744), + [anon_sym_i16] = ACTIONS(1744), + [anon_sym_u32] = ACTIONS(1744), + [anon_sym_i32] = ACTIONS(1744), + [anon_sym_u64] = ACTIONS(1744), + [anon_sym_i64] = ACTIONS(1744), + [anon_sym_u128] = ACTIONS(1744), + [anon_sym_i128] = ACTIONS(1744), + [anon_sym_isize] = ACTIONS(1744), + [anon_sym_usize] = ACTIONS(1744), + [anon_sym_f32] = ACTIONS(1744), + [anon_sym_f64] = ACTIONS(1744), + [anon_sym_bool] = ACTIONS(1744), + [anon_sym_str] = ACTIONS(1744), + [anon_sym_char] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_fn] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_impl] = ACTIONS(1744), + [anon_sym_let] = ACTIONS(1744), + [anon_sym_loop] = ACTIONS(1744), + [anon_sym_match] = ACTIONS(1744), + [anon_sym_mod] = ACTIONS(1744), + [anon_sym_pub] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_trait] = ACTIONS(1744), + [anon_sym_type] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_unsafe] = ACTIONS(1744), + [anon_sym_use] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_POUND] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_LT] = ACTIONS(1742), + [anon_sym_COLON_COLON] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_yield] = ACTIONS(1744), + [anon_sym_move] = ACTIONS(1744), + [sym_integer_literal] = ACTIONS(1742), + [aux_sym_string_literal_token1] = ACTIONS(1742), + [sym_char_literal] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1744), + [sym_super] = ACTIONS(1744), + [sym_crate] = ACTIONS(1744), + [sym_metavariable] = ACTIONS(1742), + [sym_raw_string_literal] = ACTIONS(1742), + [sym_float_literal] = ACTIONS(1742), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1748), - [sym_identifier] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1748), - [anon_sym_macro_rules_BANG] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1748), - [anon_sym_STAR] = ACTIONS(1748), - [anon_sym_u8] = ACTIONS(1750), - [anon_sym_i8] = ACTIONS(1750), - [anon_sym_u16] = ACTIONS(1750), - [anon_sym_i16] = ACTIONS(1750), - [anon_sym_u32] = ACTIONS(1750), - [anon_sym_i32] = ACTIONS(1750), - [anon_sym_u64] = ACTIONS(1750), - [anon_sym_i64] = ACTIONS(1750), - [anon_sym_u128] = ACTIONS(1750), - [anon_sym_i128] = ACTIONS(1750), - [anon_sym_isize] = ACTIONS(1750), - [anon_sym_usize] = ACTIONS(1750), - [anon_sym_f32] = ACTIONS(1750), - [anon_sym_f64] = ACTIONS(1750), - [anon_sym_bool] = ACTIONS(1750), - [anon_sym_str] = ACTIONS(1750), - [anon_sym_char] = ACTIONS(1750), - [anon_sym_SQUOTE] = ACTIONS(1750), - [anon_sym_async] = ACTIONS(1750), - [anon_sym_break] = ACTIONS(1750), - [anon_sym_const] = ACTIONS(1750), - [anon_sym_continue] = ACTIONS(1750), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1750), - [anon_sym_fn] = ACTIONS(1750), - [anon_sym_for] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1750), - [anon_sym_impl] = ACTIONS(1750), - [anon_sym_let] = ACTIONS(1750), - [anon_sym_loop] = ACTIONS(1750), - [anon_sym_match] = ACTIONS(1750), - [anon_sym_mod] = ACTIONS(1750), - [anon_sym_pub] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1750), - [anon_sym_struct] = ACTIONS(1750), - [anon_sym_trait] = ACTIONS(1750), - [anon_sym_type] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_unsafe] = ACTIONS(1750), - [anon_sym_use] = ACTIONS(1750), - [anon_sym_while] = ACTIONS(1750), - [anon_sym_POUND] = ACTIONS(1748), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_COLON_COLON] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_DOT_DOT] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1748), - [anon_sym_yield] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1748), - [aux_sym_string_literal_token1] = ACTIONS(1748), - [sym_char_literal] = ACTIONS(1748), - [anon_sym_true] = ACTIONS(1750), - [anon_sym_false] = ACTIONS(1750), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1750), - [sym_super] = ACTIONS(1750), - [sym_crate] = ACTIONS(1750), - [sym_metavariable] = ACTIONS(1748), - [sym_raw_string_literal] = ACTIONS(1748), - [sym_float_literal] = ACTIONS(1748), + [ts_builtin_sym_end] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_macro_rules_BANG] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_u8] = ACTIONS(1748), + [anon_sym_i8] = ACTIONS(1748), + [anon_sym_u16] = ACTIONS(1748), + [anon_sym_i16] = ACTIONS(1748), + [anon_sym_u32] = ACTIONS(1748), + [anon_sym_i32] = ACTIONS(1748), + [anon_sym_u64] = ACTIONS(1748), + [anon_sym_i64] = ACTIONS(1748), + [anon_sym_u128] = ACTIONS(1748), + [anon_sym_i128] = ACTIONS(1748), + [anon_sym_isize] = ACTIONS(1748), + [anon_sym_usize] = ACTIONS(1748), + [anon_sym_f32] = ACTIONS(1748), + [anon_sym_f64] = ACTIONS(1748), + [anon_sym_bool] = ACTIONS(1748), + [anon_sym_str] = ACTIONS(1748), + [anon_sym_char] = ACTIONS(1748), + [anon_sym_SQUOTE] = ACTIONS(1748), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_fn] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_impl] = ACTIONS(1748), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_loop] = ACTIONS(1748), + [anon_sym_match] = ACTIONS(1748), + [anon_sym_mod] = ACTIONS(1748), + [anon_sym_pub] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_trait] = ACTIONS(1748), + [anon_sym_type] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_unsafe] = ACTIONS(1748), + [anon_sym_use] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_yield] = ACTIONS(1748), + [anon_sym_move] = ACTIONS(1748), + [sym_integer_literal] = ACTIONS(1746), + [aux_sym_string_literal_token1] = ACTIONS(1746), + [sym_char_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_crate] = ACTIONS(1748), + [sym_metavariable] = ACTIONS(1746), + [sym_raw_string_literal] = ACTIONS(1746), + [sym_float_literal] = ACTIONS(1746), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_identifier] = ACTIONS(1754), - [anon_sym_SEMI] = ACTIONS(1752), - [anon_sym_macro_rules_BANG] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_u8] = ACTIONS(1754), - [anon_sym_i8] = ACTIONS(1754), - [anon_sym_u16] = ACTIONS(1754), - [anon_sym_i16] = ACTIONS(1754), - [anon_sym_u32] = ACTIONS(1754), - [anon_sym_i32] = ACTIONS(1754), - [anon_sym_u64] = ACTIONS(1754), - [anon_sym_i64] = ACTIONS(1754), - [anon_sym_u128] = ACTIONS(1754), - [anon_sym_i128] = ACTIONS(1754), - [anon_sym_isize] = ACTIONS(1754), - [anon_sym_usize] = ACTIONS(1754), - [anon_sym_f32] = ACTIONS(1754), - [anon_sym_f64] = ACTIONS(1754), - [anon_sym_bool] = ACTIONS(1754), - [anon_sym_str] = ACTIONS(1754), - [anon_sym_char] = ACTIONS(1754), - [anon_sym_SQUOTE] = ACTIONS(1754), - [anon_sym_async] = ACTIONS(1754), - [anon_sym_break] = ACTIONS(1754), - [anon_sym_const] = ACTIONS(1754), - [anon_sym_continue] = ACTIONS(1754), - [anon_sym_default] = ACTIONS(1754), - [anon_sym_enum] = ACTIONS(1754), - [anon_sym_fn] = ACTIONS(1754), - [anon_sym_for] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1754), - [anon_sym_impl] = ACTIONS(1754), - [anon_sym_let] = ACTIONS(1754), - [anon_sym_loop] = ACTIONS(1754), - [anon_sym_match] = ACTIONS(1754), - [anon_sym_mod] = ACTIONS(1754), - [anon_sym_pub] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1754), - [anon_sym_static] = ACTIONS(1754), - [anon_sym_struct] = ACTIONS(1754), - [anon_sym_trait] = ACTIONS(1754), - [anon_sym_type] = ACTIONS(1754), - [anon_sym_union] = ACTIONS(1754), - [anon_sym_unsafe] = ACTIONS(1754), - [anon_sym_use] = ACTIONS(1754), - [anon_sym_while] = ACTIONS(1754), - [anon_sym_POUND] = ACTIONS(1752), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_COLON_COLON] = ACTIONS(1752), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_DOT_DOT] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_yield] = ACTIONS(1754), - [anon_sym_move] = ACTIONS(1754), - [sym_integer_literal] = ACTIONS(1752), - [aux_sym_string_literal_token1] = ACTIONS(1752), - [sym_char_literal] = ACTIONS(1752), - [anon_sym_true] = ACTIONS(1754), - [anon_sym_false] = ACTIONS(1754), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1754), - [sym_super] = ACTIONS(1754), - [sym_crate] = ACTIONS(1754), - [sym_metavariable] = ACTIONS(1752), - [sym_raw_string_literal] = ACTIONS(1752), - [sym_float_literal] = ACTIONS(1752), + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_macro_rules_BANG] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_u8] = ACTIONS(1752), + [anon_sym_i8] = ACTIONS(1752), + [anon_sym_u16] = ACTIONS(1752), + [anon_sym_i16] = ACTIONS(1752), + [anon_sym_u32] = ACTIONS(1752), + [anon_sym_i32] = ACTIONS(1752), + [anon_sym_u64] = ACTIONS(1752), + [anon_sym_i64] = ACTIONS(1752), + [anon_sym_u128] = ACTIONS(1752), + [anon_sym_i128] = ACTIONS(1752), + [anon_sym_isize] = ACTIONS(1752), + [anon_sym_usize] = ACTIONS(1752), + [anon_sym_f32] = ACTIONS(1752), + [anon_sym_f64] = ACTIONS(1752), + [anon_sym_bool] = ACTIONS(1752), + [anon_sym_str] = ACTIONS(1752), + [anon_sym_char] = ACTIONS(1752), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [anon_sym_fn] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_impl] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_loop] = ACTIONS(1752), + [anon_sym_match] = ACTIONS(1752), + [anon_sym_mod] = ACTIONS(1752), + [anon_sym_pub] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_struct] = ACTIONS(1752), + [anon_sym_trait] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_union] = ACTIONS(1752), + [anon_sym_unsafe] = ACTIONS(1752), + [anon_sym_use] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_POUND] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_extern] = ACTIONS(1752), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_DOT_DOT] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_move] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [aux_sym_string_literal_token1] = ACTIONS(1750), + [sym_char_literal] = ACTIONS(1750), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1750), + [sym_raw_string_literal] = ACTIONS(1750), + [sym_float_literal] = ACTIONS(1750), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1756), - [sym_identifier] = ACTIONS(1758), - [anon_sym_SEMI] = ACTIONS(1756), - [anon_sym_macro_rules_BANG] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1756), - [anon_sym_STAR] = ACTIONS(1756), - [anon_sym_u8] = ACTIONS(1758), - [anon_sym_i8] = ACTIONS(1758), - [anon_sym_u16] = ACTIONS(1758), - [anon_sym_i16] = ACTIONS(1758), - [anon_sym_u32] = ACTIONS(1758), - [anon_sym_i32] = ACTIONS(1758), - [anon_sym_u64] = ACTIONS(1758), - [anon_sym_i64] = ACTIONS(1758), - [anon_sym_u128] = ACTIONS(1758), - [anon_sym_i128] = ACTIONS(1758), - [anon_sym_isize] = ACTIONS(1758), - [anon_sym_usize] = ACTIONS(1758), - [anon_sym_f32] = ACTIONS(1758), - [anon_sym_f64] = ACTIONS(1758), - [anon_sym_bool] = ACTIONS(1758), - [anon_sym_str] = ACTIONS(1758), - [anon_sym_char] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_async] = ACTIONS(1758), - [anon_sym_break] = ACTIONS(1758), - [anon_sym_const] = ACTIONS(1758), - [anon_sym_continue] = ACTIONS(1758), - [anon_sym_default] = ACTIONS(1758), - [anon_sym_enum] = ACTIONS(1758), - [anon_sym_fn] = ACTIONS(1758), - [anon_sym_for] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1758), - [anon_sym_impl] = ACTIONS(1758), - [anon_sym_let] = ACTIONS(1758), - [anon_sym_loop] = ACTIONS(1758), - [anon_sym_match] = ACTIONS(1758), - [anon_sym_mod] = ACTIONS(1758), - [anon_sym_pub] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1758), - [anon_sym_static] = ACTIONS(1758), - [anon_sym_struct] = ACTIONS(1758), - [anon_sym_trait] = ACTIONS(1758), - [anon_sym_type] = ACTIONS(1758), - [anon_sym_union] = ACTIONS(1758), - [anon_sym_unsafe] = ACTIONS(1758), - [anon_sym_use] = ACTIONS(1758), - [anon_sym_while] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1756), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_COLON_COLON] = ACTIONS(1756), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_yield] = ACTIONS(1758), - [anon_sym_move] = ACTIONS(1758), - [sym_integer_literal] = ACTIONS(1756), - [aux_sym_string_literal_token1] = ACTIONS(1756), - [sym_char_literal] = ACTIONS(1756), - [anon_sym_true] = ACTIONS(1758), - [anon_sym_false] = ACTIONS(1758), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1758), - [sym_super] = ACTIONS(1758), - [sym_crate] = ACTIONS(1758), - [sym_metavariable] = ACTIONS(1756), - [sym_raw_string_literal] = ACTIONS(1756), - [sym_float_literal] = ACTIONS(1756), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_macro_rules_BANG] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_u8] = ACTIONS(1756), + [anon_sym_i8] = ACTIONS(1756), + [anon_sym_u16] = ACTIONS(1756), + [anon_sym_i16] = ACTIONS(1756), + [anon_sym_u32] = ACTIONS(1756), + [anon_sym_i32] = ACTIONS(1756), + [anon_sym_u64] = ACTIONS(1756), + [anon_sym_i64] = ACTIONS(1756), + [anon_sym_u128] = ACTIONS(1756), + [anon_sym_i128] = ACTIONS(1756), + [anon_sym_isize] = ACTIONS(1756), + [anon_sym_usize] = ACTIONS(1756), + [anon_sym_f32] = ACTIONS(1756), + [anon_sym_f64] = ACTIONS(1756), + [anon_sym_bool] = ACTIONS(1756), + [anon_sym_str] = ACTIONS(1756), + [anon_sym_char] = ACTIONS(1756), + [anon_sym_SQUOTE] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_fn] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_impl] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_loop] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_mod] = ACTIONS(1756), + [anon_sym_pub] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_trait] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_unsafe] = ACTIONS(1756), + [anon_sym_use] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_move] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [aux_sym_string_literal_token1] = ACTIONS(1754), + [sym_char_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1756), + [anon_sym_false] = ACTIONS(1756), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_crate] = ACTIONS(1756), + [sym_metavariable] = ACTIONS(1754), + [sym_raw_string_literal] = ACTIONS(1754), + [sym_float_literal] = ACTIONS(1754), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1760), - [sym_identifier] = ACTIONS(1762), - [anon_sym_SEMI] = ACTIONS(1760), - [anon_sym_macro_rules_BANG] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_RBRACE] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1760), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_u8] = ACTIONS(1762), - [anon_sym_i8] = ACTIONS(1762), - [anon_sym_u16] = ACTIONS(1762), - [anon_sym_i16] = ACTIONS(1762), - [anon_sym_u32] = ACTIONS(1762), - [anon_sym_i32] = ACTIONS(1762), - [anon_sym_u64] = ACTIONS(1762), - [anon_sym_i64] = ACTIONS(1762), - [anon_sym_u128] = ACTIONS(1762), - [anon_sym_i128] = ACTIONS(1762), - [anon_sym_isize] = ACTIONS(1762), - [anon_sym_usize] = ACTIONS(1762), - [anon_sym_f32] = ACTIONS(1762), - [anon_sym_f64] = ACTIONS(1762), - [anon_sym_bool] = ACTIONS(1762), - [anon_sym_str] = ACTIONS(1762), - [anon_sym_char] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1762), - [anon_sym_async] = ACTIONS(1762), - [anon_sym_break] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_continue] = ACTIONS(1762), - [anon_sym_default] = ACTIONS(1762), - [anon_sym_enum] = ACTIONS(1762), - [anon_sym_fn] = ACTIONS(1762), - [anon_sym_for] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1762), - [anon_sym_impl] = ACTIONS(1762), - [anon_sym_let] = ACTIONS(1762), - [anon_sym_loop] = ACTIONS(1762), - [anon_sym_match] = ACTIONS(1762), - [anon_sym_mod] = ACTIONS(1762), - [anon_sym_pub] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1762), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_struct] = ACTIONS(1762), - [anon_sym_trait] = ACTIONS(1762), - [anon_sym_type] = ACTIONS(1762), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_unsafe] = ACTIONS(1762), - [anon_sym_use] = ACTIONS(1762), - [anon_sym_while] = ACTIONS(1762), - [anon_sym_POUND] = ACTIONS(1760), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_COLON_COLON] = ACTIONS(1760), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_DOT_DOT] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_PIPE] = ACTIONS(1760), - [anon_sym_yield] = ACTIONS(1762), - [anon_sym_move] = ACTIONS(1762), - [sym_integer_literal] = ACTIONS(1760), - [aux_sym_string_literal_token1] = ACTIONS(1760), - [sym_char_literal] = ACTIONS(1760), - [anon_sym_true] = ACTIONS(1762), - [anon_sym_false] = ACTIONS(1762), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1762), - [sym_super] = ACTIONS(1762), - [sym_crate] = ACTIONS(1762), - [sym_metavariable] = ACTIONS(1760), - [sym_raw_string_literal] = ACTIONS(1760), - [sym_float_literal] = ACTIONS(1760), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_macro_rules_BANG] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_u8] = ACTIONS(1760), + [anon_sym_i8] = ACTIONS(1760), + [anon_sym_u16] = ACTIONS(1760), + [anon_sym_i16] = ACTIONS(1760), + [anon_sym_u32] = ACTIONS(1760), + [anon_sym_i32] = ACTIONS(1760), + [anon_sym_u64] = ACTIONS(1760), + [anon_sym_i64] = ACTIONS(1760), + [anon_sym_u128] = ACTIONS(1760), + [anon_sym_i128] = ACTIONS(1760), + [anon_sym_isize] = ACTIONS(1760), + [anon_sym_usize] = ACTIONS(1760), + [anon_sym_f32] = ACTIONS(1760), + [anon_sym_f64] = ACTIONS(1760), + [anon_sym_bool] = ACTIONS(1760), + [anon_sym_str] = ACTIONS(1760), + [anon_sym_char] = ACTIONS(1760), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_fn] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_impl] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1760), + [anon_sym_pub] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_trait] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_unsafe] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_POUND] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_COLON_COLON] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_DOT_DOT] = ACTIONS(1758), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_move] = ACTIONS(1760), + [sym_integer_literal] = ACTIONS(1758), + [aux_sym_string_literal_token1] = ACTIONS(1758), + [sym_char_literal] = ACTIONS(1758), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_crate] = ACTIONS(1760), + [sym_metavariable] = ACTIONS(1758), + [sym_raw_string_literal] = ACTIONS(1758), + [sym_float_literal] = ACTIONS(1758), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym_macro_rules_BANG] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1764), - [anon_sym_RBRACE] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1764), - [anon_sym_STAR] = ACTIONS(1764), - [anon_sym_u8] = ACTIONS(1766), - [anon_sym_i8] = ACTIONS(1766), - [anon_sym_u16] = ACTIONS(1766), - [anon_sym_i16] = ACTIONS(1766), - [anon_sym_u32] = ACTIONS(1766), - [anon_sym_i32] = ACTIONS(1766), - [anon_sym_u64] = ACTIONS(1766), - [anon_sym_i64] = ACTIONS(1766), - [anon_sym_u128] = ACTIONS(1766), - [anon_sym_i128] = ACTIONS(1766), - [anon_sym_isize] = ACTIONS(1766), - [anon_sym_usize] = ACTIONS(1766), - [anon_sym_f32] = ACTIONS(1766), - [anon_sym_f64] = ACTIONS(1766), - [anon_sym_bool] = ACTIONS(1766), - [anon_sym_str] = ACTIONS(1766), - [anon_sym_char] = ACTIONS(1766), - [anon_sym_SQUOTE] = ACTIONS(1766), - [anon_sym_async] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_default] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_impl] = ACTIONS(1766), - [anon_sym_let] = ACTIONS(1766), - [anon_sym_loop] = ACTIONS(1766), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_mod] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_static] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_trait] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_unsafe] = ACTIONS(1766), - [anon_sym_use] = ACTIONS(1766), - [anon_sym_while] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_DOT_DOT] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1766), - [anon_sym_move] = ACTIONS(1766), - [sym_integer_literal] = ACTIONS(1764), - [aux_sym_string_literal_token1] = ACTIONS(1764), - [sym_char_literal] = ACTIONS(1764), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1766), - [sym_super] = ACTIONS(1766), - [sym_crate] = ACTIONS(1766), - [sym_metavariable] = ACTIONS(1764), - [sym_raw_string_literal] = ACTIONS(1764), - [sym_float_literal] = ACTIONS(1764), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_macro_rules_BANG] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_u8] = ACTIONS(1764), + [anon_sym_i8] = ACTIONS(1764), + [anon_sym_u16] = ACTIONS(1764), + [anon_sym_i16] = ACTIONS(1764), + [anon_sym_u32] = ACTIONS(1764), + [anon_sym_i32] = ACTIONS(1764), + [anon_sym_u64] = ACTIONS(1764), + [anon_sym_i64] = ACTIONS(1764), + [anon_sym_u128] = ACTIONS(1764), + [anon_sym_i128] = ACTIONS(1764), + [anon_sym_isize] = ACTIONS(1764), + [anon_sym_usize] = ACTIONS(1764), + [anon_sym_f32] = ACTIONS(1764), + [anon_sym_f64] = ACTIONS(1764), + [anon_sym_bool] = ACTIONS(1764), + [anon_sym_str] = ACTIONS(1764), + [anon_sym_char] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_async] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [anon_sym_fn] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_impl] = ACTIONS(1764), + [anon_sym_let] = ACTIONS(1764), + [anon_sym_loop] = ACTIONS(1764), + [anon_sym_match] = ACTIONS(1764), + [anon_sym_mod] = ACTIONS(1764), + [anon_sym_pub] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1764), + [anon_sym_trait] = ACTIONS(1764), + [anon_sym_type] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1764), + [anon_sym_unsafe] = ACTIONS(1764), + [anon_sym_use] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_yield] = ACTIONS(1764), + [anon_sym_move] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [aux_sym_string_literal_token1] = ACTIONS(1762), + [sym_char_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_crate] = ACTIONS(1764), + [sym_metavariable] = ACTIONS(1762), + [sym_raw_string_literal] = ACTIONS(1762), + [sym_float_literal] = ACTIONS(1762), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(1768), - [sym_identifier] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1768), - [anon_sym_macro_rules_BANG] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1768), - [anon_sym_RBRACE] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1768), - [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_u8] = ACTIONS(1770), - [anon_sym_i8] = ACTIONS(1770), - [anon_sym_u16] = ACTIONS(1770), - [anon_sym_i16] = ACTIONS(1770), - [anon_sym_u32] = ACTIONS(1770), - [anon_sym_i32] = ACTIONS(1770), - [anon_sym_u64] = ACTIONS(1770), - [anon_sym_i64] = ACTIONS(1770), - [anon_sym_u128] = ACTIONS(1770), - [anon_sym_i128] = ACTIONS(1770), - [anon_sym_isize] = ACTIONS(1770), - [anon_sym_usize] = ACTIONS(1770), - [anon_sym_f32] = ACTIONS(1770), - [anon_sym_f64] = ACTIONS(1770), - [anon_sym_bool] = ACTIONS(1770), - [anon_sym_str] = ACTIONS(1770), - [anon_sym_char] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [anon_sym_async] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_default] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_impl] = ACTIONS(1770), - [anon_sym_let] = ACTIONS(1770), - [anon_sym_loop] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_mod] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_trait] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_use] = ACTIONS(1770), - [anon_sym_while] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1768), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_COLON_COLON] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_yield] = ACTIONS(1770), - [anon_sym_move] = ACTIONS(1770), - [sym_integer_literal] = ACTIONS(1768), - [aux_sym_string_literal_token1] = ACTIONS(1768), - [sym_char_literal] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1770), - [anon_sym_false] = ACTIONS(1770), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1770), - [sym_super] = ACTIONS(1770), - [sym_crate] = ACTIONS(1770), - [sym_metavariable] = ACTIONS(1768), - [sym_raw_string_literal] = ACTIONS(1768), - [sym_float_literal] = ACTIONS(1768), + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_macro_rules_BANG] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_u8] = ACTIONS(1768), + [anon_sym_i8] = ACTIONS(1768), + [anon_sym_u16] = ACTIONS(1768), + [anon_sym_i16] = ACTIONS(1768), + [anon_sym_u32] = ACTIONS(1768), + [anon_sym_i32] = ACTIONS(1768), + [anon_sym_u64] = ACTIONS(1768), + [anon_sym_i64] = ACTIONS(1768), + [anon_sym_u128] = ACTIONS(1768), + [anon_sym_i128] = ACTIONS(1768), + [anon_sym_isize] = ACTIONS(1768), + [anon_sym_usize] = ACTIONS(1768), + [anon_sym_f32] = ACTIONS(1768), + [anon_sym_f64] = ACTIONS(1768), + [anon_sym_bool] = ACTIONS(1768), + [anon_sym_str] = ACTIONS(1768), + [anon_sym_char] = ACTIONS(1768), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_async] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [anon_sym_fn] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_impl] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1768), + [anon_sym_pub] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(1768), + [anon_sym_trait] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_union] = ACTIONS(1768), + [anon_sym_unsafe] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_COLON_COLON] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1768), + [anon_sym_move] = ACTIONS(1768), + [sym_integer_literal] = ACTIONS(1766), + [aux_sym_string_literal_token1] = ACTIONS(1766), + [sym_char_literal] = ACTIONS(1766), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_crate] = ACTIONS(1768), + [sym_metavariable] = ACTIONS(1766), + [sym_raw_string_literal] = ACTIONS(1766), + [sym_float_literal] = ACTIONS(1766), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1772), - [sym_identifier] = ACTIONS(1774), - [anon_sym_SEMI] = ACTIONS(1772), - [anon_sym_macro_rules_BANG] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1772), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1772), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_u8] = ACTIONS(1774), - [anon_sym_i8] = ACTIONS(1774), - [anon_sym_u16] = ACTIONS(1774), - [anon_sym_i16] = ACTIONS(1774), - [anon_sym_u32] = ACTIONS(1774), - [anon_sym_i32] = ACTIONS(1774), - [anon_sym_u64] = ACTIONS(1774), - [anon_sym_i64] = ACTIONS(1774), - [anon_sym_u128] = ACTIONS(1774), - [anon_sym_i128] = ACTIONS(1774), - [anon_sym_isize] = ACTIONS(1774), - [anon_sym_usize] = ACTIONS(1774), - [anon_sym_f32] = ACTIONS(1774), - [anon_sym_f64] = ACTIONS(1774), - [anon_sym_bool] = ACTIONS(1774), - [anon_sym_str] = ACTIONS(1774), - [anon_sym_char] = ACTIONS(1774), - [anon_sym_SQUOTE] = ACTIONS(1774), - [anon_sym_async] = ACTIONS(1774), - [anon_sym_break] = ACTIONS(1774), - [anon_sym_const] = ACTIONS(1774), - [anon_sym_continue] = ACTIONS(1774), - [anon_sym_default] = ACTIONS(1774), - [anon_sym_enum] = ACTIONS(1774), - [anon_sym_fn] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1774), - [anon_sym_impl] = ACTIONS(1774), - [anon_sym_let] = ACTIONS(1774), - [anon_sym_loop] = ACTIONS(1774), - [anon_sym_match] = ACTIONS(1774), - [anon_sym_mod] = ACTIONS(1774), - [anon_sym_pub] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1774), - [anon_sym_static] = ACTIONS(1774), - [anon_sym_struct] = ACTIONS(1774), - [anon_sym_trait] = ACTIONS(1774), - [anon_sym_type] = ACTIONS(1774), - [anon_sym_union] = ACTIONS(1774), - [anon_sym_unsafe] = ACTIONS(1774), - [anon_sym_use] = ACTIONS(1774), - [anon_sym_while] = ACTIONS(1774), - [anon_sym_POUND] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_COLON_COLON] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_DOT_DOT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1774), - [anon_sym_move] = ACTIONS(1774), - [sym_integer_literal] = ACTIONS(1772), - [aux_sym_string_literal_token1] = ACTIONS(1772), - [sym_char_literal] = ACTIONS(1772), - [anon_sym_true] = ACTIONS(1774), - [anon_sym_false] = ACTIONS(1774), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1774), - [sym_super] = ACTIONS(1774), - [sym_crate] = ACTIONS(1774), - [sym_metavariable] = ACTIONS(1772), - [sym_raw_string_literal] = ACTIONS(1772), - [sym_float_literal] = ACTIONS(1772), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_macro_rules_BANG] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_u8] = ACTIONS(1772), + [anon_sym_i8] = ACTIONS(1772), + [anon_sym_u16] = ACTIONS(1772), + [anon_sym_i16] = ACTIONS(1772), + [anon_sym_u32] = ACTIONS(1772), + [anon_sym_i32] = ACTIONS(1772), + [anon_sym_u64] = ACTIONS(1772), + [anon_sym_i64] = ACTIONS(1772), + [anon_sym_u128] = ACTIONS(1772), + [anon_sym_i128] = ACTIONS(1772), + [anon_sym_isize] = ACTIONS(1772), + [anon_sym_usize] = ACTIONS(1772), + [anon_sym_f32] = ACTIONS(1772), + [anon_sym_f64] = ACTIONS(1772), + [anon_sym_bool] = ACTIONS(1772), + [anon_sym_str] = ACTIONS(1772), + [anon_sym_char] = ACTIONS(1772), + [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_fn] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_impl] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_mod] = ACTIONS(1772), + [anon_sym_pub] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_trait] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_unsafe] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_move] = ACTIONS(1772), + [sym_integer_literal] = ACTIONS(1770), + [aux_sym_string_literal_token1] = ACTIONS(1770), + [sym_char_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_crate] = ACTIONS(1772), + [sym_metavariable] = ACTIONS(1770), + [sym_raw_string_literal] = ACTIONS(1770), + [sym_float_literal] = ACTIONS(1770), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_identifier] = ACTIONS(1778), - [anon_sym_SEMI] = ACTIONS(1776), - [anon_sym_macro_rules_BANG] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_RBRACE] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_u8] = ACTIONS(1778), - [anon_sym_i8] = ACTIONS(1778), - [anon_sym_u16] = ACTIONS(1778), - [anon_sym_i16] = ACTIONS(1778), - [anon_sym_u32] = ACTIONS(1778), - [anon_sym_i32] = ACTIONS(1778), - [anon_sym_u64] = ACTIONS(1778), - [anon_sym_i64] = ACTIONS(1778), - [anon_sym_u128] = ACTIONS(1778), - [anon_sym_i128] = ACTIONS(1778), - [anon_sym_isize] = ACTIONS(1778), - [anon_sym_usize] = ACTIONS(1778), - [anon_sym_f32] = ACTIONS(1778), - [anon_sym_f64] = ACTIONS(1778), - [anon_sym_bool] = ACTIONS(1778), - [anon_sym_str] = ACTIONS(1778), - [anon_sym_char] = ACTIONS(1778), - [anon_sym_SQUOTE] = ACTIONS(1778), - [anon_sym_async] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1778), - [anon_sym_enum] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_impl] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_mod] = ACTIONS(1778), - [anon_sym_pub] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_static] = ACTIONS(1778), - [anon_sym_struct] = ACTIONS(1778), - [anon_sym_trait] = ACTIONS(1778), - [anon_sym_type] = ACTIONS(1778), - [anon_sym_union] = ACTIONS(1778), - [anon_sym_unsafe] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_POUND] = ACTIONS(1776), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_COLON_COLON] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_DOT_DOT] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_yield] = ACTIONS(1778), - [anon_sym_move] = ACTIONS(1778), - [sym_integer_literal] = ACTIONS(1776), - [aux_sym_string_literal_token1] = ACTIONS(1776), - [sym_char_literal] = ACTIONS(1776), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1778), - [sym_super] = ACTIONS(1778), - [sym_crate] = ACTIONS(1778), - [sym_metavariable] = ACTIONS(1776), - [sym_raw_string_literal] = ACTIONS(1776), - [sym_float_literal] = ACTIONS(1776), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_macro_rules_BANG] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_u8] = ACTIONS(1776), + [anon_sym_i8] = ACTIONS(1776), + [anon_sym_u16] = ACTIONS(1776), + [anon_sym_i16] = ACTIONS(1776), + [anon_sym_u32] = ACTIONS(1776), + [anon_sym_i32] = ACTIONS(1776), + [anon_sym_u64] = ACTIONS(1776), + [anon_sym_i64] = ACTIONS(1776), + [anon_sym_u128] = ACTIONS(1776), + [anon_sym_i128] = ACTIONS(1776), + [anon_sym_isize] = ACTIONS(1776), + [anon_sym_usize] = ACTIONS(1776), + [anon_sym_f32] = ACTIONS(1776), + [anon_sym_f64] = ACTIONS(1776), + [anon_sym_bool] = ACTIONS(1776), + [anon_sym_str] = ACTIONS(1776), + [anon_sym_char] = ACTIONS(1776), + [anon_sym_SQUOTE] = ACTIONS(1776), + [anon_sym_async] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_fn] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_impl] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_mod] = ACTIONS(1776), + [anon_sym_pub] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_trait] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_unsafe] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_yield] = ACTIONS(1776), + [anon_sym_move] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [aux_sym_string_literal_token1] = ACTIONS(1774), + [sym_char_literal] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_crate] = ACTIONS(1776), + [sym_metavariable] = ACTIONS(1774), + [sym_raw_string_literal] = ACTIONS(1774), + [sym_float_literal] = ACTIONS(1774), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1780), - [sym_identifier] = ACTIONS(1782), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_macro_rules_BANG] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_RBRACE] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_u8] = ACTIONS(1782), - [anon_sym_i8] = ACTIONS(1782), - [anon_sym_u16] = ACTIONS(1782), - [anon_sym_i16] = ACTIONS(1782), - [anon_sym_u32] = ACTIONS(1782), - [anon_sym_i32] = ACTIONS(1782), - [anon_sym_u64] = ACTIONS(1782), - [anon_sym_i64] = ACTIONS(1782), - [anon_sym_u128] = ACTIONS(1782), - [anon_sym_i128] = ACTIONS(1782), - [anon_sym_isize] = ACTIONS(1782), - [anon_sym_usize] = ACTIONS(1782), - [anon_sym_f32] = ACTIONS(1782), - [anon_sym_f64] = ACTIONS(1782), - [anon_sym_bool] = ACTIONS(1782), - [anon_sym_str] = ACTIONS(1782), - [anon_sym_char] = ACTIONS(1782), - [anon_sym_SQUOTE] = ACTIONS(1782), - [anon_sym_async] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_const] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_enum] = ACTIONS(1782), - [anon_sym_fn] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_impl] = ACTIONS(1782), - [anon_sym_let] = ACTIONS(1782), - [anon_sym_loop] = ACTIONS(1782), - [anon_sym_match] = ACTIONS(1782), - [anon_sym_mod] = ACTIONS(1782), - [anon_sym_pub] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_static] = ACTIONS(1782), - [anon_sym_struct] = ACTIONS(1782), - [anon_sym_trait] = ACTIONS(1782), - [anon_sym_type] = ACTIONS(1782), - [anon_sym_union] = ACTIONS(1782), - [anon_sym_unsafe] = ACTIONS(1782), - [anon_sym_use] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_POUND] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_COLON_COLON] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_DOT_DOT] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_yield] = ACTIONS(1782), - [anon_sym_move] = ACTIONS(1782), - [sym_integer_literal] = ACTIONS(1780), - [aux_sym_string_literal_token1] = ACTIONS(1780), - [sym_char_literal] = ACTIONS(1780), - [anon_sym_true] = ACTIONS(1782), - [anon_sym_false] = ACTIONS(1782), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1782), - [sym_super] = ACTIONS(1782), - [sym_crate] = ACTIONS(1782), - [sym_metavariable] = ACTIONS(1780), - [sym_raw_string_literal] = ACTIONS(1780), - [sym_float_literal] = ACTIONS(1780), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_macro_rules_BANG] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_u8] = ACTIONS(1780), + [anon_sym_i8] = ACTIONS(1780), + [anon_sym_u16] = ACTIONS(1780), + [anon_sym_i16] = ACTIONS(1780), + [anon_sym_u32] = ACTIONS(1780), + [anon_sym_i32] = ACTIONS(1780), + [anon_sym_u64] = ACTIONS(1780), + [anon_sym_i64] = ACTIONS(1780), + [anon_sym_u128] = ACTIONS(1780), + [anon_sym_i128] = ACTIONS(1780), + [anon_sym_isize] = ACTIONS(1780), + [anon_sym_usize] = ACTIONS(1780), + [anon_sym_f32] = ACTIONS(1780), + [anon_sym_f64] = ACTIONS(1780), + [anon_sym_bool] = ACTIONS(1780), + [anon_sym_str] = ACTIONS(1780), + [anon_sym_char] = ACTIONS(1780), + [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_fn] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_impl] = ACTIONS(1780), + [anon_sym_let] = ACTIONS(1780), + [anon_sym_loop] = ACTIONS(1780), + [anon_sym_match] = ACTIONS(1780), + [anon_sym_mod] = ACTIONS(1780), + [anon_sym_pub] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_trait] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_unsafe] = ACTIONS(1780), + [anon_sym_use] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_yield] = ACTIONS(1780), + [anon_sym_move] = ACTIONS(1780), + [sym_integer_literal] = ACTIONS(1778), + [aux_sym_string_literal_token1] = ACTIONS(1778), + [sym_char_literal] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_crate] = ACTIONS(1780), + [sym_metavariable] = ACTIONS(1778), + [sym_raw_string_literal] = ACTIONS(1778), + [sym_float_literal] = ACTIONS(1778), [sym_block_comment] = ACTIONS(3), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(1784), - [sym_identifier] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1784), - [anon_sym_macro_rules_BANG] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_u8] = ACTIONS(1786), - [anon_sym_i8] = ACTIONS(1786), - [anon_sym_u16] = ACTIONS(1786), - [anon_sym_i16] = ACTIONS(1786), - [anon_sym_u32] = ACTIONS(1786), - [anon_sym_i32] = ACTIONS(1786), - [anon_sym_u64] = ACTIONS(1786), - [anon_sym_i64] = ACTIONS(1786), - [anon_sym_u128] = ACTIONS(1786), - [anon_sym_i128] = ACTIONS(1786), - [anon_sym_isize] = ACTIONS(1786), - [anon_sym_usize] = ACTIONS(1786), - [anon_sym_f32] = ACTIONS(1786), - [anon_sym_f64] = ACTIONS(1786), - [anon_sym_bool] = ACTIONS(1786), - [anon_sym_str] = ACTIONS(1786), - [anon_sym_char] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1786), - [anon_sym_async] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_default] = ACTIONS(1786), - [anon_sym_enum] = ACTIONS(1786), - [anon_sym_fn] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_impl] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_mod] = ACTIONS(1786), - [anon_sym_pub] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_static] = ACTIONS(1786), - [anon_sym_struct] = ACTIONS(1786), - [anon_sym_trait] = ACTIONS(1786), - [anon_sym_type] = ACTIONS(1786), - [anon_sym_union] = ACTIONS(1786), - [anon_sym_unsafe] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_POUND] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_COLON_COLON] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_yield] = ACTIONS(1786), - [anon_sym_move] = ACTIONS(1786), - [sym_integer_literal] = ACTIONS(1784), - [aux_sym_string_literal_token1] = ACTIONS(1784), - [sym_char_literal] = ACTIONS(1784), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1786), - [sym_super] = ACTIONS(1786), - [sym_crate] = ACTIONS(1786), - [sym_metavariable] = ACTIONS(1784), - [sym_raw_string_literal] = ACTIONS(1784), - [sym_float_literal] = ACTIONS(1784), + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_macro_rules_BANG] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_SQUOTE] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_fn] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_impl] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_loop] = ACTIONS(1784), + [anon_sym_match] = ACTIONS(1784), + [anon_sym_mod] = ACTIONS(1784), + [anon_sym_pub] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_trait] = ACTIONS(1784), + [anon_sym_type] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_unsafe] = ACTIONS(1784), + [anon_sym_use] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_move] = ACTIONS(1784), + [sym_integer_literal] = ACTIONS(1782), + [aux_sym_string_literal_token1] = ACTIONS(1782), + [sym_char_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_crate] = ACTIONS(1784), + [sym_metavariable] = ACTIONS(1782), + [sym_raw_string_literal] = ACTIONS(1782), + [sym_float_literal] = ACTIONS(1782), [sym_block_comment] = ACTIONS(3), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_identifier] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1788), - [anon_sym_macro_rules_BANG] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_u8] = ACTIONS(1790), - [anon_sym_i8] = ACTIONS(1790), - [anon_sym_u16] = ACTIONS(1790), - [anon_sym_i16] = ACTIONS(1790), - [anon_sym_u32] = ACTIONS(1790), - [anon_sym_i32] = ACTIONS(1790), - [anon_sym_u64] = ACTIONS(1790), - [anon_sym_i64] = ACTIONS(1790), - [anon_sym_u128] = ACTIONS(1790), - [anon_sym_i128] = ACTIONS(1790), - [anon_sym_isize] = ACTIONS(1790), - [anon_sym_usize] = ACTIONS(1790), - [anon_sym_f32] = ACTIONS(1790), - [anon_sym_f64] = ACTIONS(1790), - [anon_sym_bool] = ACTIONS(1790), - [anon_sym_str] = ACTIONS(1790), - [anon_sym_char] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [anon_sym_async] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_default] = ACTIONS(1790), - [anon_sym_enum] = ACTIONS(1790), - [anon_sym_fn] = ACTIONS(1790), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_impl] = ACTIONS(1790), - [anon_sym_let] = ACTIONS(1790), - [anon_sym_loop] = ACTIONS(1790), - [anon_sym_match] = ACTIONS(1790), - [anon_sym_mod] = ACTIONS(1790), - [anon_sym_pub] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_struct] = ACTIONS(1790), - [anon_sym_trait] = ACTIONS(1790), - [anon_sym_type] = ACTIONS(1790), - [anon_sym_union] = ACTIONS(1790), - [anon_sym_unsafe] = ACTIONS(1790), - [anon_sym_use] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_yield] = ACTIONS(1790), - [anon_sym_move] = ACTIONS(1790), - [sym_integer_literal] = ACTIONS(1788), - [aux_sym_string_literal_token1] = ACTIONS(1788), - [sym_char_literal] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1790), - [sym_super] = ACTIONS(1790), - [sym_crate] = ACTIONS(1790), - [sym_metavariable] = ACTIONS(1788), - [sym_raw_string_literal] = ACTIONS(1788), - [sym_float_literal] = ACTIONS(1788), + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_macro_rules_BANG] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_u8] = ACTIONS(1788), + [anon_sym_i8] = ACTIONS(1788), + [anon_sym_u16] = ACTIONS(1788), + [anon_sym_i16] = ACTIONS(1788), + [anon_sym_u32] = ACTIONS(1788), + [anon_sym_i32] = ACTIONS(1788), + [anon_sym_u64] = ACTIONS(1788), + [anon_sym_i64] = ACTIONS(1788), + [anon_sym_u128] = ACTIONS(1788), + [anon_sym_i128] = ACTIONS(1788), + [anon_sym_isize] = ACTIONS(1788), + [anon_sym_usize] = ACTIONS(1788), + [anon_sym_f32] = ACTIONS(1788), + [anon_sym_f64] = ACTIONS(1788), + [anon_sym_bool] = ACTIONS(1788), + [anon_sym_str] = ACTIONS(1788), + [anon_sym_char] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_fn] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_impl] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_mod] = ACTIONS(1788), + [anon_sym_pub] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_trait] = ACTIONS(1788), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_unsafe] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_COLON_COLON] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_move] = ACTIONS(1788), + [sym_integer_literal] = ACTIONS(1786), + [aux_sym_string_literal_token1] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_crate] = ACTIONS(1788), + [sym_metavariable] = ACTIONS(1786), + [sym_raw_string_literal] = ACTIONS(1786), + [sym_float_literal] = ACTIONS(1786), [sym_block_comment] = ACTIONS(3), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(1792), - [sym_identifier] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_macro_rules_BANG] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_u8] = ACTIONS(1794), - [anon_sym_i8] = ACTIONS(1794), - [anon_sym_u16] = ACTIONS(1794), - [anon_sym_i16] = ACTIONS(1794), - [anon_sym_u32] = ACTIONS(1794), - [anon_sym_i32] = ACTIONS(1794), - [anon_sym_u64] = ACTIONS(1794), - [anon_sym_i64] = ACTIONS(1794), - [anon_sym_u128] = ACTIONS(1794), - [anon_sym_i128] = ACTIONS(1794), - [anon_sym_isize] = ACTIONS(1794), - [anon_sym_usize] = ACTIONS(1794), - [anon_sym_f32] = ACTIONS(1794), - [anon_sym_f64] = ACTIONS(1794), - [anon_sym_bool] = ACTIONS(1794), - [anon_sym_str] = ACTIONS(1794), - [anon_sym_char] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1794), - [anon_sym_async] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_fn] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_impl] = ACTIONS(1794), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_loop] = ACTIONS(1794), - [anon_sym_match] = ACTIONS(1794), - [anon_sym_mod] = ACTIONS(1794), - [anon_sym_pub] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_trait] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_unsafe] = ACTIONS(1794), - [anon_sym_use] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [anon_sym_POUND] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_yield] = ACTIONS(1794), - [anon_sym_move] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1792), - [aux_sym_string_literal_token1] = ACTIONS(1792), - [sym_char_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_crate] = ACTIONS(1794), - [sym_metavariable] = ACTIONS(1792), - [sym_raw_string_literal] = ACTIONS(1792), - [sym_float_literal] = ACTIONS(1792), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_macro_rules_BANG] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_u8] = ACTIONS(1792), + [anon_sym_i8] = ACTIONS(1792), + [anon_sym_u16] = ACTIONS(1792), + [anon_sym_i16] = ACTIONS(1792), + [anon_sym_u32] = ACTIONS(1792), + [anon_sym_i32] = ACTIONS(1792), + [anon_sym_u64] = ACTIONS(1792), + [anon_sym_i64] = ACTIONS(1792), + [anon_sym_u128] = ACTIONS(1792), + [anon_sym_i128] = ACTIONS(1792), + [anon_sym_isize] = ACTIONS(1792), + [anon_sym_usize] = ACTIONS(1792), + [anon_sym_f32] = ACTIONS(1792), + [anon_sym_f64] = ACTIONS(1792), + [anon_sym_bool] = ACTIONS(1792), + [anon_sym_str] = ACTIONS(1792), + [anon_sym_char] = ACTIONS(1792), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [anon_sym_fn] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_impl] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_loop] = ACTIONS(1792), + [anon_sym_match] = ACTIONS(1792), + [anon_sym_mod] = ACTIONS(1792), + [anon_sym_pub] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_struct] = ACTIONS(1792), + [anon_sym_trait] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_union] = ACTIONS(1792), + [anon_sym_unsafe] = ACTIONS(1792), + [anon_sym_use] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_DOT_DOT] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_move] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [aux_sym_string_literal_token1] = ACTIONS(1790), + [sym_char_literal] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1792), + [anon_sym_false] = ACTIONS(1792), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_crate] = ACTIONS(1792), + [sym_metavariable] = ACTIONS(1790), + [sym_raw_string_literal] = ACTIONS(1790), + [sym_float_literal] = ACTIONS(1790), [sym_block_comment] = ACTIONS(3), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_macro_rules_BANG] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_u8] = ACTIONS(1798), - [anon_sym_i8] = ACTIONS(1798), - [anon_sym_u16] = ACTIONS(1798), - [anon_sym_i16] = ACTIONS(1798), - [anon_sym_u32] = ACTIONS(1798), - [anon_sym_i32] = ACTIONS(1798), - [anon_sym_u64] = ACTIONS(1798), - [anon_sym_i64] = ACTIONS(1798), - [anon_sym_u128] = ACTIONS(1798), - [anon_sym_i128] = ACTIONS(1798), - [anon_sym_isize] = ACTIONS(1798), - [anon_sym_usize] = ACTIONS(1798), - [anon_sym_f32] = ACTIONS(1798), - [anon_sym_f64] = ACTIONS(1798), - [anon_sym_bool] = ACTIONS(1798), - [anon_sym_str] = ACTIONS(1798), - [anon_sym_char] = ACTIONS(1798), - [anon_sym_SQUOTE] = ACTIONS(1798), - [anon_sym_async] = ACTIONS(1798), - [anon_sym_break] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(1798), - [anon_sym_continue] = ACTIONS(1798), - [anon_sym_default] = ACTIONS(1798), - [anon_sym_enum] = ACTIONS(1798), - [anon_sym_fn] = ACTIONS(1798), - [anon_sym_for] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1798), - [anon_sym_impl] = ACTIONS(1798), - [anon_sym_let] = ACTIONS(1798), - [anon_sym_loop] = ACTIONS(1798), - [anon_sym_match] = ACTIONS(1798), - [anon_sym_mod] = ACTIONS(1798), - [anon_sym_pub] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1798), - [anon_sym_static] = ACTIONS(1798), - [anon_sym_struct] = ACTIONS(1798), - [anon_sym_trait] = ACTIONS(1798), - [anon_sym_type] = ACTIONS(1798), - [anon_sym_union] = ACTIONS(1798), - [anon_sym_unsafe] = ACTIONS(1798), - [anon_sym_use] = ACTIONS(1798), - [anon_sym_while] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1796), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_yield] = ACTIONS(1798), - [anon_sym_move] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [aux_sym_string_literal_token1] = ACTIONS(1796), - [sym_char_literal] = ACTIONS(1796), - [anon_sym_true] = ACTIONS(1798), - [anon_sym_false] = ACTIONS(1798), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1798), - [sym_super] = ACTIONS(1798), - [sym_crate] = ACTIONS(1798), - [sym_metavariable] = ACTIONS(1796), - [sym_raw_string_literal] = ACTIONS(1796), - [sym_float_literal] = ACTIONS(1796), + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_macro_rules_BANG] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_fn] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_impl] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_mod] = ACTIONS(1796), + [anon_sym_pub] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_trait] = ACTIONS(1796), + [anon_sym_type] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_unsafe] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_COLON_COLON] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_yield] = ACTIONS(1796), + [anon_sym_move] = ACTIONS(1796), + [sym_integer_literal] = ACTIONS(1794), + [aux_sym_string_literal_token1] = ACTIONS(1794), + [sym_char_literal] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1794), + [sym_raw_string_literal] = ACTIONS(1794), + [sym_float_literal] = ACTIONS(1794), [sym_block_comment] = ACTIONS(3), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_identifier] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_macro_rules_BANG] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1800), - [anon_sym_RBRACE] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1800), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_u8] = ACTIONS(1802), - [anon_sym_i8] = ACTIONS(1802), - [anon_sym_u16] = ACTIONS(1802), - [anon_sym_i16] = ACTIONS(1802), - [anon_sym_u32] = ACTIONS(1802), - [anon_sym_i32] = ACTIONS(1802), - [anon_sym_u64] = ACTIONS(1802), - [anon_sym_i64] = ACTIONS(1802), - [anon_sym_u128] = ACTIONS(1802), - [anon_sym_i128] = ACTIONS(1802), - [anon_sym_isize] = ACTIONS(1802), - [anon_sym_usize] = ACTIONS(1802), - [anon_sym_f32] = ACTIONS(1802), - [anon_sym_f64] = ACTIONS(1802), - [anon_sym_bool] = ACTIONS(1802), - [anon_sym_str] = ACTIONS(1802), - [anon_sym_char] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1802), - [anon_sym_async] = ACTIONS(1802), - [anon_sym_break] = ACTIONS(1802), - [anon_sym_const] = ACTIONS(1802), - [anon_sym_continue] = ACTIONS(1802), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_enum] = ACTIONS(1802), - [anon_sym_fn] = ACTIONS(1802), - [anon_sym_for] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1802), - [anon_sym_impl] = ACTIONS(1802), - [anon_sym_let] = ACTIONS(1802), - [anon_sym_loop] = ACTIONS(1802), - [anon_sym_match] = ACTIONS(1802), - [anon_sym_mod] = ACTIONS(1802), - [anon_sym_pub] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1802), - [anon_sym_static] = ACTIONS(1802), - [anon_sym_struct] = ACTIONS(1802), - [anon_sym_trait] = ACTIONS(1802), - [anon_sym_type] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_unsafe] = ACTIONS(1802), - [anon_sym_use] = ACTIONS(1802), - [anon_sym_while] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1800), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_COLON_COLON] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_yield] = ACTIONS(1802), - [anon_sym_move] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1800), - [aux_sym_string_literal_token1] = ACTIONS(1800), - [sym_char_literal] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1802), - [sym_super] = ACTIONS(1802), - [sym_crate] = ACTIONS(1802), - [sym_metavariable] = ACTIONS(1800), - [sym_raw_string_literal] = ACTIONS(1800), - [sym_float_literal] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_macro_rules_BANG] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_SQUOTE] = ACTIONS(1800), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_fn] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_impl] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1800), + [anon_sym_match] = ACTIONS(1800), + [anon_sym_mod] = ACTIONS(1800), + [anon_sym_pub] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_trait] = ACTIONS(1800), + [anon_sym_type] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_unsafe] = ACTIONS(1800), + [anon_sym_use] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1800), + [anon_sym_move] = ACTIONS(1800), + [sym_integer_literal] = ACTIONS(1798), + [aux_sym_string_literal_token1] = ACTIONS(1798), + [sym_char_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_crate] = ACTIONS(1800), + [sym_metavariable] = ACTIONS(1798), + [sym_raw_string_literal] = ACTIONS(1798), + [sym_float_literal] = ACTIONS(1798), [sym_block_comment] = ACTIONS(3), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(1804), - [sym_identifier] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(1804), - [anon_sym_macro_rules_BANG] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1804), - [anon_sym_RBRACE] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_u8] = ACTIONS(1806), - [anon_sym_i8] = ACTIONS(1806), - [anon_sym_u16] = ACTIONS(1806), - [anon_sym_i16] = ACTIONS(1806), - [anon_sym_u32] = ACTIONS(1806), - [anon_sym_i32] = ACTIONS(1806), - [anon_sym_u64] = ACTIONS(1806), - [anon_sym_i64] = ACTIONS(1806), - [anon_sym_u128] = ACTIONS(1806), - [anon_sym_i128] = ACTIONS(1806), - [anon_sym_isize] = ACTIONS(1806), - [anon_sym_usize] = ACTIONS(1806), - [anon_sym_f32] = ACTIONS(1806), - [anon_sym_f64] = ACTIONS(1806), - [anon_sym_bool] = ACTIONS(1806), - [anon_sym_str] = ACTIONS(1806), - [anon_sym_char] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1806), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_break] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1806), - [anon_sym_continue] = ACTIONS(1806), - [anon_sym_default] = ACTIONS(1806), - [anon_sym_enum] = ACTIONS(1806), - [anon_sym_fn] = ACTIONS(1806), - [anon_sym_for] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1806), - [anon_sym_impl] = ACTIONS(1806), - [anon_sym_let] = ACTIONS(1806), - [anon_sym_loop] = ACTIONS(1806), - [anon_sym_match] = ACTIONS(1806), - [anon_sym_mod] = ACTIONS(1806), - [anon_sym_pub] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1806), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_struct] = ACTIONS(1806), - [anon_sym_trait] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_union] = ACTIONS(1806), - [anon_sym_unsafe] = ACTIONS(1806), - [anon_sym_use] = ACTIONS(1806), - [anon_sym_while] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1804), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1804), - [anon_sym_COLON_COLON] = ACTIONS(1804), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_DOT_DOT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1806), - [anon_sym_move] = ACTIONS(1806), - [sym_integer_literal] = ACTIONS(1804), - [aux_sym_string_literal_token1] = ACTIONS(1804), - [sym_char_literal] = ACTIONS(1804), - [anon_sym_true] = ACTIONS(1806), - [anon_sym_false] = ACTIONS(1806), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_crate] = ACTIONS(1806), - [sym_metavariable] = ACTIONS(1804), - [sym_raw_string_literal] = ACTIONS(1804), - [sym_float_literal] = ACTIONS(1804), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_macro_rules_BANG] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_u8] = ACTIONS(1804), + [anon_sym_i8] = ACTIONS(1804), + [anon_sym_u16] = ACTIONS(1804), + [anon_sym_i16] = ACTIONS(1804), + [anon_sym_u32] = ACTIONS(1804), + [anon_sym_i32] = ACTIONS(1804), + [anon_sym_u64] = ACTIONS(1804), + [anon_sym_i64] = ACTIONS(1804), + [anon_sym_u128] = ACTIONS(1804), + [anon_sym_i128] = ACTIONS(1804), + [anon_sym_isize] = ACTIONS(1804), + [anon_sym_usize] = ACTIONS(1804), + [anon_sym_f32] = ACTIONS(1804), + [anon_sym_f64] = ACTIONS(1804), + [anon_sym_bool] = ACTIONS(1804), + [anon_sym_str] = ACTIONS(1804), + [anon_sym_char] = ACTIONS(1804), + [anon_sym_SQUOTE] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [anon_sym_fn] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_impl] = ACTIONS(1804), + [anon_sym_let] = ACTIONS(1804), + [anon_sym_loop] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_mod] = ACTIONS(1804), + [anon_sym_pub] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_struct] = ACTIONS(1804), + [anon_sym_trait] = ACTIONS(1804), + [anon_sym_type] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_unsafe] = ACTIONS(1804), + [anon_sym_use] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1804), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1804), + [anon_sym_move] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [aux_sym_string_literal_token1] = ACTIONS(1802), + [sym_char_literal] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_crate] = ACTIONS(1804), + [sym_metavariable] = ACTIONS(1802), + [sym_raw_string_literal] = ACTIONS(1802), + [sym_float_literal] = ACTIONS(1802), [sym_block_comment] = ACTIONS(3), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(1808), - [sym_identifier] = ACTIONS(1810), - [anon_sym_SEMI] = ACTIONS(1808), - [anon_sym_macro_rules_BANG] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_RBRACE] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_u8] = ACTIONS(1810), - [anon_sym_i8] = ACTIONS(1810), - [anon_sym_u16] = ACTIONS(1810), - [anon_sym_i16] = ACTIONS(1810), - [anon_sym_u32] = ACTIONS(1810), - [anon_sym_i32] = ACTIONS(1810), - [anon_sym_u64] = ACTIONS(1810), - [anon_sym_i64] = ACTIONS(1810), - [anon_sym_u128] = ACTIONS(1810), - [anon_sym_i128] = ACTIONS(1810), - [anon_sym_isize] = ACTIONS(1810), - [anon_sym_usize] = ACTIONS(1810), - [anon_sym_f32] = ACTIONS(1810), - [anon_sym_f64] = ACTIONS(1810), - [anon_sym_bool] = ACTIONS(1810), - [anon_sym_str] = ACTIONS(1810), - [anon_sym_char] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1810), - [anon_sym_async] = ACTIONS(1810), - [anon_sym_break] = ACTIONS(1810), - [anon_sym_const] = ACTIONS(1810), - [anon_sym_continue] = ACTIONS(1810), - [anon_sym_default] = ACTIONS(1810), - [anon_sym_enum] = ACTIONS(1810), - [anon_sym_fn] = ACTIONS(1810), - [anon_sym_for] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_impl] = ACTIONS(1810), - [anon_sym_let] = ACTIONS(1810), - [anon_sym_loop] = ACTIONS(1810), - [anon_sym_match] = ACTIONS(1810), - [anon_sym_mod] = ACTIONS(1810), - [anon_sym_pub] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1810), - [anon_sym_static] = ACTIONS(1810), - [anon_sym_struct] = ACTIONS(1810), - [anon_sym_trait] = ACTIONS(1810), - [anon_sym_type] = ACTIONS(1810), - [anon_sym_union] = ACTIONS(1810), - [anon_sym_unsafe] = ACTIONS(1810), - [anon_sym_use] = ACTIONS(1810), - [anon_sym_while] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1808), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1810), - [anon_sym_move] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [aux_sym_string_literal_token1] = ACTIONS(1808), - [sym_char_literal] = ACTIONS(1808), - [anon_sym_true] = ACTIONS(1810), - [anon_sym_false] = ACTIONS(1810), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1810), - [sym_super] = ACTIONS(1810), - [sym_crate] = ACTIONS(1810), - [sym_metavariable] = ACTIONS(1808), - [sym_raw_string_literal] = ACTIONS(1808), - [sym_float_literal] = ACTIONS(1808), + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_macro_rules_BANG] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_u8] = ACTIONS(1808), + [anon_sym_i8] = ACTIONS(1808), + [anon_sym_u16] = ACTIONS(1808), + [anon_sym_i16] = ACTIONS(1808), + [anon_sym_u32] = ACTIONS(1808), + [anon_sym_i32] = ACTIONS(1808), + [anon_sym_u64] = ACTIONS(1808), + [anon_sym_i64] = ACTIONS(1808), + [anon_sym_u128] = ACTIONS(1808), + [anon_sym_i128] = ACTIONS(1808), + [anon_sym_isize] = ACTIONS(1808), + [anon_sym_usize] = ACTIONS(1808), + [anon_sym_f32] = ACTIONS(1808), + [anon_sym_f64] = ACTIONS(1808), + [anon_sym_bool] = ACTIONS(1808), + [anon_sym_str] = ACTIONS(1808), + [anon_sym_char] = ACTIONS(1808), + [anon_sym_SQUOTE] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_fn] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_impl] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_loop] = ACTIONS(1808), + [anon_sym_match] = ACTIONS(1808), + [anon_sym_mod] = ACTIONS(1808), + [anon_sym_pub] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_trait] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_unsafe] = ACTIONS(1808), + [anon_sym_use] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_move] = ACTIONS(1808), + [sym_integer_literal] = ACTIONS(1806), + [aux_sym_string_literal_token1] = ACTIONS(1806), + [sym_char_literal] = ACTIONS(1806), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1806), + [sym_raw_string_literal] = ACTIONS(1806), + [sym_float_literal] = ACTIONS(1806), [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_identifier] = ACTIONS(1814), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_macro_rules_BANG] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_u8] = ACTIONS(1814), - [anon_sym_i8] = ACTIONS(1814), - [anon_sym_u16] = ACTIONS(1814), - [anon_sym_i16] = ACTIONS(1814), - [anon_sym_u32] = ACTIONS(1814), - [anon_sym_i32] = ACTIONS(1814), - [anon_sym_u64] = ACTIONS(1814), - [anon_sym_i64] = ACTIONS(1814), - [anon_sym_u128] = ACTIONS(1814), - [anon_sym_i128] = ACTIONS(1814), - [anon_sym_isize] = ACTIONS(1814), - [anon_sym_usize] = ACTIONS(1814), - [anon_sym_f32] = ACTIONS(1814), - [anon_sym_f64] = ACTIONS(1814), - [anon_sym_bool] = ACTIONS(1814), - [anon_sym_str] = ACTIONS(1814), - [anon_sym_char] = ACTIONS(1814), - [anon_sym_SQUOTE] = ACTIONS(1814), - [anon_sym_async] = ACTIONS(1814), - [anon_sym_break] = ACTIONS(1814), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_continue] = ACTIONS(1814), - [anon_sym_default] = ACTIONS(1814), - [anon_sym_enum] = ACTIONS(1814), - [anon_sym_fn] = ACTIONS(1814), - [anon_sym_for] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1814), - [anon_sym_impl] = ACTIONS(1814), - [anon_sym_let] = ACTIONS(1814), - [anon_sym_loop] = ACTIONS(1814), - [anon_sym_match] = ACTIONS(1814), - [anon_sym_mod] = ACTIONS(1814), - [anon_sym_pub] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1814), - [anon_sym_static] = ACTIONS(1814), - [anon_sym_struct] = ACTIONS(1814), - [anon_sym_trait] = ACTIONS(1814), - [anon_sym_type] = ACTIONS(1814), - [anon_sym_union] = ACTIONS(1814), - [anon_sym_unsafe] = ACTIONS(1814), - [anon_sym_use] = ACTIONS(1814), - [anon_sym_while] = ACTIONS(1814), - [anon_sym_POUND] = ACTIONS(1812), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_COLON_COLON] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_DOT_DOT] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1814), - [anon_sym_move] = ACTIONS(1814), - [sym_integer_literal] = ACTIONS(1812), - [aux_sym_string_literal_token1] = ACTIONS(1812), - [sym_char_literal] = ACTIONS(1812), - [anon_sym_true] = ACTIONS(1814), - [anon_sym_false] = ACTIONS(1814), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1814), - [sym_super] = ACTIONS(1814), - [sym_crate] = ACTIONS(1814), - [sym_metavariable] = ACTIONS(1812), - [sym_raw_string_literal] = ACTIONS(1812), - [sym_float_literal] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_macro_rules_BANG] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_u8] = ACTIONS(1812), + [anon_sym_i8] = ACTIONS(1812), + [anon_sym_u16] = ACTIONS(1812), + [anon_sym_i16] = ACTIONS(1812), + [anon_sym_u32] = ACTIONS(1812), + [anon_sym_i32] = ACTIONS(1812), + [anon_sym_u64] = ACTIONS(1812), + [anon_sym_i64] = ACTIONS(1812), + [anon_sym_u128] = ACTIONS(1812), + [anon_sym_i128] = ACTIONS(1812), + [anon_sym_isize] = ACTIONS(1812), + [anon_sym_usize] = ACTIONS(1812), + [anon_sym_f32] = ACTIONS(1812), + [anon_sym_f64] = ACTIONS(1812), + [anon_sym_bool] = ACTIONS(1812), + [anon_sym_str] = ACTIONS(1812), + [anon_sym_char] = ACTIONS(1812), + [anon_sym_SQUOTE] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_fn] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_impl] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_loop] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1812), + [anon_sym_mod] = ACTIONS(1812), + [anon_sym_pub] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_trait] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [anon_sym_unsafe] = ACTIONS(1812), + [anon_sym_use] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_move] = ACTIONS(1812), + [sym_integer_literal] = ACTIONS(1810), + [aux_sym_string_literal_token1] = ACTIONS(1810), + [sym_char_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1812), + [anon_sym_false] = ACTIONS(1812), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_crate] = ACTIONS(1812), + [sym_metavariable] = ACTIONS(1810), + [sym_raw_string_literal] = ACTIONS(1810), + [sym_float_literal] = ACTIONS(1810), [sym_block_comment] = ACTIONS(3), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1816), - [sym_identifier] = ACTIONS(1818), - [anon_sym_SEMI] = ACTIONS(1816), - [anon_sym_macro_rules_BANG] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1816), - [anon_sym_RBRACE] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_u8] = ACTIONS(1818), - [anon_sym_i8] = ACTIONS(1818), - [anon_sym_u16] = ACTIONS(1818), - [anon_sym_i16] = ACTIONS(1818), - [anon_sym_u32] = ACTIONS(1818), - [anon_sym_i32] = ACTIONS(1818), - [anon_sym_u64] = ACTIONS(1818), - [anon_sym_i64] = ACTIONS(1818), - [anon_sym_u128] = ACTIONS(1818), - [anon_sym_i128] = ACTIONS(1818), - [anon_sym_isize] = ACTIONS(1818), - [anon_sym_usize] = ACTIONS(1818), - [anon_sym_f32] = ACTIONS(1818), - [anon_sym_f64] = ACTIONS(1818), - [anon_sym_bool] = ACTIONS(1818), - [anon_sym_str] = ACTIONS(1818), - [anon_sym_char] = ACTIONS(1818), - [anon_sym_SQUOTE] = ACTIONS(1818), - [anon_sym_async] = ACTIONS(1818), - [anon_sym_break] = ACTIONS(1818), - [anon_sym_const] = ACTIONS(1818), - [anon_sym_continue] = ACTIONS(1818), - [anon_sym_default] = ACTIONS(1818), - [anon_sym_enum] = ACTIONS(1818), - [anon_sym_fn] = ACTIONS(1818), - [anon_sym_for] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1818), - [anon_sym_impl] = ACTIONS(1818), - [anon_sym_let] = ACTIONS(1818), - [anon_sym_loop] = ACTIONS(1818), - [anon_sym_match] = ACTIONS(1818), - [anon_sym_mod] = ACTIONS(1818), - [anon_sym_pub] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1818), - [anon_sym_static] = ACTIONS(1818), - [anon_sym_struct] = ACTIONS(1818), - [anon_sym_trait] = ACTIONS(1818), - [anon_sym_type] = ACTIONS(1818), - [anon_sym_union] = ACTIONS(1818), - [anon_sym_unsafe] = ACTIONS(1818), - [anon_sym_use] = ACTIONS(1818), - [anon_sym_while] = ACTIONS(1818), - [anon_sym_POUND] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_yield] = ACTIONS(1818), - [anon_sym_move] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [aux_sym_string_literal_token1] = ACTIONS(1816), - [sym_char_literal] = ACTIONS(1816), - [anon_sym_true] = ACTIONS(1818), - [anon_sym_false] = ACTIONS(1818), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1818), - [sym_super] = ACTIONS(1818), - [sym_crate] = ACTIONS(1818), - [sym_metavariable] = ACTIONS(1816), - [sym_raw_string_literal] = ACTIONS(1816), - [sym_float_literal] = ACTIONS(1816), + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_macro_rules_BANG] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_u8] = ACTIONS(1816), + [anon_sym_i8] = ACTIONS(1816), + [anon_sym_u16] = ACTIONS(1816), + [anon_sym_i16] = ACTIONS(1816), + [anon_sym_u32] = ACTIONS(1816), + [anon_sym_i32] = ACTIONS(1816), + [anon_sym_u64] = ACTIONS(1816), + [anon_sym_i64] = ACTIONS(1816), + [anon_sym_u128] = ACTIONS(1816), + [anon_sym_i128] = ACTIONS(1816), + [anon_sym_isize] = ACTIONS(1816), + [anon_sym_usize] = ACTIONS(1816), + [anon_sym_f32] = ACTIONS(1816), + [anon_sym_f64] = ACTIONS(1816), + [anon_sym_bool] = ACTIONS(1816), + [anon_sym_str] = ACTIONS(1816), + [anon_sym_char] = ACTIONS(1816), + [anon_sym_SQUOTE] = ACTIONS(1816), + [anon_sym_async] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_fn] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_impl] = ACTIONS(1816), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_loop] = ACTIONS(1816), + [anon_sym_match] = ACTIONS(1816), + [anon_sym_mod] = ACTIONS(1816), + [anon_sym_pub] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_trait] = ACTIONS(1816), + [anon_sym_type] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_unsafe] = ACTIONS(1816), + [anon_sym_use] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_DOT_DOT] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_yield] = ACTIONS(1816), + [anon_sym_move] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [aux_sym_string_literal_token1] = ACTIONS(1814), + [sym_char_literal] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1816), + [anon_sym_false] = ACTIONS(1816), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_crate] = ACTIONS(1816), + [sym_metavariable] = ACTIONS(1814), + [sym_raw_string_literal] = ACTIONS(1814), + [sym_float_literal] = ACTIONS(1814), [sym_block_comment] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1820), - [sym_identifier] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_macro_rules_BANG] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1820), - [anon_sym_RBRACE] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_u8] = ACTIONS(1822), - [anon_sym_i8] = ACTIONS(1822), - [anon_sym_u16] = ACTIONS(1822), - [anon_sym_i16] = ACTIONS(1822), - [anon_sym_u32] = ACTIONS(1822), - [anon_sym_i32] = ACTIONS(1822), - [anon_sym_u64] = ACTIONS(1822), - [anon_sym_i64] = ACTIONS(1822), - [anon_sym_u128] = ACTIONS(1822), - [anon_sym_i128] = ACTIONS(1822), - [anon_sym_isize] = ACTIONS(1822), - [anon_sym_usize] = ACTIONS(1822), - [anon_sym_f32] = ACTIONS(1822), - [anon_sym_f64] = ACTIONS(1822), - [anon_sym_bool] = ACTIONS(1822), - [anon_sym_str] = ACTIONS(1822), - [anon_sym_char] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_async] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_default] = ACTIONS(1822), - [anon_sym_enum] = ACTIONS(1822), - [anon_sym_fn] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_impl] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_loop] = ACTIONS(1822), - [anon_sym_match] = ACTIONS(1822), - [anon_sym_mod] = ACTIONS(1822), - [anon_sym_pub] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_static] = ACTIONS(1822), - [anon_sym_struct] = ACTIONS(1822), - [anon_sym_trait] = ACTIONS(1822), - [anon_sym_type] = ACTIONS(1822), - [anon_sym_union] = ACTIONS(1822), - [anon_sym_unsafe] = ACTIONS(1822), - [anon_sym_use] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(1820), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_COLON_COLON] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_DOT_DOT] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_yield] = ACTIONS(1822), - [anon_sym_move] = ACTIONS(1822), - [sym_integer_literal] = ACTIONS(1820), - [aux_sym_string_literal_token1] = ACTIONS(1820), - [sym_char_literal] = ACTIONS(1820), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1822), - [sym_super] = ACTIONS(1822), - [sym_crate] = ACTIONS(1822), - [sym_metavariable] = ACTIONS(1820), - [sym_raw_string_literal] = ACTIONS(1820), - [sym_float_literal] = ACTIONS(1820), + [ts_builtin_sym_end] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_macro_rules_BANG] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_u8] = ACTIONS(1820), + [anon_sym_i8] = ACTIONS(1820), + [anon_sym_u16] = ACTIONS(1820), + [anon_sym_i16] = ACTIONS(1820), + [anon_sym_u32] = ACTIONS(1820), + [anon_sym_i32] = ACTIONS(1820), + [anon_sym_u64] = ACTIONS(1820), + [anon_sym_i64] = ACTIONS(1820), + [anon_sym_u128] = ACTIONS(1820), + [anon_sym_i128] = ACTIONS(1820), + [anon_sym_isize] = ACTIONS(1820), + [anon_sym_usize] = ACTIONS(1820), + [anon_sym_f32] = ACTIONS(1820), + [anon_sym_f64] = ACTIONS(1820), + [anon_sym_bool] = ACTIONS(1820), + [anon_sym_str] = ACTIONS(1820), + [anon_sym_char] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_async] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_fn] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_impl] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1820), + [anon_sym_pub] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_struct] = ACTIONS(1820), + [anon_sym_trait] = ACTIONS(1820), + [anon_sym_type] = ACTIONS(1820), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_unsafe] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_COLON_COLON] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_yield] = ACTIONS(1820), + [anon_sym_move] = ACTIONS(1820), + [sym_integer_literal] = ACTIONS(1818), + [aux_sym_string_literal_token1] = ACTIONS(1818), + [sym_char_literal] = ACTIONS(1818), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_crate] = ACTIONS(1820), + [sym_metavariable] = ACTIONS(1818), + [sym_raw_string_literal] = ACTIONS(1818), + [sym_float_literal] = ACTIONS(1818), [sym_block_comment] = ACTIONS(3), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_identifier] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_macro_rules_BANG] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_u8] = ACTIONS(1826), - [anon_sym_i8] = ACTIONS(1826), - [anon_sym_u16] = ACTIONS(1826), - [anon_sym_i16] = ACTIONS(1826), - [anon_sym_u32] = ACTIONS(1826), - [anon_sym_i32] = ACTIONS(1826), - [anon_sym_u64] = ACTIONS(1826), - [anon_sym_i64] = ACTIONS(1826), - [anon_sym_u128] = ACTIONS(1826), - [anon_sym_i128] = ACTIONS(1826), - [anon_sym_isize] = ACTIONS(1826), - [anon_sym_usize] = ACTIONS(1826), - [anon_sym_f32] = ACTIONS(1826), - [anon_sym_f64] = ACTIONS(1826), - [anon_sym_bool] = ACTIONS(1826), - [anon_sym_str] = ACTIONS(1826), - [anon_sym_char] = ACTIONS(1826), - [anon_sym_SQUOTE] = ACTIONS(1826), - [anon_sym_async] = ACTIONS(1826), - [anon_sym_break] = ACTIONS(1826), - [anon_sym_const] = ACTIONS(1826), - [anon_sym_continue] = ACTIONS(1826), - [anon_sym_default] = ACTIONS(1826), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_fn] = ACTIONS(1826), - [anon_sym_for] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1826), - [anon_sym_impl] = ACTIONS(1826), - [anon_sym_let] = ACTIONS(1826), - [anon_sym_loop] = ACTIONS(1826), - [anon_sym_match] = ACTIONS(1826), - [anon_sym_mod] = ACTIONS(1826), - [anon_sym_pub] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1826), - [anon_sym_static] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1826), - [anon_sym_trait] = ACTIONS(1826), - [anon_sym_type] = ACTIONS(1826), - [anon_sym_union] = ACTIONS(1826), - [anon_sym_unsafe] = ACTIONS(1826), - [anon_sym_use] = ACTIONS(1826), - [anon_sym_while] = ACTIONS(1826), - [anon_sym_POUND] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1824), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_yield] = ACTIONS(1826), - [anon_sym_move] = ACTIONS(1826), - [sym_integer_literal] = ACTIONS(1824), - [aux_sym_string_literal_token1] = ACTIONS(1824), - [sym_char_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1826), - [sym_super] = ACTIONS(1826), - [sym_crate] = ACTIONS(1826), - [sym_metavariable] = ACTIONS(1824), - [sym_raw_string_literal] = ACTIONS(1824), - [sym_float_literal] = ACTIONS(1824), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_macro_rules_BANG] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_u8] = ACTIONS(1824), + [anon_sym_i8] = ACTIONS(1824), + [anon_sym_u16] = ACTIONS(1824), + [anon_sym_i16] = ACTIONS(1824), + [anon_sym_u32] = ACTIONS(1824), + [anon_sym_i32] = ACTIONS(1824), + [anon_sym_u64] = ACTIONS(1824), + [anon_sym_i64] = ACTIONS(1824), + [anon_sym_u128] = ACTIONS(1824), + [anon_sym_i128] = ACTIONS(1824), + [anon_sym_isize] = ACTIONS(1824), + [anon_sym_usize] = ACTIONS(1824), + [anon_sym_f32] = ACTIONS(1824), + [anon_sym_f64] = ACTIONS(1824), + [anon_sym_bool] = ACTIONS(1824), + [anon_sym_str] = ACTIONS(1824), + [anon_sym_char] = ACTIONS(1824), + [anon_sym_SQUOTE] = ACTIONS(1824), + [anon_sym_async] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_fn] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_impl] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_loop] = ACTIONS(1824), + [anon_sym_match] = ACTIONS(1824), + [anon_sym_mod] = ACTIONS(1824), + [anon_sym_pub] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_trait] = ACTIONS(1824), + [anon_sym_type] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_unsafe] = ACTIONS(1824), + [anon_sym_use] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_DOT_DOT] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1824), + [anon_sym_move] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [aux_sym_string_literal_token1] = ACTIONS(1822), + [sym_char_literal] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_crate] = ACTIONS(1824), + [sym_metavariable] = ACTIONS(1822), + [sym_raw_string_literal] = ACTIONS(1822), + [sym_float_literal] = ACTIONS(1822), [sym_block_comment] = ACTIONS(3), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(1828), - [sym_identifier] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_macro_rules_BANG] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_u8] = ACTIONS(1830), - [anon_sym_i8] = ACTIONS(1830), - [anon_sym_u16] = ACTIONS(1830), - [anon_sym_i16] = ACTIONS(1830), - [anon_sym_u32] = ACTIONS(1830), - [anon_sym_i32] = ACTIONS(1830), - [anon_sym_u64] = ACTIONS(1830), - [anon_sym_i64] = ACTIONS(1830), - [anon_sym_u128] = ACTIONS(1830), - [anon_sym_i128] = ACTIONS(1830), - [anon_sym_isize] = ACTIONS(1830), - [anon_sym_usize] = ACTIONS(1830), - [anon_sym_f32] = ACTIONS(1830), - [anon_sym_f64] = ACTIONS(1830), - [anon_sym_bool] = ACTIONS(1830), - [anon_sym_str] = ACTIONS(1830), - [anon_sym_char] = ACTIONS(1830), - [anon_sym_SQUOTE] = ACTIONS(1830), - [anon_sym_async] = ACTIONS(1830), - [anon_sym_break] = ACTIONS(1830), - [anon_sym_const] = ACTIONS(1830), - [anon_sym_continue] = ACTIONS(1830), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_enum] = ACTIONS(1830), - [anon_sym_fn] = ACTIONS(1830), - [anon_sym_for] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1830), - [anon_sym_impl] = ACTIONS(1830), - [anon_sym_let] = ACTIONS(1830), - [anon_sym_loop] = ACTIONS(1830), - [anon_sym_match] = ACTIONS(1830), - [anon_sym_mod] = ACTIONS(1830), - [anon_sym_pub] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1830), - [anon_sym_static] = ACTIONS(1830), - [anon_sym_struct] = ACTIONS(1830), - [anon_sym_trait] = ACTIONS(1830), - [anon_sym_type] = ACTIONS(1830), - [anon_sym_union] = ACTIONS(1830), - [anon_sym_unsafe] = ACTIONS(1830), - [anon_sym_use] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1830), - [anon_sym_POUND] = ACTIONS(1828), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1828), - [anon_sym_COLON_COLON] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(1830), - [anon_sym_move] = ACTIONS(1830), - [sym_integer_literal] = ACTIONS(1828), - [aux_sym_string_literal_token1] = ACTIONS(1828), - [sym_char_literal] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1830), - [sym_super] = ACTIONS(1830), - [sym_crate] = ACTIONS(1830), - [sym_metavariable] = ACTIONS(1828), - [sym_raw_string_literal] = ACTIONS(1828), - [sym_float_literal] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_macro_rules_BANG] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_u8] = ACTIONS(1828), + [anon_sym_i8] = ACTIONS(1828), + [anon_sym_u16] = ACTIONS(1828), + [anon_sym_i16] = ACTIONS(1828), + [anon_sym_u32] = ACTIONS(1828), + [anon_sym_i32] = ACTIONS(1828), + [anon_sym_u64] = ACTIONS(1828), + [anon_sym_i64] = ACTIONS(1828), + [anon_sym_u128] = ACTIONS(1828), + [anon_sym_i128] = ACTIONS(1828), + [anon_sym_isize] = ACTIONS(1828), + [anon_sym_usize] = ACTIONS(1828), + [anon_sym_f32] = ACTIONS(1828), + [anon_sym_f64] = ACTIONS(1828), + [anon_sym_bool] = ACTIONS(1828), + [anon_sym_str] = ACTIONS(1828), + [anon_sym_char] = ACTIONS(1828), + [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_async] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [anon_sym_fn] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_impl] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1828), + [anon_sym_loop] = ACTIONS(1828), + [anon_sym_match] = ACTIONS(1828), + [anon_sym_mod] = ACTIONS(1828), + [anon_sym_pub] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_struct] = ACTIONS(1828), + [anon_sym_trait] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_unsafe] = ACTIONS(1828), + [anon_sym_use] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_POUND] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_COLON_COLON] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_yield] = ACTIONS(1828), + [anon_sym_move] = ACTIONS(1828), + [sym_integer_literal] = ACTIONS(1826), + [aux_sym_string_literal_token1] = ACTIONS(1826), + [sym_char_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_crate] = ACTIONS(1828), + [sym_metavariable] = ACTIONS(1826), + [sym_raw_string_literal] = ACTIONS(1826), + [sym_float_literal] = ACTIONS(1826), [sym_block_comment] = ACTIONS(3), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(1832), - [sym_identifier] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_macro_rules_BANG] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_u8] = ACTIONS(1834), - [anon_sym_i8] = ACTIONS(1834), - [anon_sym_u16] = ACTIONS(1834), - [anon_sym_i16] = ACTIONS(1834), - [anon_sym_u32] = ACTIONS(1834), - [anon_sym_i32] = ACTIONS(1834), - [anon_sym_u64] = ACTIONS(1834), - [anon_sym_i64] = ACTIONS(1834), - [anon_sym_u128] = ACTIONS(1834), - [anon_sym_i128] = ACTIONS(1834), - [anon_sym_isize] = ACTIONS(1834), - [anon_sym_usize] = ACTIONS(1834), - [anon_sym_f32] = ACTIONS(1834), - [anon_sym_f64] = ACTIONS(1834), - [anon_sym_bool] = ACTIONS(1834), - [anon_sym_str] = ACTIONS(1834), - [anon_sym_char] = ACTIONS(1834), - [anon_sym_SQUOTE] = ACTIONS(1834), - [anon_sym_async] = ACTIONS(1834), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_const] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1834), - [anon_sym_default] = ACTIONS(1834), - [anon_sym_enum] = ACTIONS(1834), - [anon_sym_fn] = ACTIONS(1834), - [anon_sym_for] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1834), - [anon_sym_impl] = ACTIONS(1834), - [anon_sym_let] = ACTIONS(1834), - [anon_sym_loop] = ACTIONS(1834), - [anon_sym_match] = ACTIONS(1834), - [anon_sym_mod] = ACTIONS(1834), - [anon_sym_pub] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1834), - [anon_sym_static] = ACTIONS(1834), - [anon_sym_struct] = ACTIONS(1834), - [anon_sym_trait] = ACTIONS(1834), - [anon_sym_type] = ACTIONS(1834), - [anon_sym_union] = ACTIONS(1834), - [anon_sym_unsafe] = ACTIONS(1834), - [anon_sym_use] = ACTIONS(1834), - [anon_sym_while] = ACTIONS(1834), - [anon_sym_POUND] = ACTIONS(1832), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_COLON_COLON] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_DOT_DOT] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_yield] = ACTIONS(1834), - [anon_sym_move] = ACTIONS(1834), - [sym_integer_literal] = ACTIONS(1832), - [aux_sym_string_literal_token1] = ACTIONS(1832), - [sym_char_literal] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1834), - [sym_super] = ACTIONS(1834), - [sym_crate] = ACTIONS(1834), - [sym_metavariable] = ACTIONS(1832), - [sym_raw_string_literal] = ACTIONS(1832), - [sym_float_literal] = ACTIONS(1832), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_macro_rules_BANG] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_u8] = ACTIONS(1832), + [anon_sym_i8] = ACTIONS(1832), + [anon_sym_u16] = ACTIONS(1832), + [anon_sym_i16] = ACTIONS(1832), + [anon_sym_u32] = ACTIONS(1832), + [anon_sym_i32] = ACTIONS(1832), + [anon_sym_u64] = ACTIONS(1832), + [anon_sym_i64] = ACTIONS(1832), + [anon_sym_u128] = ACTIONS(1832), + [anon_sym_i128] = ACTIONS(1832), + [anon_sym_isize] = ACTIONS(1832), + [anon_sym_usize] = ACTIONS(1832), + [anon_sym_f32] = ACTIONS(1832), + [anon_sym_f64] = ACTIONS(1832), + [anon_sym_bool] = ACTIONS(1832), + [anon_sym_str] = ACTIONS(1832), + [anon_sym_char] = ACTIONS(1832), + [anon_sym_SQUOTE] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_fn] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_impl] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_mod] = ACTIONS(1832), + [anon_sym_pub] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_trait] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_unsafe] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_COLON_COLON] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_move] = ACTIONS(1832), + [sym_integer_literal] = ACTIONS(1830), + [aux_sym_string_literal_token1] = ACTIONS(1830), + [sym_char_literal] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_crate] = ACTIONS(1832), + [sym_metavariable] = ACTIONS(1830), + [sym_raw_string_literal] = ACTIONS(1830), + [sym_float_literal] = ACTIONS(1830), [sym_block_comment] = ACTIONS(3), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(1836), - [sym_identifier] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_macro_rules_BANG] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1836), - [anon_sym_u8] = ACTIONS(1838), - [anon_sym_i8] = ACTIONS(1838), - [anon_sym_u16] = ACTIONS(1838), - [anon_sym_i16] = ACTIONS(1838), - [anon_sym_u32] = ACTIONS(1838), - [anon_sym_i32] = ACTIONS(1838), - [anon_sym_u64] = ACTIONS(1838), - [anon_sym_i64] = ACTIONS(1838), - [anon_sym_u128] = ACTIONS(1838), - [anon_sym_i128] = ACTIONS(1838), - [anon_sym_isize] = ACTIONS(1838), - [anon_sym_usize] = ACTIONS(1838), - [anon_sym_f32] = ACTIONS(1838), - [anon_sym_f64] = ACTIONS(1838), - [anon_sym_bool] = ACTIONS(1838), - [anon_sym_str] = ACTIONS(1838), - [anon_sym_char] = ACTIONS(1838), - [anon_sym_SQUOTE] = ACTIONS(1838), - [anon_sym_async] = ACTIONS(1838), - [anon_sym_break] = ACTIONS(1838), - [anon_sym_const] = ACTIONS(1838), - [anon_sym_continue] = ACTIONS(1838), - [anon_sym_default] = ACTIONS(1838), - [anon_sym_enum] = ACTIONS(1838), - [anon_sym_fn] = ACTIONS(1838), - [anon_sym_for] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1838), - [anon_sym_impl] = ACTIONS(1838), - [anon_sym_let] = ACTIONS(1838), - [anon_sym_loop] = ACTIONS(1838), - [anon_sym_match] = ACTIONS(1838), - [anon_sym_mod] = ACTIONS(1838), - [anon_sym_pub] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1838), - [anon_sym_static] = ACTIONS(1838), - [anon_sym_struct] = ACTIONS(1838), - [anon_sym_trait] = ACTIONS(1838), - [anon_sym_type] = ACTIONS(1838), - [anon_sym_union] = ACTIONS(1838), - [anon_sym_unsafe] = ACTIONS(1838), - [anon_sym_use] = ACTIONS(1838), - [anon_sym_while] = ACTIONS(1838), - [anon_sym_POUND] = ACTIONS(1836), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1836), - [anon_sym_COLON_COLON] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_DOT_DOT] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1838), - [anon_sym_move] = ACTIONS(1838), - [sym_integer_literal] = ACTIONS(1836), - [aux_sym_string_literal_token1] = ACTIONS(1836), - [sym_char_literal] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1838), - [sym_super] = ACTIONS(1838), - [sym_crate] = ACTIONS(1838), - [sym_metavariable] = ACTIONS(1836), - [sym_raw_string_literal] = ACTIONS(1836), - [sym_float_literal] = ACTIONS(1836), + [ts_builtin_sym_end] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_macro_rules_BANG] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_u8] = ACTIONS(1836), + [anon_sym_i8] = ACTIONS(1836), + [anon_sym_u16] = ACTIONS(1836), + [anon_sym_i16] = ACTIONS(1836), + [anon_sym_u32] = ACTIONS(1836), + [anon_sym_i32] = ACTIONS(1836), + [anon_sym_u64] = ACTIONS(1836), + [anon_sym_i64] = ACTIONS(1836), + [anon_sym_u128] = ACTIONS(1836), + [anon_sym_i128] = ACTIONS(1836), + [anon_sym_isize] = ACTIONS(1836), + [anon_sym_usize] = ACTIONS(1836), + [anon_sym_f32] = ACTIONS(1836), + [anon_sym_f64] = ACTIONS(1836), + [anon_sym_bool] = ACTIONS(1836), + [anon_sym_str] = ACTIONS(1836), + [anon_sym_char] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_async] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_fn] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_impl] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_loop] = ACTIONS(1836), + [anon_sym_match] = ACTIONS(1836), + [anon_sym_mod] = ACTIONS(1836), + [anon_sym_pub] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_trait] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_unsafe] = ACTIONS(1836), + [anon_sym_use] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_POUND] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_COLON_COLON] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_yield] = ACTIONS(1836), + [anon_sym_move] = ACTIONS(1836), + [sym_integer_literal] = ACTIONS(1834), + [aux_sym_string_literal_token1] = ACTIONS(1834), + [sym_char_literal] = ACTIONS(1834), + [anon_sym_true] = ACTIONS(1836), + [anon_sym_false] = ACTIONS(1836), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_crate] = ACTIONS(1836), + [sym_metavariable] = ACTIONS(1834), + [sym_raw_string_literal] = ACTIONS(1834), + [sym_float_literal] = ACTIONS(1834), [sym_block_comment] = ACTIONS(3), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(1840), - [sym_identifier] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1840), - [anon_sym_macro_rules_BANG] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_u8] = ACTIONS(1842), - [anon_sym_i8] = ACTIONS(1842), - [anon_sym_u16] = ACTIONS(1842), - [anon_sym_i16] = ACTIONS(1842), - [anon_sym_u32] = ACTIONS(1842), - [anon_sym_i32] = ACTIONS(1842), - [anon_sym_u64] = ACTIONS(1842), - [anon_sym_i64] = ACTIONS(1842), - [anon_sym_u128] = ACTIONS(1842), - [anon_sym_i128] = ACTIONS(1842), - [anon_sym_isize] = ACTIONS(1842), - [anon_sym_usize] = ACTIONS(1842), - [anon_sym_f32] = ACTIONS(1842), - [anon_sym_f64] = ACTIONS(1842), - [anon_sym_bool] = ACTIONS(1842), - [anon_sym_str] = ACTIONS(1842), - [anon_sym_char] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_async] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_enum] = ACTIONS(1842), - [anon_sym_fn] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_impl] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_mod] = ACTIONS(1842), - [anon_sym_pub] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_static] = ACTIONS(1842), - [anon_sym_struct] = ACTIONS(1842), - [anon_sym_trait] = ACTIONS(1842), - [anon_sym_type] = ACTIONS(1842), - [anon_sym_union] = ACTIONS(1842), - [anon_sym_unsafe] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [anon_sym_POUND] = ACTIONS(1840), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_COLON_COLON] = ACTIONS(1840), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(1842), - [anon_sym_move] = ACTIONS(1842), - [sym_integer_literal] = ACTIONS(1840), - [aux_sym_string_literal_token1] = ACTIONS(1840), - [sym_char_literal] = ACTIONS(1840), - [anon_sym_true] = ACTIONS(1842), - [anon_sym_false] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1842), - [sym_super] = ACTIONS(1842), - [sym_crate] = ACTIONS(1842), - [sym_metavariable] = ACTIONS(1840), - [sym_raw_string_literal] = ACTIONS(1840), - [sym_float_literal] = ACTIONS(1840), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_macro_rules_BANG] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_u8] = ACTIONS(1840), + [anon_sym_i8] = ACTIONS(1840), + [anon_sym_u16] = ACTIONS(1840), + [anon_sym_i16] = ACTIONS(1840), + [anon_sym_u32] = ACTIONS(1840), + [anon_sym_i32] = ACTIONS(1840), + [anon_sym_u64] = ACTIONS(1840), + [anon_sym_i64] = ACTIONS(1840), + [anon_sym_u128] = ACTIONS(1840), + [anon_sym_i128] = ACTIONS(1840), + [anon_sym_isize] = ACTIONS(1840), + [anon_sym_usize] = ACTIONS(1840), + [anon_sym_f32] = ACTIONS(1840), + [anon_sym_f64] = ACTIONS(1840), + [anon_sym_bool] = ACTIONS(1840), + [anon_sym_str] = ACTIONS(1840), + [anon_sym_char] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_fn] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_impl] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_mod] = ACTIONS(1840), + [anon_sym_pub] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_trait] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_POUND] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_COLON_COLON] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_yield] = ACTIONS(1840), + [anon_sym_move] = ACTIONS(1840), + [sym_integer_literal] = ACTIONS(1838), + [aux_sym_string_literal_token1] = ACTIONS(1838), + [sym_char_literal] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1840), + [anon_sym_false] = ACTIONS(1840), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_crate] = ACTIONS(1840), + [sym_metavariable] = ACTIONS(1838), + [sym_raw_string_literal] = ACTIONS(1838), + [sym_float_literal] = ACTIONS(1838), [sym_block_comment] = ACTIONS(3), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(1844), - [sym_identifier] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1844), - [anon_sym_macro_rules_BANG] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_u8] = ACTIONS(1846), - [anon_sym_i8] = ACTIONS(1846), - [anon_sym_u16] = ACTIONS(1846), - [anon_sym_i16] = ACTIONS(1846), - [anon_sym_u32] = ACTIONS(1846), - [anon_sym_i32] = ACTIONS(1846), - [anon_sym_u64] = ACTIONS(1846), - [anon_sym_i64] = ACTIONS(1846), - [anon_sym_u128] = ACTIONS(1846), - [anon_sym_i128] = ACTIONS(1846), - [anon_sym_isize] = ACTIONS(1846), - [anon_sym_usize] = ACTIONS(1846), - [anon_sym_f32] = ACTIONS(1846), - [anon_sym_f64] = ACTIONS(1846), - [anon_sym_bool] = ACTIONS(1846), - [anon_sym_str] = ACTIONS(1846), - [anon_sym_char] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_fn] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_impl] = ACTIONS(1846), - [anon_sym_let] = ACTIONS(1846), - [anon_sym_loop] = ACTIONS(1846), - [anon_sym_match] = ACTIONS(1846), - [anon_sym_mod] = ACTIONS(1846), - [anon_sym_pub] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_trait] = ACTIONS(1846), - [anon_sym_type] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_unsafe] = ACTIONS(1846), - [anon_sym_use] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [anon_sym_POUND] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_COLON_COLON] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_DOT_DOT] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_yield] = ACTIONS(1846), - [anon_sym_move] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(1844), - [aux_sym_string_literal_token1] = ACTIONS(1844), - [sym_char_literal] = ACTIONS(1844), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_crate] = ACTIONS(1846), - [sym_metavariable] = ACTIONS(1844), - [sym_raw_string_literal] = ACTIONS(1844), - [sym_float_literal] = ACTIONS(1844), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_macro_rules_BANG] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_u8] = ACTIONS(1844), + [anon_sym_i8] = ACTIONS(1844), + [anon_sym_u16] = ACTIONS(1844), + [anon_sym_i16] = ACTIONS(1844), + [anon_sym_u32] = ACTIONS(1844), + [anon_sym_i32] = ACTIONS(1844), + [anon_sym_u64] = ACTIONS(1844), + [anon_sym_i64] = ACTIONS(1844), + [anon_sym_u128] = ACTIONS(1844), + [anon_sym_i128] = ACTIONS(1844), + [anon_sym_isize] = ACTIONS(1844), + [anon_sym_usize] = ACTIONS(1844), + [anon_sym_f32] = ACTIONS(1844), + [anon_sym_f64] = ACTIONS(1844), + [anon_sym_bool] = ACTIONS(1844), + [anon_sym_str] = ACTIONS(1844), + [anon_sym_char] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_fn] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_impl] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_loop] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1844), + [anon_sym_mod] = ACTIONS(1844), + [anon_sym_pub] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_trait] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_unsafe] = ACTIONS(1844), + [anon_sym_use] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_COLON_COLON] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_move] = ACTIONS(1844), + [sym_integer_literal] = ACTIONS(1842), + [aux_sym_string_literal_token1] = ACTIONS(1842), + [sym_char_literal] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1844), + [anon_sym_false] = ACTIONS(1844), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_crate] = ACTIONS(1844), + [sym_metavariable] = ACTIONS(1842), + [sym_raw_string_literal] = ACTIONS(1842), + [sym_float_literal] = ACTIONS(1842), [sym_block_comment] = ACTIONS(3), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_macro_rules_BANG] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_u8] = ACTIONS(1850), - [anon_sym_i8] = ACTIONS(1850), - [anon_sym_u16] = ACTIONS(1850), - [anon_sym_i16] = ACTIONS(1850), - [anon_sym_u32] = ACTIONS(1850), - [anon_sym_i32] = ACTIONS(1850), - [anon_sym_u64] = ACTIONS(1850), - [anon_sym_i64] = ACTIONS(1850), - [anon_sym_u128] = ACTIONS(1850), - [anon_sym_i128] = ACTIONS(1850), - [anon_sym_isize] = ACTIONS(1850), - [anon_sym_usize] = ACTIONS(1850), - [anon_sym_f32] = ACTIONS(1850), - [anon_sym_f64] = ACTIONS(1850), - [anon_sym_bool] = ACTIONS(1850), - [anon_sym_str] = ACTIONS(1850), - [anon_sym_char] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_async] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_fn] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_impl] = ACTIONS(1850), - [anon_sym_let] = ACTIONS(1850), - [anon_sym_loop] = ACTIONS(1850), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_mod] = ACTIONS(1850), - [anon_sym_pub] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [anon_sym_trait] = ACTIONS(1850), - [anon_sym_type] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_unsafe] = ACTIONS(1850), - [anon_sym_use] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_COLON_COLON] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_yield] = ACTIONS(1850), - [anon_sym_move] = ACTIONS(1850), - [sym_integer_literal] = ACTIONS(1848), - [aux_sym_string_literal_token1] = ACTIONS(1848), - [sym_char_literal] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1850), - [sym_super] = ACTIONS(1850), - [sym_crate] = ACTIONS(1850), - [sym_metavariable] = ACTIONS(1848), - [sym_raw_string_literal] = ACTIONS(1848), - [sym_float_literal] = ACTIONS(1848), + [ts_builtin_sym_end] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_macro_rules_BANG] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_u8] = ACTIONS(1848), + [anon_sym_i8] = ACTIONS(1848), + [anon_sym_u16] = ACTIONS(1848), + [anon_sym_i16] = ACTIONS(1848), + [anon_sym_u32] = ACTIONS(1848), + [anon_sym_i32] = ACTIONS(1848), + [anon_sym_u64] = ACTIONS(1848), + [anon_sym_i64] = ACTIONS(1848), + [anon_sym_u128] = ACTIONS(1848), + [anon_sym_i128] = ACTIONS(1848), + [anon_sym_isize] = ACTIONS(1848), + [anon_sym_usize] = ACTIONS(1848), + [anon_sym_f32] = ACTIONS(1848), + [anon_sym_f64] = ACTIONS(1848), + [anon_sym_bool] = ACTIONS(1848), + [anon_sym_str] = ACTIONS(1848), + [anon_sym_char] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_fn] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_impl] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_mod] = ACTIONS(1848), + [anon_sym_pub] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_trait] = ACTIONS(1848), + [anon_sym_type] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_unsafe] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_COLON_COLON] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_DOT_DOT] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1848), + [anon_sym_move] = ACTIONS(1848), + [sym_integer_literal] = ACTIONS(1846), + [aux_sym_string_literal_token1] = ACTIONS(1846), + [sym_char_literal] = ACTIONS(1846), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_crate] = ACTIONS(1848), + [sym_metavariable] = ACTIONS(1846), + [sym_raw_string_literal] = ACTIONS(1846), + [sym_float_literal] = ACTIONS(1846), [sym_block_comment] = ACTIONS(3), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_identifier] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1852), - [anon_sym_macro_rules_BANG] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_STAR] = ACTIONS(1852), - [anon_sym_u8] = ACTIONS(1854), - [anon_sym_i8] = ACTIONS(1854), - [anon_sym_u16] = ACTIONS(1854), - [anon_sym_i16] = ACTIONS(1854), - [anon_sym_u32] = ACTIONS(1854), - [anon_sym_i32] = ACTIONS(1854), - [anon_sym_u64] = ACTIONS(1854), - [anon_sym_i64] = ACTIONS(1854), - [anon_sym_u128] = ACTIONS(1854), - [anon_sym_i128] = ACTIONS(1854), - [anon_sym_isize] = ACTIONS(1854), - [anon_sym_usize] = ACTIONS(1854), - [anon_sym_f32] = ACTIONS(1854), - [anon_sym_f64] = ACTIONS(1854), - [anon_sym_bool] = ACTIONS(1854), - [anon_sym_str] = ACTIONS(1854), - [anon_sym_char] = ACTIONS(1854), - [anon_sym_SQUOTE] = ACTIONS(1854), - [anon_sym_async] = ACTIONS(1854), - [anon_sym_break] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1854), - [anon_sym_continue] = ACTIONS(1854), - [anon_sym_default] = ACTIONS(1854), - [anon_sym_enum] = ACTIONS(1854), - [anon_sym_fn] = ACTIONS(1854), - [anon_sym_for] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1854), - [anon_sym_impl] = ACTIONS(1854), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_loop] = ACTIONS(1854), - [anon_sym_match] = ACTIONS(1854), - [anon_sym_mod] = ACTIONS(1854), - [anon_sym_pub] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1854), - [anon_sym_static] = ACTIONS(1854), - [anon_sym_struct] = ACTIONS(1854), - [anon_sym_trait] = ACTIONS(1854), - [anon_sym_type] = ACTIONS(1854), - [anon_sym_union] = ACTIONS(1854), - [anon_sym_unsafe] = ACTIONS(1854), - [anon_sym_use] = ACTIONS(1854), - [anon_sym_while] = ACTIONS(1854), - [anon_sym_POUND] = ACTIONS(1852), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_COLON_COLON] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_DOT_DOT] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_yield] = ACTIONS(1854), - [anon_sym_move] = ACTIONS(1854), - [sym_integer_literal] = ACTIONS(1852), - [aux_sym_string_literal_token1] = ACTIONS(1852), - [sym_char_literal] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1854), - [sym_super] = ACTIONS(1854), - [sym_crate] = ACTIONS(1854), - [sym_metavariable] = ACTIONS(1852), - [sym_raw_string_literal] = ACTIONS(1852), - [sym_float_literal] = ACTIONS(1852), + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_macro_rules_BANG] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_u8] = ACTIONS(1852), + [anon_sym_i8] = ACTIONS(1852), + [anon_sym_u16] = ACTIONS(1852), + [anon_sym_i16] = ACTIONS(1852), + [anon_sym_u32] = ACTIONS(1852), + [anon_sym_i32] = ACTIONS(1852), + [anon_sym_u64] = ACTIONS(1852), + [anon_sym_i64] = ACTIONS(1852), + [anon_sym_u128] = ACTIONS(1852), + [anon_sym_i128] = ACTIONS(1852), + [anon_sym_isize] = ACTIONS(1852), + [anon_sym_usize] = ACTIONS(1852), + [anon_sym_f32] = ACTIONS(1852), + [anon_sym_f64] = ACTIONS(1852), + [anon_sym_bool] = ACTIONS(1852), + [anon_sym_str] = ACTIONS(1852), + [anon_sym_char] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1852), + [anon_sym_async] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_fn] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_impl] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_loop] = ACTIONS(1852), + [anon_sym_match] = ACTIONS(1852), + [anon_sym_mod] = ACTIONS(1852), + [anon_sym_pub] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_trait] = ACTIONS(1852), + [anon_sym_type] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_unsafe] = ACTIONS(1852), + [anon_sym_use] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_COLON_COLON] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1852), + [anon_sym_move] = ACTIONS(1852), + [sym_integer_literal] = ACTIONS(1850), + [aux_sym_string_literal_token1] = ACTIONS(1850), + [sym_char_literal] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_crate] = ACTIONS(1852), + [sym_metavariable] = ACTIONS(1850), + [sym_raw_string_literal] = ACTIONS(1850), + [sym_float_literal] = ACTIONS(1850), [sym_block_comment] = ACTIONS(3), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(1856), - [sym_identifier] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1856), - [anon_sym_macro_rules_BANG] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_u8] = ACTIONS(1858), - [anon_sym_i8] = ACTIONS(1858), - [anon_sym_u16] = ACTIONS(1858), - [anon_sym_i16] = ACTIONS(1858), - [anon_sym_u32] = ACTIONS(1858), - [anon_sym_i32] = ACTIONS(1858), - [anon_sym_u64] = ACTIONS(1858), - [anon_sym_i64] = ACTIONS(1858), - [anon_sym_u128] = ACTIONS(1858), - [anon_sym_i128] = ACTIONS(1858), - [anon_sym_isize] = ACTIONS(1858), - [anon_sym_usize] = ACTIONS(1858), - [anon_sym_f32] = ACTIONS(1858), - [anon_sym_f64] = ACTIONS(1858), - [anon_sym_bool] = ACTIONS(1858), - [anon_sym_str] = ACTIONS(1858), - [anon_sym_char] = ACTIONS(1858), - [anon_sym_SQUOTE] = ACTIONS(1858), - [anon_sym_async] = ACTIONS(1858), - [anon_sym_break] = ACTIONS(1858), - [anon_sym_const] = ACTIONS(1858), - [anon_sym_continue] = ACTIONS(1858), - [anon_sym_default] = ACTIONS(1858), - [anon_sym_enum] = ACTIONS(1858), - [anon_sym_fn] = ACTIONS(1858), - [anon_sym_for] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1858), - [anon_sym_impl] = ACTIONS(1858), - [anon_sym_let] = ACTIONS(1858), - [anon_sym_loop] = ACTIONS(1858), - [anon_sym_match] = ACTIONS(1858), - [anon_sym_mod] = ACTIONS(1858), - [anon_sym_pub] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1858), - [anon_sym_static] = ACTIONS(1858), - [anon_sym_struct] = ACTIONS(1858), - [anon_sym_trait] = ACTIONS(1858), - [anon_sym_type] = ACTIONS(1858), - [anon_sym_union] = ACTIONS(1858), - [anon_sym_unsafe] = ACTIONS(1858), - [anon_sym_use] = ACTIONS(1858), - [anon_sym_while] = ACTIONS(1858), - [anon_sym_POUND] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_COLON_COLON] = ACTIONS(1856), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_yield] = ACTIONS(1858), - [anon_sym_move] = ACTIONS(1858), - [sym_integer_literal] = ACTIONS(1856), - [aux_sym_string_literal_token1] = ACTIONS(1856), - [sym_char_literal] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1858), - [sym_super] = ACTIONS(1858), - [sym_crate] = ACTIONS(1858), - [sym_metavariable] = ACTIONS(1856), - [sym_raw_string_literal] = ACTIONS(1856), - [sym_float_literal] = ACTIONS(1856), + [ts_builtin_sym_end] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_macro_rules_BANG] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_u8] = ACTIONS(1856), + [anon_sym_i8] = ACTIONS(1856), + [anon_sym_u16] = ACTIONS(1856), + [anon_sym_i16] = ACTIONS(1856), + [anon_sym_u32] = ACTIONS(1856), + [anon_sym_i32] = ACTIONS(1856), + [anon_sym_u64] = ACTIONS(1856), + [anon_sym_i64] = ACTIONS(1856), + [anon_sym_u128] = ACTIONS(1856), + [anon_sym_i128] = ACTIONS(1856), + [anon_sym_isize] = ACTIONS(1856), + [anon_sym_usize] = ACTIONS(1856), + [anon_sym_f32] = ACTIONS(1856), + [anon_sym_f64] = ACTIONS(1856), + [anon_sym_bool] = ACTIONS(1856), + [anon_sym_str] = ACTIONS(1856), + [anon_sym_char] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_async] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_fn] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_impl] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_loop] = ACTIONS(1856), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_mod] = ACTIONS(1856), + [anon_sym_pub] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_trait] = ACTIONS(1856), + [anon_sym_type] = ACTIONS(1856), + [anon_sym_union] = ACTIONS(1856), + [anon_sym_unsafe] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_DOT_DOT] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1856), + [anon_sym_move] = ACTIONS(1856), + [sym_integer_literal] = ACTIONS(1854), + [aux_sym_string_literal_token1] = ACTIONS(1854), + [sym_char_literal] = ACTIONS(1854), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_crate] = ACTIONS(1856), + [sym_metavariable] = ACTIONS(1854), + [sym_raw_string_literal] = ACTIONS(1854), + [sym_float_literal] = ACTIONS(1854), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1860), - [sym_identifier] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1860), - [anon_sym_macro_rules_BANG] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1860), - [anon_sym_STAR] = ACTIONS(1860), - [anon_sym_u8] = ACTIONS(1862), - [anon_sym_i8] = ACTIONS(1862), - [anon_sym_u16] = ACTIONS(1862), - [anon_sym_i16] = ACTIONS(1862), - [anon_sym_u32] = ACTIONS(1862), - [anon_sym_i32] = ACTIONS(1862), - [anon_sym_u64] = ACTIONS(1862), - [anon_sym_i64] = ACTIONS(1862), - [anon_sym_u128] = ACTIONS(1862), - [anon_sym_i128] = ACTIONS(1862), - [anon_sym_isize] = ACTIONS(1862), - [anon_sym_usize] = ACTIONS(1862), - [anon_sym_f32] = ACTIONS(1862), - [anon_sym_f64] = ACTIONS(1862), - [anon_sym_bool] = ACTIONS(1862), - [anon_sym_str] = ACTIONS(1862), - [anon_sym_char] = ACTIONS(1862), - [anon_sym_SQUOTE] = ACTIONS(1862), - [anon_sym_async] = ACTIONS(1862), - [anon_sym_break] = ACTIONS(1862), - [anon_sym_const] = ACTIONS(1862), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_default] = ACTIONS(1862), - [anon_sym_enum] = ACTIONS(1862), - [anon_sym_fn] = ACTIONS(1862), - [anon_sym_for] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1862), - [anon_sym_impl] = ACTIONS(1862), - [anon_sym_let] = ACTIONS(1862), - [anon_sym_loop] = ACTIONS(1862), - [anon_sym_match] = ACTIONS(1862), - [anon_sym_mod] = ACTIONS(1862), - [anon_sym_pub] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1862), - [anon_sym_static] = ACTIONS(1862), - [anon_sym_struct] = ACTIONS(1862), - [anon_sym_trait] = ACTIONS(1862), - [anon_sym_type] = ACTIONS(1862), - [anon_sym_union] = ACTIONS(1862), - [anon_sym_unsafe] = ACTIONS(1862), - [anon_sym_use] = ACTIONS(1862), - [anon_sym_while] = ACTIONS(1862), - [anon_sym_POUND] = ACTIONS(1860), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1860), - [anon_sym_COLON_COLON] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_yield] = ACTIONS(1862), - [anon_sym_move] = ACTIONS(1862), - [sym_integer_literal] = ACTIONS(1860), - [aux_sym_string_literal_token1] = ACTIONS(1860), - [sym_char_literal] = ACTIONS(1860), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1862), - [sym_super] = ACTIONS(1862), - [sym_crate] = ACTIONS(1862), - [sym_metavariable] = ACTIONS(1860), - [sym_raw_string_literal] = ACTIONS(1860), - [sym_float_literal] = ACTIONS(1860), + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_macro_rules_BANG] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_u8] = ACTIONS(1860), + [anon_sym_i8] = ACTIONS(1860), + [anon_sym_u16] = ACTIONS(1860), + [anon_sym_i16] = ACTIONS(1860), + [anon_sym_u32] = ACTIONS(1860), + [anon_sym_i32] = ACTIONS(1860), + [anon_sym_u64] = ACTIONS(1860), + [anon_sym_i64] = ACTIONS(1860), + [anon_sym_u128] = ACTIONS(1860), + [anon_sym_i128] = ACTIONS(1860), + [anon_sym_isize] = ACTIONS(1860), + [anon_sym_usize] = ACTIONS(1860), + [anon_sym_f32] = ACTIONS(1860), + [anon_sym_f64] = ACTIONS(1860), + [anon_sym_bool] = ACTIONS(1860), + [anon_sym_str] = ACTIONS(1860), + [anon_sym_char] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1860), + [anon_sym_async] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_fn] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_impl] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_loop] = ACTIONS(1860), + [anon_sym_match] = ACTIONS(1860), + [anon_sym_mod] = ACTIONS(1860), + [anon_sym_pub] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_trait] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_unsafe] = ACTIONS(1860), + [anon_sym_use] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_COLON_COLON] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_DOT_DOT] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1860), + [anon_sym_move] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(1858), + [aux_sym_string_literal_token1] = ACTIONS(1858), + [sym_char_literal] = ACTIONS(1858), + [anon_sym_true] = ACTIONS(1860), + [anon_sym_false] = ACTIONS(1860), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_crate] = ACTIONS(1860), + [sym_metavariable] = ACTIONS(1858), + [sym_raw_string_literal] = ACTIONS(1858), + [sym_float_literal] = ACTIONS(1858), [sym_block_comment] = ACTIONS(3), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_identifier] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1864), - [anon_sym_macro_rules_BANG] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1864), - [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_u8] = ACTIONS(1866), - [anon_sym_i8] = ACTIONS(1866), - [anon_sym_u16] = ACTIONS(1866), - [anon_sym_i16] = ACTIONS(1866), - [anon_sym_u32] = ACTIONS(1866), - [anon_sym_i32] = ACTIONS(1866), - [anon_sym_u64] = ACTIONS(1866), - [anon_sym_i64] = ACTIONS(1866), - [anon_sym_u128] = ACTIONS(1866), - [anon_sym_i128] = ACTIONS(1866), - [anon_sym_isize] = ACTIONS(1866), - [anon_sym_usize] = ACTIONS(1866), - [anon_sym_f32] = ACTIONS(1866), - [anon_sym_f64] = ACTIONS(1866), - [anon_sym_bool] = ACTIONS(1866), - [anon_sym_str] = ACTIONS(1866), - [anon_sym_char] = ACTIONS(1866), - [anon_sym_SQUOTE] = ACTIONS(1866), - [anon_sym_async] = ACTIONS(1866), - [anon_sym_break] = ACTIONS(1866), - [anon_sym_const] = ACTIONS(1866), - [anon_sym_continue] = ACTIONS(1866), - [anon_sym_default] = ACTIONS(1866), - [anon_sym_enum] = ACTIONS(1866), - [anon_sym_fn] = ACTIONS(1866), - [anon_sym_for] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_impl] = ACTIONS(1866), - [anon_sym_let] = ACTIONS(1866), - [anon_sym_loop] = ACTIONS(1866), - [anon_sym_match] = ACTIONS(1866), - [anon_sym_mod] = ACTIONS(1866), - [anon_sym_pub] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1866), - [anon_sym_static] = ACTIONS(1866), - [anon_sym_struct] = ACTIONS(1866), - [anon_sym_trait] = ACTIONS(1866), - [anon_sym_type] = ACTIONS(1866), - [anon_sym_union] = ACTIONS(1866), - [anon_sym_unsafe] = ACTIONS(1866), - [anon_sym_use] = ACTIONS(1866), - [anon_sym_while] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1864), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1864), - [anon_sym_COLON_COLON] = ACTIONS(1864), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_DOT_DOT] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_PIPE] = ACTIONS(1864), - [anon_sym_yield] = ACTIONS(1866), - [anon_sym_move] = ACTIONS(1866), - [sym_integer_literal] = ACTIONS(1864), - [aux_sym_string_literal_token1] = ACTIONS(1864), - [sym_char_literal] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1866), - [sym_super] = ACTIONS(1866), - [sym_crate] = ACTIONS(1866), - [sym_metavariable] = ACTIONS(1864), - [sym_raw_string_literal] = ACTIONS(1864), - [sym_float_literal] = ACTIONS(1864), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_macro_rules_BANG] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_u8] = ACTIONS(1864), + [anon_sym_i8] = ACTIONS(1864), + [anon_sym_u16] = ACTIONS(1864), + [anon_sym_i16] = ACTIONS(1864), + [anon_sym_u32] = ACTIONS(1864), + [anon_sym_i32] = ACTIONS(1864), + [anon_sym_u64] = ACTIONS(1864), + [anon_sym_i64] = ACTIONS(1864), + [anon_sym_u128] = ACTIONS(1864), + [anon_sym_i128] = ACTIONS(1864), + [anon_sym_isize] = ACTIONS(1864), + [anon_sym_usize] = ACTIONS(1864), + [anon_sym_f32] = ACTIONS(1864), + [anon_sym_f64] = ACTIONS(1864), + [anon_sym_bool] = ACTIONS(1864), + [anon_sym_str] = ACTIONS(1864), + [anon_sym_char] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1864), + [anon_sym_async] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_fn] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_impl] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_mod] = ACTIONS(1864), + [anon_sym_pub] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_trait] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_union] = ACTIONS(1864), + [anon_sym_unsafe] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_DOT_DOT] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1864), + [anon_sym_move] = ACTIONS(1864), + [sym_integer_literal] = ACTIONS(1862), + [aux_sym_string_literal_token1] = ACTIONS(1862), + [sym_char_literal] = ACTIONS(1862), + [anon_sym_true] = ACTIONS(1864), + [anon_sym_false] = ACTIONS(1864), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_crate] = ACTIONS(1864), + [sym_metavariable] = ACTIONS(1862), + [sym_raw_string_literal] = ACTIONS(1862), + [sym_float_literal] = ACTIONS(1862), [sym_block_comment] = ACTIONS(3), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(1868), - [sym_identifier] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_macro_rules_BANG] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_u8] = ACTIONS(1870), - [anon_sym_i8] = ACTIONS(1870), - [anon_sym_u16] = ACTIONS(1870), - [anon_sym_i16] = ACTIONS(1870), - [anon_sym_u32] = ACTIONS(1870), - [anon_sym_i32] = ACTIONS(1870), - [anon_sym_u64] = ACTIONS(1870), - [anon_sym_i64] = ACTIONS(1870), - [anon_sym_u128] = ACTIONS(1870), - [anon_sym_i128] = ACTIONS(1870), - [anon_sym_isize] = ACTIONS(1870), - [anon_sym_usize] = ACTIONS(1870), - [anon_sym_f32] = ACTIONS(1870), - [anon_sym_f64] = ACTIONS(1870), - [anon_sym_bool] = ACTIONS(1870), - [anon_sym_str] = ACTIONS(1870), - [anon_sym_char] = ACTIONS(1870), - [anon_sym_SQUOTE] = ACTIONS(1870), - [anon_sym_async] = ACTIONS(1870), - [anon_sym_break] = ACTIONS(1870), - [anon_sym_const] = ACTIONS(1870), - [anon_sym_continue] = ACTIONS(1870), - [anon_sym_default] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1870), - [anon_sym_fn] = ACTIONS(1870), - [anon_sym_for] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1870), - [anon_sym_impl] = ACTIONS(1870), - [anon_sym_let] = ACTIONS(1870), - [anon_sym_loop] = ACTIONS(1870), - [anon_sym_match] = ACTIONS(1870), - [anon_sym_mod] = ACTIONS(1870), - [anon_sym_pub] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1870), - [anon_sym_static] = ACTIONS(1870), - [anon_sym_struct] = ACTIONS(1870), - [anon_sym_trait] = ACTIONS(1870), - [anon_sym_type] = ACTIONS(1870), - [anon_sym_union] = ACTIONS(1870), - [anon_sym_unsafe] = ACTIONS(1870), - [anon_sym_use] = ACTIONS(1870), - [anon_sym_while] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_COLON_COLON] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_yield] = ACTIONS(1870), - [anon_sym_move] = ACTIONS(1870), - [sym_integer_literal] = ACTIONS(1868), - [aux_sym_string_literal_token1] = ACTIONS(1868), - [sym_char_literal] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1870), - [sym_super] = ACTIONS(1870), - [sym_crate] = ACTIONS(1870), - [sym_metavariable] = ACTIONS(1868), - [sym_raw_string_literal] = ACTIONS(1868), - [sym_float_literal] = ACTIONS(1868), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_macro_rules_BANG] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_u8] = ACTIONS(1868), + [anon_sym_i8] = ACTIONS(1868), + [anon_sym_u16] = ACTIONS(1868), + [anon_sym_i16] = ACTIONS(1868), + [anon_sym_u32] = ACTIONS(1868), + [anon_sym_i32] = ACTIONS(1868), + [anon_sym_u64] = ACTIONS(1868), + [anon_sym_i64] = ACTIONS(1868), + [anon_sym_u128] = ACTIONS(1868), + [anon_sym_i128] = ACTIONS(1868), + [anon_sym_isize] = ACTIONS(1868), + [anon_sym_usize] = ACTIONS(1868), + [anon_sym_f32] = ACTIONS(1868), + [anon_sym_f64] = ACTIONS(1868), + [anon_sym_bool] = ACTIONS(1868), + [anon_sym_str] = ACTIONS(1868), + [anon_sym_char] = ACTIONS(1868), + [anon_sym_SQUOTE] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_fn] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_impl] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_loop] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_pub] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_trait] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_unsafe] = ACTIONS(1868), + [anon_sym_use] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_COLON_COLON] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_move] = ACTIONS(1868), + [sym_integer_literal] = ACTIONS(1866), + [aux_sym_string_literal_token1] = ACTIONS(1866), + [sym_char_literal] = ACTIONS(1866), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_crate] = ACTIONS(1868), + [sym_metavariable] = ACTIONS(1866), + [sym_raw_string_literal] = ACTIONS(1866), + [sym_float_literal] = ACTIONS(1866), [sym_block_comment] = ACTIONS(3), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(1872), - [sym_identifier] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_macro_rules_BANG] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_STAR] = ACTIONS(1872), - [anon_sym_u8] = ACTIONS(1874), - [anon_sym_i8] = ACTIONS(1874), - [anon_sym_u16] = ACTIONS(1874), - [anon_sym_i16] = ACTIONS(1874), - [anon_sym_u32] = ACTIONS(1874), - [anon_sym_i32] = ACTIONS(1874), - [anon_sym_u64] = ACTIONS(1874), - [anon_sym_i64] = ACTIONS(1874), - [anon_sym_u128] = ACTIONS(1874), - [anon_sym_i128] = ACTIONS(1874), - [anon_sym_isize] = ACTIONS(1874), - [anon_sym_usize] = ACTIONS(1874), - [anon_sym_f32] = ACTIONS(1874), - [anon_sym_f64] = ACTIONS(1874), - [anon_sym_bool] = ACTIONS(1874), - [anon_sym_str] = ACTIONS(1874), - [anon_sym_char] = ACTIONS(1874), - [anon_sym_SQUOTE] = ACTIONS(1874), - [anon_sym_async] = ACTIONS(1874), - [anon_sym_break] = ACTIONS(1874), - [anon_sym_const] = ACTIONS(1874), - [anon_sym_continue] = ACTIONS(1874), - [anon_sym_default] = ACTIONS(1874), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_fn] = ACTIONS(1874), - [anon_sym_for] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1874), - [anon_sym_impl] = ACTIONS(1874), - [anon_sym_let] = ACTIONS(1874), - [anon_sym_loop] = ACTIONS(1874), - [anon_sym_match] = ACTIONS(1874), - [anon_sym_mod] = ACTIONS(1874), - [anon_sym_pub] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1874), - [anon_sym_static] = ACTIONS(1874), - [anon_sym_struct] = ACTIONS(1874), - [anon_sym_trait] = ACTIONS(1874), - [anon_sym_type] = ACTIONS(1874), - [anon_sym_union] = ACTIONS(1874), - [anon_sym_unsafe] = ACTIONS(1874), - [anon_sym_use] = ACTIONS(1874), - [anon_sym_while] = ACTIONS(1874), - [anon_sym_POUND] = ACTIONS(1872), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1872), - [anon_sym_COLON_COLON] = ACTIONS(1872), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_DOT_DOT] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_yield] = ACTIONS(1874), - [anon_sym_move] = ACTIONS(1874), - [sym_integer_literal] = ACTIONS(1872), - [aux_sym_string_literal_token1] = ACTIONS(1872), - [sym_char_literal] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1874), - [sym_super] = ACTIONS(1874), - [sym_crate] = ACTIONS(1874), - [sym_metavariable] = ACTIONS(1872), - [sym_raw_string_literal] = ACTIONS(1872), - [sym_float_literal] = ACTIONS(1872), + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_macro_rules_BANG] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_u8] = ACTIONS(1872), + [anon_sym_i8] = ACTIONS(1872), + [anon_sym_u16] = ACTIONS(1872), + [anon_sym_i16] = ACTIONS(1872), + [anon_sym_u32] = ACTIONS(1872), + [anon_sym_i32] = ACTIONS(1872), + [anon_sym_u64] = ACTIONS(1872), + [anon_sym_i64] = ACTIONS(1872), + [anon_sym_u128] = ACTIONS(1872), + [anon_sym_i128] = ACTIONS(1872), + [anon_sym_isize] = ACTIONS(1872), + [anon_sym_usize] = ACTIONS(1872), + [anon_sym_f32] = ACTIONS(1872), + [anon_sym_f64] = ACTIONS(1872), + [anon_sym_bool] = ACTIONS(1872), + [anon_sym_str] = ACTIONS(1872), + [anon_sym_char] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_fn] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_impl] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_mod] = ACTIONS(1872), + [anon_sym_pub] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_trait] = ACTIONS(1872), + [anon_sym_type] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_unsafe] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1870), + [anon_sym_COLON_COLON] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_DOT_DOT] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_move] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(1870), + [aux_sym_string_literal_token1] = ACTIONS(1870), + [sym_char_literal] = ACTIONS(1870), + [anon_sym_true] = ACTIONS(1872), + [anon_sym_false] = ACTIONS(1872), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_crate] = ACTIONS(1872), + [sym_metavariable] = ACTIONS(1870), + [sym_raw_string_literal] = ACTIONS(1870), + [sym_float_literal] = ACTIONS(1870), [sym_block_comment] = ACTIONS(3), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_identifier] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1876), - [anon_sym_macro_rules_BANG] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_STAR] = ACTIONS(1876), - [anon_sym_u8] = ACTIONS(1878), - [anon_sym_i8] = ACTIONS(1878), - [anon_sym_u16] = ACTIONS(1878), - [anon_sym_i16] = ACTIONS(1878), - [anon_sym_u32] = ACTIONS(1878), - [anon_sym_i32] = ACTIONS(1878), - [anon_sym_u64] = ACTIONS(1878), - [anon_sym_i64] = ACTIONS(1878), - [anon_sym_u128] = ACTIONS(1878), - [anon_sym_i128] = ACTIONS(1878), - [anon_sym_isize] = ACTIONS(1878), - [anon_sym_usize] = ACTIONS(1878), - [anon_sym_f32] = ACTIONS(1878), - [anon_sym_f64] = ACTIONS(1878), - [anon_sym_bool] = ACTIONS(1878), - [anon_sym_str] = ACTIONS(1878), - [anon_sym_char] = ACTIONS(1878), - [anon_sym_SQUOTE] = ACTIONS(1878), - [anon_sym_async] = ACTIONS(1878), - [anon_sym_break] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(1878), - [anon_sym_continue] = ACTIONS(1878), - [anon_sym_default] = ACTIONS(1878), - [anon_sym_enum] = ACTIONS(1878), - [anon_sym_fn] = ACTIONS(1878), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1878), - [anon_sym_impl] = ACTIONS(1878), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_loop] = ACTIONS(1878), - [anon_sym_match] = ACTIONS(1878), - [anon_sym_mod] = ACTIONS(1878), - [anon_sym_pub] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1878), - [anon_sym_static] = ACTIONS(1878), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_trait] = ACTIONS(1878), - [anon_sym_type] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1878), - [anon_sym_unsafe] = ACTIONS(1878), - [anon_sym_use] = ACTIONS(1878), - [anon_sym_while] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_COLON_COLON] = ACTIONS(1876), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_yield] = ACTIONS(1878), - [anon_sym_move] = ACTIONS(1878), - [sym_integer_literal] = ACTIONS(1876), - [aux_sym_string_literal_token1] = ACTIONS(1876), - [sym_char_literal] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1878), - [sym_super] = ACTIONS(1878), - [sym_crate] = ACTIONS(1878), - [sym_metavariable] = ACTIONS(1876), - [sym_raw_string_literal] = ACTIONS(1876), - [sym_float_literal] = ACTIONS(1876), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_macro_rules_BANG] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_u8] = ACTIONS(1876), + [anon_sym_i8] = ACTIONS(1876), + [anon_sym_u16] = ACTIONS(1876), + [anon_sym_i16] = ACTIONS(1876), + [anon_sym_u32] = ACTIONS(1876), + [anon_sym_i32] = ACTIONS(1876), + [anon_sym_u64] = ACTIONS(1876), + [anon_sym_i64] = ACTIONS(1876), + [anon_sym_u128] = ACTIONS(1876), + [anon_sym_i128] = ACTIONS(1876), + [anon_sym_isize] = ACTIONS(1876), + [anon_sym_usize] = ACTIONS(1876), + [anon_sym_f32] = ACTIONS(1876), + [anon_sym_f64] = ACTIONS(1876), + [anon_sym_bool] = ACTIONS(1876), + [anon_sym_str] = ACTIONS(1876), + [anon_sym_char] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1876), + [anon_sym_async] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_fn] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_impl] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_mod] = ACTIONS(1876), + [anon_sym_pub] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_trait] = ACTIONS(1876), + [anon_sym_type] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_unsafe] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_COLON_COLON] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1876), + [anon_sym_move] = ACTIONS(1876), + [sym_integer_literal] = ACTIONS(1874), + [aux_sym_string_literal_token1] = ACTIONS(1874), + [sym_char_literal] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1876), + [anon_sym_false] = ACTIONS(1876), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_crate] = ACTIONS(1876), + [sym_metavariable] = ACTIONS(1874), + [sym_raw_string_literal] = ACTIONS(1874), + [sym_float_literal] = ACTIONS(1874), [sym_block_comment] = ACTIONS(3), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(1880), - [sym_identifier] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1880), - [anon_sym_macro_rules_BANG] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_STAR] = ACTIONS(1880), - [anon_sym_u8] = ACTIONS(1882), - [anon_sym_i8] = ACTIONS(1882), - [anon_sym_u16] = ACTIONS(1882), - [anon_sym_i16] = ACTIONS(1882), - [anon_sym_u32] = ACTIONS(1882), - [anon_sym_i32] = ACTIONS(1882), - [anon_sym_u64] = ACTIONS(1882), - [anon_sym_i64] = ACTIONS(1882), - [anon_sym_u128] = ACTIONS(1882), - [anon_sym_i128] = ACTIONS(1882), - [anon_sym_isize] = ACTIONS(1882), - [anon_sym_usize] = ACTIONS(1882), - [anon_sym_f32] = ACTIONS(1882), - [anon_sym_f64] = ACTIONS(1882), - [anon_sym_bool] = ACTIONS(1882), - [anon_sym_str] = ACTIONS(1882), - [anon_sym_char] = ACTIONS(1882), - [anon_sym_SQUOTE] = ACTIONS(1882), - [anon_sym_async] = ACTIONS(1882), - [anon_sym_break] = ACTIONS(1882), - [anon_sym_const] = ACTIONS(1882), - [anon_sym_continue] = ACTIONS(1882), - [anon_sym_default] = ACTIONS(1882), - [anon_sym_enum] = ACTIONS(1882), - [anon_sym_fn] = ACTIONS(1882), - [anon_sym_for] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1882), - [anon_sym_impl] = ACTIONS(1882), - [anon_sym_let] = ACTIONS(1882), - [anon_sym_loop] = ACTIONS(1882), - [anon_sym_match] = ACTIONS(1882), - [anon_sym_mod] = ACTIONS(1882), - [anon_sym_pub] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1882), - [anon_sym_static] = ACTIONS(1882), - [anon_sym_struct] = ACTIONS(1882), - [anon_sym_trait] = ACTIONS(1882), - [anon_sym_type] = ACTIONS(1882), - [anon_sym_union] = ACTIONS(1882), - [anon_sym_unsafe] = ACTIONS(1882), - [anon_sym_use] = ACTIONS(1882), - [anon_sym_while] = ACTIONS(1882), - [anon_sym_POUND] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_DOT_DOT] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_yield] = ACTIONS(1882), - [anon_sym_move] = ACTIONS(1882), - [sym_integer_literal] = ACTIONS(1880), - [aux_sym_string_literal_token1] = ACTIONS(1880), - [sym_char_literal] = ACTIONS(1880), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1882), - [sym_super] = ACTIONS(1882), - [sym_crate] = ACTIONS(1882), - [sym_metavariable] = ACTIONS(1880), - [sym_raw_string_literal] = ACTIONS(1880), - [sym_float_literal] = ACTIONS(1880), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_macro_rules_BANG] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_u8] = ACTIONS(1880), + [anon_sym_i8] = ACTIONS(1880), + [anon_sym_u16] = ACTIONS(1880), + [anon_sym_i16] = ACTIONS(1880), + [anon_sym_u32] = ACTIONS(1880), + [anon_sym_i32] = ACTIONS(1880), + [anon_sym_u64] = ACTIONS(1880), + [anon_sym_i64] = ACTIONS(1880), + [anon_sym_u128] = ACTIONS(1880), + [anon_sym_i128] = ACTIONS(1880), + [anon_sym_isize] = ACTIONS(1880), + [anon_sym_usize] = ACTIONS(1880), + [anon_sym_f32] = ACTIONS(1880), + [anon_sym_f64] = ACTIONS(1880), + [anon_sym_bool] = ACTIONS(1880), + [anon_sym_str] = ACTIONS(1880), + [anon_sym_char] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_fn] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_impl] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_mod] = ACTIONS(1880), + [anon_sym_pub] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_struct] = ACTIONS(1880), + [anon_sym_trait] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_unsafe] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_move] = ACTIONS(1880), + [sym_integer_literal] = ACTIONS(1878), + [aux_sym_string_literal_token1] = ACTIONS(1878), + [sym_char_literal] = ACTIONS(1878), + [anon_sym_true] = ACTIONS(1880), + [anon_sym_false] = ACTIONS(1880), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1878), + [sym_raw_string_literal] = ACTIONS(1878), + [sym_float_literal] = ACTIONS(1878), [sym_block_comment] = ACTIONS(3), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_identifier] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_macro_rules_BANG] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_STAR] = ACTIONS(1884), - [anon_sym_u8] = ACTIONS(1886), - [anon_sym_i8] = ACTIONS(1886), - [anon_sym_u16] = ACTIONS(1886), - [anon_sym_i16] = ACTIONS(1886), - [anon_sym_u32] = ACTIONS(1886), - [anon_sym_i32] = ACTIONS(1886), - [anon_sym_u64] = ACTIONS(1886), - [anon_sym_i64] = ACTIONS(1886), - [anon_sym_u128] = ACTIONS(1886), - [anon_sym_i128] = ACTIONS(1886), - [anon_sym_isize] = ACTIONS(1886), - [anon_sym_usize] = ACTIONS(1886), - [anon_sym_f32] = ACTIONS(1886), - [anon_sym_f64] = ACTIONS(1886), - [anon_sym_bool] = ACTIONS(1886), - [anon_sym_str] = ACTIONS(1886), - [anon_sym_char] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_async] = ACTIONS(1886), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_const] = ACTIONS(1886), - [anon_sym_continue] = ACTIONS(1886), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1886), - [anon_sym_fn] = ACTIONS(1886), - [anon_sym_for] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1886), - [anon_sym_impl] = ACTIONS(1886), - [anon_sym_let] = ACTIONS(1886), - [anon_sym_loop] = ACTIONS(1886), - [anon_sym_match] = ACTIONS(1886), - [anon_sym_mod] = ACTIONS(1886), - [anon_sym_pub] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1886), - [anon_sym_static] = ACTIONS(1886), - [anon_sym_struct] = ACTIONS(1886), - [anon_sym_trait] = ACTIONS(1886), - [anon_sym_type] = ACTIONS(1886), - [anon_sym_union] = ACTIONS(1886), - [anon_sym_unsafe] = ACTIONS(1886), - [anon_sym_use] = ACTIONS(1886), - [anon_sym_while] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1884), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_COLON_COLON] = ACTIONS(1884), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_DOT_DOT] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_yield] = ACTIONS(1886), - [anon_sym_move] = ACTIONS(1886), - [sym_integer_literal] = ACTIONS(1884), - [aux_sym_string_literal_token1] = ACTIONS(1884), - [sym_char_literal] = ACTIONS(1884), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1886), - [sym_super] = ACTIONS(1886), - [sym_crate] = ACTIONS(1886), - [sym_metavariable] = ACTIONS(1884), - [sym_raw_string_literal] = ACTIONS(1884), - [sym_float_literal] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_macro_rules_BANG] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_u8] = ACTIONS(1884), + [anon_sym_i8] = ACTIONS(1884), + [anon_sym_u16] = ACTIONS(1884), + [anon_sym_i16] = ACTIONS(1884), + [anon_sym_u32] = ACTIONS(1884), + [anon_sym_i32] = ACTIONS(1884), + [anon_sym_u64] = ACTIONS(1884), + [anon_sym_i64] = ACTIONS(1884), + [anon_sym_u128] = ACTIONS(1884), + [anon_sym_i128] = ACTIONS(1884), + [anon_sym_isize] = ACTIONS(1884), + [anon_sym_usize] = ACTIONS(1884), + [anon_sym_f32] = ACTIONS(1884), + [anon_sym_f64] = ACTIONS(1884), + [anon_sym_bool] = ACTIONS(1884), + [anon_sym_str] = ACTIONS(1884), + [anon_sym_char] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_async] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_impl] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_loop] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [anon_sym_mod] = ACTIONS(1884), + [anon_sym_pub] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_struct] = ACTIONS(1884), + [anon_sym_trait] = ACTIONS(1884), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_union] = ACTIONS(1884), + [anon_sym_unsafe] = ACTIONS(1884), + [anon_sym_use] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_COLON_COLON] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_yield] = ACTIONS(1884), + [anon_sym_move] = ACTIONS(1884), + [sym_integer_literal] = ACTIONS(1882), + [aux_sym_string_literal_token1] = ACTIONS(1882), + [sym_char_literal] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_crate] = ACTIONS(1884), + [sym_metavariable] = ACTIONS(1882), + [sym_raw_string_literal] = ACTIONS(1882), + [sym_float_literal] = ACTIONS(1882), [sym_block_comment] = ACTIONS(3), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(1888), - [sym_identifier] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_macro_rules_BANG] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1888), - [anon_sym_u8] = ACTIONS(1890), - [anon_sym_i8] = ACTIONS(1890), - [anon_sym_u16] = ACTIONS(1890), - [anon_sym_i16] = ACTIONS(1890), - [anon_sym_u32] = ACTIONS(1890), - [anon_sym_i32] = ACTIONS(1890), - [anon_sym_u64] = ACTIONS(1890), - [anon_sym_i64] = ACTIONS(1890), - [anon_sym_u128] = ACTIONS(1890), - [anon_sym_i128] = ACTIONS(1890), - [anon_sym_isize] = ACTIONS(1890), - [anon_sym_usize] = ACTIONS(1890), - [anon_sym_f32] = ACTIONS(1890), - [anon_sym_f64] = ACTIONS(1890), - [anon_sym_bool] = ACTIONS(1890), - [anon_sym_str] = ACTIONS(1890), - [anon_sym_char] = ACTIONS(1890), - [anon_sym_SQUOTE] = ACTIONS(1890), - [anon_sym_async] = ACTIONS(1890), - [anon_sym_break] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1890), - [anon_sym_continue] = ACTIONS(1890), - [anon_sym_default] = ACTIONS(1890), - [anon_sym_enum] = ACTIONS(1890), - [anon_sym_fn] = ACTIONS(1890), - [anon_sym_for] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1890), - [anon_sym_impl] = ACTIONS(1890), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_loop] = ACTIONS(1890), - [anon_sym_match] = ACTIONS(1890), - [anon_sym_mod] = ACTIONS(1890), - [anon_sym_pub] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1890), - [anon_sym_static] = ACTIONS(1890), - [anon_sym_struct] = ACTIONS(1890), - [anon_sym_trait] = ACTIONS(1890), - [anon_sym_type] = ACTIONS(1890), - [anon_sym_union] = ACTIONS(1890), - [anon_sym_unsafe] = ACTIONS(1890), - [anon_sym_use] = ACTIONS(1890), - [anon_sym_while] = ACTIONS(1890), - [anon_sym_POUND] = ACTIONS(1888), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_COLON_COLON] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_yield] = ACTIONS(1890), - [anon_sym_move] = ACTIONS(1890), - [sym_integer_literal] = ACTIONS(1888), - [aux_sym_string_literal_token1] = ACTIONS(1888), - [sym_char_literal] = ACTIONS(1888), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1890), - [sym_super] = ACTIONS(1890), - [sym_crate] = ACTIONS(1890), - [sym_metavariable] = ACTIONS(1888), - [sym_raw_string_literal] = ACTIONS(1888), - [sym_float_literal] = ACTIONS(1888), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_macro_rules_BANG] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_u8] = ACTIONS(1888), + [anon_sym_i8] = ACTIONS(1888), + [anon_sym_u16] = ACTIONS(1888), + [anon_sym_i16] = ACTIONS(1888), + [anon_sym_u32] = ACTIONS(1888), + [anon_sym_i32] = ACTIONS(1888), + [anon_sym_u64] = ACTIONS(1888), + [anon_sym_i64] = ACTIONS(1888), + [anon_sym_u128] = ACTIONS(1888), + [anon_sym_i128] = ACTIONS(1888), + [anon_sym_isize] = ACTIONS(1888), + [anon_sym_usize] = ACTIONS(1888), + [anon_sym_f32] = ACTIONS(1888), + [anon_sym_f64] = ACTIONS(1888), + [anon_sym_bool] = ACTIONS(1888), + [anon_sym_str] = ACTIONS(1888), + [anon_sym_char] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1888), + [anon_sym_async] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_fn] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_impl] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_mod] = ACTIONS(1888), + [anon_sym_pub] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_trait] = ACTIONS(1888), + [anon_sym_type] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_unsafe] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_COLON_COLON] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1888), + [anon_sym_move] = ACTIONS(1888), + [sym_integer_literal] = ACTIONS(1886), + [aux_sym_string_literal_token1] = ACTIONS(1886), + [sym_char_literal] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_crate] = ACTIONS(1888), + [sym_metavariable] = ACTIONS(1886), + [sym_raw_string_literal] = ACTIONS(1886), + [sym_float_literal] = ACTIONS(1886), [sym_block_comment] = ACTIONS(3), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(1892), - [sym_identifier] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_macro_rules_BANG] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_STAR] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_default] = ACTIONS(1894), - [anon_sym_enum] = ACTIONS(1894), - [anon_sym_fn] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_impl] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_mod] = ACTIONS(1894), - [anon_sym_pub] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_static] = ACTIONS(1894), - [anon_sym_struct] = ACTIONS(1894), - [anon_sym_trait] = ACTIONS(1894), - [anon_sym_type] = ACTIONS(1894), - [anon_sym_union] = ACTIONS(1894), - [anon_sym_unsafe] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_COLON_COLON] = ACTIONS(1892), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_DOT_DOT] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_yield] = ACTIONS(1894), - [anon_sym_move] = ACTIONS(1894), - [sym_integer_literal] = ACTIONS(1892), - [aux_sym_string_literal_token1] = ACTIONS(1892), - [sym_char_literal] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1894), - [sym_super] = ACTIONS(1894), - [sym_crate] = ACTIONS(1894), - [sym_metavariable] = ACTIONS(1892), - [sym_raw_string_literal] = ACTIONS(1892), - [sym_float_literal] = ACTIONS(1892), + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_macro_rules_BANG] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_u8] = ACTIONS(1892), + [anon_sym_i8] = ACTIONS(1892), + [anon_sym_u16] = ACTIONS(1892), + [anon_sym_i16] = ACTIONS(1892), + [anon_sym_u32] = ACTIONS(1892), + [anon_sym_i32] = ACTIONS(1892), + [anon_sym_u64] = ACTIONS(1892), + [anon_sym_i64] = ACTIONS(1892), + [anon_sym_u128] = ACTIONS(1892), + [anon_sym_i128] = ACTIONS(1892), + [anon_sym_isize] = ACTIONS(1892), + [anon_sym_usize] = ACTIONS(1892), + [anon_sym_f32] = ACTIONS(1892), + [anon_sym_f64] = ACTIONS(1892), + [anon_sym_bool] = ACTIONS(1892), + [anon_sym_str] = ACTIONS(1892), + [anon_sym_char] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1892), + [anon_sym_async] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_fn] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_impl] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_mod] = ACTIONS(1892), + [anon_sym_pub] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1892), + [anon_sym_trait] = ACTIONS(1892), + [anon_sym_type] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_unsafe] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_COLON_COLON] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1892), + [anon_sym_move] = ACTIONS(1892), + [sym_integer_literal] = ACTIONS(1890), + [aux_sym_string_literal_token1] = ACTIONS(1890), + [sym_char_literal] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1892), + [sym_super] = ACTIONS(1892), + [sym_crate] = ACTIONS(1892), + [sym_metavariable] = ACTIONS(1890), + [sym_raw_string_literal] = ACTIONS(1890), + [sym_float_literal] = ACTIONS(1890), [sym_block_comment] = ACTIONS(3), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_identifier] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_macro_rules_BANG] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_u8] = ACTIONS(1898), - [anon_sym_i8] = ACTIONS(1898), - [anon_sym_u16] = ACTIONS(1898), - [anon_sym_i16] = ACTIONS(1898), - [anon_sym_u32] = ACTIONS(1898), - [anon_sym_i32] = ACTIONS(1898), - [anon_sym_u64] = ACTIONS(1898), - [anon_sym_i64] = ACTIONS(1898), - [anon_sym_u128] = ACTIONS(1898), - [anon_sym_i128] = ACTIONS(1898), - [anon_sym_isize] = ACTIONS(1898), - [anon_sym_usize] = ACTIONS(1898), - [anon_sym_f32] = ACTIONS(1898), - [anon_sym_f64] = ACTIONS(1898), - [anon_sym_bool] = ACTIONS(1898), - [anon_sym_str] = ACTIONS(1898), - [anon_sym_char] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_async] = ACTIONS(1898), - [anon_sym_break] = ACTIONS(1898), - [anon_sym_const] = ACTIONS(1898), - [anon_sym_continue] = ACTIONS(1898), - [anon_sym_default] = ACTIONS(1898), - [anon_sym_enum] = ACTIONS(1898), - [anon_sym_fn] = ACTIONS(1898), - [anon_sym_for] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1898), - [anon_sym_impl] = ACTIONS(1898), - [anon_sym_let] = ACTIONS(1898), - [anon_sym_loop] = ACTIONS(1898), - [anon_sym_match] = ACTIONS(1898), - [anon_sym_mod] = ACTIONS(1898), - [anon_sym_pub] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1898), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1898), - [anon_sym_trait] = ACTIONS(1898), - [anon_sym_type] = ACTIONS(1898), - [anon_sym_union] = ACTIONS(1898), - [anon_sym_unsafe] = ACTIONS(1898), - [anon_sym_use] = ACTIONS(1898), - [anon_sym_while] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_COLON_COLON] = ACTIONS(1896), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_DOT_DOT] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(1898), - [anon_sym_move] = ACTIONS(1898), - [sym_integer_literal] = ACTIONS(1896), - [aux_sym_string_literal_token1] = ACTIONS(1896), - [sym_char_literal] = ACTIONS(1896), - [anon_sym_true] = ACTIONS(1898), - [anon_sym_false] = ACTIONS(1898), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1898), - [sym_super] = ACTIONS(1898), - [sym_crate] = ACTIONS(1898), - [sym_metavariable] = ACTIONS(1896), - [sym_raw_string_literal] = ACTIONS(1896), - [sym_float_literal] = ACTIONS(1896), + [ts_builtin_sym_end] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_macro_rules_BANG] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_u8] = ACTIONS(1896), + [anon_sym_i8] = ACTIONS(1896), + [anon_sym_u16] = ACTIONS(1896), + [anon_sym_i16] = ACTIONS(1896), + [anon_sym_u32] = ACTIONS(1896), + [anon_sym_i32] = ACTIONS(1896), + [anon_sym_u64] = ACTIONS(1896), + [anon_sym_i64] = ACTIONS(1896), + [anon_sym_u128] = ACTIONS(1896), + [anon_sym_i128] = ACTIONS(1896), + [anon_sym_isize] = ACTIONS(1896), + [anon_sym_usize] = ACTIONS(1896), + [anon_sym_f32] = ACTIONS(1896), + [anon_sym_f64] = ACTIONS(1896), + [anon_sym_bool] = ACTIONS(1896), + [anon_sym_str] = ACTIONS(1896), + [anon_sym_char] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_async] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_fn] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1896), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_loop] = ACTIONS(1896), + [anon_sym_match] = ACTIONS(1896), + [anon_sym_mod] = ACTIONS(1896), + [anon_sym_pub] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_trait] = ACTIONS(1896), + [anon_sym_type] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsafe] = ACTIONS(1896), + [anon_sym_use] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_COLON_COLON] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1896), + [anon_sym_move] = ACTIONS(1896), + [sym_integer_literal] = ACTIONS(1894), + [aux_sym_string_literal_token1] = ACTIONS(1894), + [sym_char_literal] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_crate] = ACTIONS(1896), + [sym_metavariable] = ACTIONS(1894), + [sym_raw_string_literal] = ACTIONS(1894), + [sym_float_literal] = ACTIONS(1894), [sym_block_comment] = ACTIONS(3), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(1900), - [sym_identifier] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_macro_rules_BANG] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1900), - [anon_sym_u8] = ACTIONS(1902), - [anon_sym_i8] = ACTIONS(1902), - [anon_sym_u16] = ACTIONS(1902), - [anon_sym_i16] = ACTIONS(1902), - [anon_sym_u32] = ACTIONS(1902), - [anon_sym_i32] = ACTIONS(1902), - [anon_sym_u64] = ACTIONS(1902), - [anon_sym_i64] = ACTIONS(1902), - [anon_sym_u128] = ACTIONS(1902), - [anon_sym_i128] = ACTIONS(1902), - [anon_sym_isize] = ACTIONS(1902), - [anon_sym_usize] = ACTIONS(1902), - [anon_sym_f32] = ACTIONS(1902), - [anon_sym_f64] = ACTIONS(1902), - [anon_sym_bool] = ACTIONS(1902), - [anon_sym_str] = ACTIONS(1902), - [anon_sym_char] = ACTIONS(1902), - [anon_sym_SQUOTE] = ACTIONS(1902), - [anon_sym_async] = ACTIONS(1902), - [anon_sym_break] = ACTIONS(1902), - [anon_sym_const] = ACTIONS(1902), - [anon_sym_continue] = ACTIONS(1902), - [anon_sym_default] = ACTIONS(1902), - [anon_sym_enum] = ACTIONS(1902), - [anon_sym_fn] = ACTIONS(1902), - [anon_sym_for] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1902), - [anon_sym_impl] = ACTIONS(1902), - [anon_sym_let] = ACTIONS(1902), - [anon_sym_loop] = ACTIONS(1902), - [anon_sym_match] = ACTIONS(1902), - [anon_sym_mod] = ACTIONS(1902), - [anon_sym_pub] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1902), - [anon_sym_static] = ACTIONS(1902), - [anon_sym_struct] = ACTIONS(1902), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1902), - [anon_sym_union] = ACTIONS(1902), - [anon_sym_unsafe] = ACTIONS(1902), - [anon_sym_use] = ACTIONS(1902), - [anon_sym_while] = ACTIONS(1902), - [anon_sym_POUND] = ACTIONS(1900), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1900), - [anon_sym_COLON_COLON] = ACTIONS(1900), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_yield] = ACTIONS(1902), - [anon_sym_move] = ACTIONS(1902), - [sym_integer_literal] = ACTIONS(1900), - [aux_sym_string_literal_token1] = ACTIONS(1900), - [sym_char_literal] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1900), - [sym_raw_string_literal] = ACTIONS(1900), - [sym_float_literal] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_macro_rules_BANG] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_u8] = ACTIONS(1900), + [anon_sym_i8] = ACTIONS(1900), + [anon_sym_u16] = ACTIONS(1900), + [anon_sym_i16] = ACTIONS(1900), + [anon_sym_u32] = ACTIONS(1900), + [anon_sym_i32] = ACTIONS(1900), + [anon_sym_u64] = ACTIONS(1900), + [anon_sym_i64] = ACTIONS(1900), + [anon_sym_u128] = ACTIONS(1900), + [anon_sym_i128] = ACTIONS(1900), + [anon_sym_isize] = ACTIONS(1900), + [anon_sym_usize] = ACTIONS(1900), + [anon_sym_f32] = ACTIONS(1900), + [anon_sym_f64] = ACTIONS(1900), + [anon_sym_bool] = ACTIONS(1900), + [anon_sym_str] = ACTIONS(1900), + [anon_sym_char] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1900), + [anon_sym_async] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_fn] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_impl] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1900), + [anon_sym_pub] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_trait] = ACTIONS(1900), + [anon_sym_type] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsafe] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_yield] = ACTIONS(1900), + [anon_sym_move] = ACTIONS(1900), + [sym_integer_literal] = ACTIONS(1898), + [aux_sym_string_literal_token1] = ACTIONS(1898), + [sym_char_literal] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_crate] = ACTIONS(1900), + [sym_metavariable] = ACTIONS(1898), + [sym_raw_string_literal] = ACTIONS(1898), + [sym_float_literal] = ACTIONS(1898), [sym_block_comment] = ACTIONS(3), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(1904), - [sym_identifier] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1904), - [anon_sym_macro_rules_BANG] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1904), - [anon_sym_STAR] = ACTIONS(1904), - [anon_sym_u8] = ACTIONS(1906), - [anon_sym_i8] = ACTIONS(1906), - [anon_sym_u16] = ACTIONS(1906), - [anon_sym_i16] = ACTIONS(1906), - [anon_sym_u32] = ACTIONS(1906), - [anon_sym_i32] = ACTIONS(1906), - [anon_sym_u64] = ACTIONS(1906), - [anon_sym_i64] = ACTIONS(1906), - [anon_sym_u128] = ACTIONS(1906), - [anon_sym_i128] = ACTIONS(1906), - [anon_sym_isize] = ACTIONS(1906), - [anon_sym_usize] = ACTIONS(1906), - [anon_sym_f32] = ACTIONS(1906), - [anon_sym_f64] = ACTIONS(1906), - [anon_sym_bool] = ACTIONS(1906), - [anon_sym_str] = ACTIONS(1906), - [anon_sym_char] = ACTIONS(1906), - [anon_sym_SQUOTE] = ACTIONS(1906), - [anon_sym_async] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1906), - [anon_sym_const] = ACTIONS(1906), - [anon_sym_continue] = ACTIONS(1906), - [anon_sym_default] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1906), - [anon_sym_fn] = ACTIONS(1906), - [anon_sym_for] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_impl] = ACTIONS(1906), - [anon_sym_let] = ACTIONS(1906), - [anon_sym_loop] = ACTIONS(1906), - [anon_sym_match] = ACTIONS(1906), - [anon_sym_mod] = ACTIONS(1906), - [anon_sym_pub] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_static] = ACTIONS(1906), - [anon_sym_struct] = ACTIONS(1906), - [anon_sym_trait] = ACTIONS(1906), - [anon_sym_type] = ACTIONS(1906), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1906), - [anon_sym_use] = ACTIONS(1906), - [anon_sym_while] = ACTIONS(1906), - [anon_sym_POUND] = ACTIONS(1904), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_COLON_COLON] = ACTIONS(1904), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_DOT_DOT] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_yield] = ACTIONS(1906), - [anon_sym_move] = ACTIONS(1906), - [sym_integer_literal] = ACTIONS(1904), - [aux_sym_string_literal_token1] = ACTIONS(1904), - [sym_char_literal] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1906), - [sym_super] = ACTIONS(1906), - [sym_crate] = ACTIONS(1906), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(1904), - [sym_float_literal] = ACTIONS(1904), + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_macro_rules_BANG] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_u8] = ACTIONS(1904), + [anon_sym_i8] = ACTIONS(1904), + [anon_sym_u16] = ACTIONS(1904), + [anon_sym_i16] = ACTIONS(1904), + [anon_sym_u32] = ACTIONS(1904), + [anon_sym_i32] = ACTIONS(1904), + [anon_sym_u64] = ACTIONS(1904), + [anon_sym_i64] = ACTIONS(1904), + [anon_sym_u128] = ACTIONS(1904), + [anon_sym_i128] = ACTIONS(1904), + [anon_sym_isize] = ACTIONS(1904), + [anon_sym_usize] = ACTIONS(1904), + [anon_sym_f32] = ACTIONS(1904), + [anon_sym_f64] = ACTIONS(1904), + [anon_sym_bool] = ACTIONS(1904), + [anon_sym_str] = ACTIONS(1904), + [anon_sym_char] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_async] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_fn] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_impl] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_mod] = ACTIONS(1904), + [anon_sym_pub] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_trait] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsafe] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_yield] = ACTIONS(1904), + [anon_sym_move] = ACTIONS(1904), + [sym_integer_literal] = ACTIONS(1902), + [aux_sym_string_literal_token1] = ACTIONS(1902), + [sym_char_literal] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_crate] = ACTIONS(1904), + [sym_metavariable] = ACTIONS(1902), + [sym_raw_string_literal] = ACTIONS(1902), + [sym_float_literal] = ACTIONS(1902), [sym_block_comment] = ACTIONS(3), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(1908), - [sym_identifier] = ACTIONS(1910), - [anon_sym_SEMI] = ACTIONS(1908), - [anon_sym_macro_rules_BANG] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1908), - [anon_sym_u8] = ACTIONS(1910), - [anon_sym_i8] = ACTIONS(1910), - [anon_sym_u16] = ACTIONS(1910), - [anon_sym_i16] = ACTIONS(1910), - [anon_sym_u32] = ACTIONS(1910), - [anon_sym_i32] = ACTIONS(1910), - [anon_sym_u64] = ACTIONS(1910), - [anon_sym_i64] = ACTIONS(1910), - [anon_sym_u128] = ACTIONS(1910), - [anon_sym_i128] = ACTIONS(1910), - [anon_sym_isize] = ACTIONS(1910), - [anon_sym_usize] = ACTIONS(1910), - [anon_sym_f32] = ACTIONS(1910), - [anon_sym_f64] = ACTIONS(1910), - [anon_sym_bool] = ACTIONS(1910), - [anon_sym_str] = ACTIONS(1910), - [anon_sym_char] = ACTIONS(1910), - [anon_sym_SQUOTE] = ACTIONS(1910), - [anon_sym_async] = ACTIONS(1910), - [anon_sym_break] = ACTIONS(1910), - [anon_sym_const] = ACTIONS(1910), - [anon_sym_continue] = ACTIONS(1910), - [anon_sym_default] = ACTIONS(1910), - [anon_sym_enum] = ACTIONS(1910), - [anon_sym_fn] = ACTIONS(1910), - [anon_sym_for] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1910), - [anon_sym_impl] = ACTIONS(1910), - [anon_sym_let] = ACTIONS(1910), - [anon_sym_loop] = ACTIONS(1910), - [anon_sym_match] = ACTIONS(1910), - [anon_sym_mod] = ACTIONS(1910), - [anon_sym_pub] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1910), - [anon_sym_static] = ACTIONS(1910), - [anon_sym_struct] = ACTIONS(1910), - [anon_sym_trait] = ACTIONS(1910), - [anon_sym_type] = ACTIONS(1910), - [anon_sym_union] = ACTIONS(1910), - [anon_sym_unsafe] = ACTIONS(1910), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_while] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1908), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1908), - [anon_sym_COLON_COLON] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_DOT_DOT] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_yield] = ACTIONS(1910), - [anon_sym_move] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1908), - [aux_sym_string_literal_token1] = ACTIONS(1908), - [sym_char_literal] = ACTIONS(1908), - [anon_sym_true] = ACTIONS(1910), - [anon_sym_false] = ACTIONS(1910), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1910), - [sym_super] = ACTIONS(1910), - [sym_crate] = ACTIONS(1910), - [sym_metavariable] = ACTIONS(1908), - [sym_raw_string_literal] = ACTIONS(1908), - [sym_float_literal] = ACTIONS(1908), + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_macro_rules_BANG] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_u8] = ACTIONS(1908), + [anon_sym_i8] = ACTIONS(1908), + [anon_sym_u16] = ACTIONS(1908), + [anon_sym_i16] = ACTIONS(1908), + [anon_sym_u32] = ACTIONS(1908), + [anon_sym_i32] = ACTIONS(1908), + [anon_sym_u64] = ACTIONS(1908), + [anon_sym_i64] = ACTIONS(1908), + [anon_sym_u128] = ACTIONS(1908), + [anon_sym_i128] = ACTIONS(1908), + [anon_sym_isize] = ACTIONS(1908), + [anon_sym_usize] = ACTIONS(1908), + [anon_sym_f32] = ACTIONS(1908), + [anon_sym_f64] = ACTIONS(1908), + [anon_sym_bool] = ACTIONS(1908), + [anon_sym_str] = ACTIONS(1908), + [anon_sym_char] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_fn] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_impl] = ACTIONS(1908), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_loop] = ACTIONS(1908), + [anon_sym_match] = ACTIONS(1908), + [anon_sym_mod] = ACTIONS(1908), + [anon_sym_pub] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsafe] = ACTIONS(1908), + [anon_sym_use] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_COLON_COLON] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_yield] = ACTIONS(1908), + [anon_sym_move] = ACTIONS(1908), + [sym_integer_literal] = ACTIONS(1906), + [aux_sym_string_literal_token1] = ACTIONS(1906), + [sym_char_literal] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_crate] = ACTIONS(1908), + [sym_metavariable] = ACTIONS(1906), + [sym_raw_string_literal] = ACTIONS(1906), + [sym_float_literal] = ACTIONS(1906), [sym_block_comment] = ACTIONS(3), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(1912), - [sym_identifier] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_macro_rules_BANG] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_STAR] = ACTIONS(1912), - [anon_sym_u8] = ACTIONS(1914), - [anon_sym_i8] = ACTIONS(1914), - [anon_sym_u16] = ACTIONS(1914), - [anon_sym_i16] = ACTIONS(1914), - [anon_sym_u32] = ACTIONS(1914), - [anon_sym_i32] = ACTIONS(1914), - [anon_sym_u64] = ACTIONS(1914), - [anon_sym_i64] = ACTIONS(1914), - [anon_sym_u128] = ACTIONS(1914), - [anon_sym_i128] = ACTIONS(1914), - [anon_sym_isize] = ACTIONS(1914), - [anon_sym_usize] = ACTIONS(1914), - [anon_sym_f32] = ACTIONS(1914), - [anon_sym_f64] = ACTIONS(1914), - [anon_sym_bool] = ACTIONS(1914), - [anon_sym_str] = ACTIONS(1914), - [anon_sym_char] = ACTIONS(1914), - [anon_sym_SQUOTE] = ACTIONS(1914), - [anon_sym_async] = ACTIONS(1914), - [anon_sym_break] = ACTIONS(1914), - [anon_sym_const] = ACTIONS(1914), - [anon_sym_continue] = ACTIONS(1914), - [anon_sym_default] = ACTIONS(1914), - [anon_sym_enum] = ACTIONS(1914), - [anon_sym_fn] = ACTIONS(1914), - [anon_sym_for] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1914), - [anon_sym_impl] = ACTIONS(1914), - [anon_sym_let] = ACTIONS(1914), - [anon_sym_loop] = ACTIONS(1914), - [anon_sym_match] = ACTIONS(1914), - [anon_sym_mod] = ACTIONS(1914), - [anon_sym_pub] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1914), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_trait] = ACTIONS(1914), - [anon_sym_type] = ACTIONS(1914), - [anon_sym_union] = ACTIONS(1914), - [anon_sym_unsafe] = ACTIONS(1914), - [anon_sym_use] = ACTIONS(1914), - [anon_sym_while] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(1912), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_COLON_COLON] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_yield] = ACTIONS(1914), - [anon_sym_move] = ACTIONS(1914), - [sym_integer_literal] = ACTIONS(1912), - [aux_sym_string_literal_token1] = ACTIONS(1912), - [sym_char_literal] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1914), - [sym_metavariable] = ACTIONS(1912), - [sym_raw_string_literal] = ACTIONS(1912), - [sym_float_literal] = ACTIONS(1912), + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_macro_rules_BANG] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_u8] = ACTIONS(1912), + [anon_sym_i8] = ACTIONS(1912), + [anon_sym_u16] = ACTIONS(1912), + [anon_sym_i16] = ACTIONS(1912), + [anon_sym_u32] = ACTIONS(1912), + [anon_sym_i32] = ACTIONS(1912), + [anon_sym_u64] = ACTIONS(1912), + [anon_sym_i64] = ACTIONS(1912), + [anon_sym_u128] = ACTIONS(1912), + [anon_sym_i128] = ACTIONS(1912), + [anon_sym_isize] = ACTIONS(1912), + [anon_sym_usize] = ACTIONS(1912), + [anon_sym_f32] = ACTIONS(1912), + [anon_sym_f64] = ACTIONS(1912), + [anon_sym_bool] = ACTIONS(1912), + [anon_sym_str] = ACTIONS(1912), + [anon_sym_char] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1912), + [anon_sym_async] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_fn] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_impl] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1912), + [anon_sym_loop] = ACTIONS(1912), + [anon_sym_match] = ACTIONS(1912), + [anon_sym_mod] = ACTIONS(1912), + [anon_sym_pub] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_trait] = ACTIONS(1912), + [anon_sym_type] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1912), + [anon_sym_use] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1910), + [anon_sym_COLON_COLON] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_DOT_DOT] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1910), + [anon_sym_yield] = ACTIONS(1912), + [anon_sym_move] = ACTIONS(1912), + [sym_integer_literal] = ACTIONS(1910), + [aux_sym_string_literal_token1] = ACTIONS(1910), + [sym_char_literal] = ACTIONS(1910), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_crate] = ACTIONS(1912), + [sym_metavariable] = ACTIONS(1910), + [sym_raw_string_literal] = ACTIONS(1910), + [sym_float_literal] = ACTIONS(1910), [sym_block_comment] = ACTIONS(3), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1916), - [sym_identifier] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1916), - [anon_sym_macro_rules_BANG] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_u8] = ACTIONS(1918), - [anon_sym_i8] = ACTIONS(1918), - [anon_sym_u16] = ACTIONS(1918), - [anon_sym_i16] = ACTIONS(1918), - [anon_sym_u32] = ACTIONS(1918), - [anon_sym_i32] = ACTIONS(1918), - [anon_sym_u64] = ACTIONS(1918), - [anon_sym_i64] = ACTIONS(1918), - [anon_sym_u128] = ACTIONS(1918), - [anon_sym_i128] = ACTIONS(1918), - [anon_sym_isize] = ACTIONS(1918), - [anon_sym_usize] = ACTIONS(1918), - [anon_sym_f32] = ACTIONS(1918), - [anon_sym_f64] = ACTIONS(1918), - [anon_sym_bool] = ACTIONS(1918), - [anon_sym_str] = ACTIONS(1918), - [anon_sym_char] = ACTIONS(1918), - [anon_sym_SQUOTE] = ACTIONS(1918), - [anon_sym_async] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_const] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_default] = ACTIONS(1918), - [anon_sym_enum] = ACTIONS(1918), - [anon_sym_fn] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1918), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_impl] = ACTIONS(1918), - [anon_sym_let] = ACTIONS(1918), - [anon_sym_loop] = ACTIONS(1918), - [anon_sym_match] = ACTIONS(1918), - [anon_sym_mod] = ACTIONS(1918), - [anon_sym_pub] = ACTIONS(1918), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_struct] = ACTIONS(1918), - [anon_sym_trait] = ACTIONS(1918), - [anon_sym_type] = ACTIONS(1918), - [anon_sym_union] = ACTIONS(1918), - [anon_sym_unsafe] = ACTIONS(1918), - [anon_sym_use] = ACTIONS(1918), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1916), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1916), - [anon_sym_COLON_COLON] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1916), - [anon_sym_DOT_DOT] = ACTIONS(1916), - [anon_sym_DASH] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_yield] = ACTIONS(1918), - [anon_sym_move] = ACTIONS(1918), - [sym_integer_literal] = ACTIONS(1916), - [aux_sym_string_literal_token1] = ACTIONS(1916), - [sym_char_literal] = ACTIONS(1916), - [anon_sym_true] = ACTIONS(1918), - [anon_sym_false] = ACTIONS(1918), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1918), - [sym_super] = ACTIONS(1918), - [sym_crate] = ACTIONS(1918), - [sym_metavariable] = ACTIONS(1916), - [sym_raw_string_literal] = ACTIONS(1916), - [sym_float_literal] = ACTIONS(1916), + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_macro_rules_BANG] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_u8] = ACTIONS(1916), + [anon_sym_i8] = ACTIONS(1916), + [anon_sym_u16] = ACTIONS(1916), + [anon_sym_i16] = ACTIONS(1916), + [anon_sym_u32] = ACTIONS(1916), + [anon_sym_i32] = ACTIONS(1916), + [anon_sym_u64] = ACTIONS(1916), + [anon_sym_i64] = ACTIONS(1916), + [anon_sym_u128] = ACTIONS(1916), + [anon_sym_i128] = ACTIONS(1916), + [anon_sym_isize] = ACTIONS(1916), + [anon_sym_usize] = ACTIONS(1916), + [anon_sym_f32] = ACTIONS(1916), + [anon_sym_f64] = ACTIONS(1916), + [anon_sym_bool] = ACTIONS(1916), + [anon_sym_str] = ACTIONS(1916), + [anon_sym_char] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_fn] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_impl] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1916), + [anon_sym_loop] = ACTIONS(1916), + [anon_sym_match] = ACTIONS(1916), + [anon_sym_mod] = ACTIONS(1916), + [anon_sym_pub] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_trait] = ACTIONS(1916), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_unsafe] = ACTIONS(1916), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_yield] = ACTIONS(1916), + [anon_sym_move] = ACTIONS(1916), + [sym_integer_literal] = ACTIONS(1914), + [aux_sym_string_literal_token1] = ACTIONS(1914), + [sym_char_literal] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_crate] = ACTIONS(1916), + [sym_metavariable] = ACTIONS(1914), + [sym_raw_string_literal] = ACTIONS(1914), + [sym_float_literal] = ACTIONS(1914), [sym_block_comment] = ACTIONS(3), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1920), - [sym_identifier] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1920), - [anon_sym_macro_rules_BANG] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_STAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1922), - [anon_sym_i8] = ACTIONS(1922), - [anon_sym_u16] = ACTIONS(1922), - [anon_sym_i16] = ACTIONS(1922), - [anon_sym_u32] = ACTIONS(1922), - [anon_sym_i32] = ACTIONS(1922), - [anon_sym_u64] = ACTIONS(1922), - [anon_sym_i64] = ACTIONS(1922), - [anon_sym_u128] = ACTIONS(1922), - [anon_sym_i128] = ACTIONS(1922), - [anon_sym_isize] = ACTIONS(1922), - [anon_sym_usize] = ACTIONS(1922), - [anon_sym_f32] = ACTIONS(1922), - [anon_sym_f64] = ACTIONS(1922), - [anon_sym_bool] = ACTIONS(1922), - [anon_sym_str] = ACTIONS(1922), - [anon_sym_char] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_async] = ACTIONS(1922), - [anon_sym_break] = ACTIONS(1922), - [anon_sym_const] = ACTIONS(1922), - [anon_sym_continue] = ACTIONS(1922), - [anon_sym_default] = ACTIONS(1922), - [anon_sym_enum] = ACTIONS(1922), - [anon_sym_fn] = ACTIONS(1922), - [anon_sym_for] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(1922), - [anon_sym_impl] = ACTIONS(1922), - [anon_sym_let] = ACTIONS(1922), - [anon_sym_loop] = ACTIONS(1922), - [anon_sym_match] = ACTIONS(1922), - [anon_sym_mod] = ACTIONS(1922), - [anon_sym_pub] = ACTIONS(1922), - [anon_sym_return] = ACTIONS(1922), - [anon_sym_static] = ACTIONS(1922), - [anon_sym_struct] = ACTIONS(1922), - [anon_sym_trait] = ACTIONS(1922), - [anon_sym_type] = ACTIONS(1922), - [anon_sym_union] = ACTIONS(1922), - [anon_sym_unsafe] = ACTIONS(1922), - [anon_sym_use] = ACTIONS(1922), - [anon_sym_while] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_COLON_COLON] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_yield] = ACTIONS(1922), - [anon_sym_move] = ACTIONS(1922), - [sym_integer_literal] = ACTIONS(1920), - [aux_sym_string_literal_token1] = ACTIONS(1920), - [sym_char_literal] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1922), - [anon_sym_false] = ACTIONS(1922), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1922), - [sym_super] = ACTIONS(1922), - [sym_crate] = ACTIONS(1922), - [sym_metavariable] = ACTIONS(1920), - [sym_raw_string_literal] = ACTIONS(1920), - [sym_float_literal] = ACTIONS(1920), + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_macro_rules_BANG] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_u8] = ACTIONS(1920), + [anon_sym_i8] = ACTIONS(1920), + [anon_sym_u16] = ACTIONS(1920), + [anon_sym_i16] = ACTIONS(1920), + [anon_sym_u32] = ACTIONS(1920), + [anon_sym_i32] = ACTIONS(1920), + [anon_sym_u64] = ACTIONS(1920), + [anon_sym_i64] = ACTIONS(1920), + [anon_sym_u128] = ACTIONS(1920), + [anon_sym_i128] = ACTIONS(1920), + [anon_sym_isize] = ACTIONS(1920), + [anon_sym_usize] = ACTIONS(1920), + [anon_sym_f32] = ACTIONS(1920), + [anon_sym_f64] = ACTIONS(1920), + [anon_sym_bool] = ACTIONS(1920), + [anon_sym_str] = ACTIONS(1920), + [anon_sym_char] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_fn] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_impl] = ACTIONS(1920), + [anon_sym_let] = ACTIONS(1920), + [anon_sym_loop] = ACTIONS(1920), + [anon_sym_match] = ACTIONS(1920), + [anon_sym_mod] = ACTIONS(1920), + [anon_sym_pub] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_trait] = ACTIONS(1920), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_unsafe] = ACTIONS(1920), + [anon_sym_use] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_COLON_COLON] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_DOT_DOT] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_yield] = ACTIONS(1920), + [anon_sym_move] = ACTIONS(1920), + [sym_integer_literal] = ACTIONS(1918), + [aux_sym_string_literal_token1] = ACTIONS(1918), + [sym_char_literal] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1920), + [anon_sym_false] = ACTIONS(1920), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1920), + [sym_metavariable] = ACTIONS(1918), + [sym_raw_string_literal] = ACTIONS(1918), + [sym_float_literal] = ACTIONS(1918), [sym_block_comment] = ACTIONS(3), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_identifier] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1924), - [anon_sym_macro_rules_BANG] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_STAR] = ACTIONS(1924), - [anon_sym_u8] = ACTIONS(1926), - [anon_sym_i8] = ACTIONS(1926), - [anon_sym_u16] = ACTIONS(1926), - [anon_sym_i16] = ACTIONS(1926), - [anon_sym_u32] = ACTIONS(1926), - [anon_sym_i32] = ACTIONS(1926), - [anon_sym_u64] = ACTIONS(1926), - [anon_sym_i64] = ACTIONS(1926), - [anon_sym_u128] = ACTIONS(1926), - [anon_sym_i128] = ACTIONS(1926), - [anon_sym_isize] = ACTIONS(1926), - [anon_sym_usize] = ACTIONS(1926), - [anon_sym_f32] = ACTIONS(1926), - [anon_sym_f64] = ACTIONS(1926), - [anon_sym_bool] = ACTIONS(1926), - [anon_sym_str] = ACTIONS(1926), - [anon_sym_char] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1926), - [anon_sym_async] = ACTIONS(1926), - [anon_sym_break] = ACTIONS(1926), - [anon_sym_const] = ACTIONS(1926), - [anon_sym_continue] = ACTIONS(1926), - [anon_sym_default] = ACTIONS(1926), - [anon_sym_enum] = ACTIONS(1926), - [anon_sym_fn] = ACTIONS(1926), - [anon_sym_for] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1926), - [anon_sym_impl] = ACTIONS(1926), - [anon_sym_let] = ACTIONS(1926), - [anon_sym_loop] = ACTIONS(1926), - [anon_sym_match] = ACTIONS(1926), - [anon_sym_mod] = ACTIONS(1926), - [anon_sym_pub] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1926), - [anon_sym_static] = ACTIONS(1926), - [anon_sym_struct] = ACTIONS(1926), - [anon_sym_trait] = ACTIONS(1926), - [anon_sym_type] = ACTIONS(1926), - [anon_sym_union] = ACTIONS(1926), - [anon_sym_unsafe] = ACTIONS(1926), - [anon_sym_use] = ACTIONS(1926), - [anon_sym_while] = ACTIONS(1926), - [anon_sym_POUND] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(1926), - [anon_sym_move] = ACTIONS(1926), - [sym_integer_literal] = ACTIONS(1924), - [aux_sym_string_literal_token1] = ACTIONS(1924), - [sym_char_literal] = ACTIONS(1924), - [anon_sym_true] = ACTIONS(1926), - [anon_sym_false] = ACTIONS(1926), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1926), - [sym_super] = ACTIONS(1926), - [sym_crate] = ACTIONS(1926), - [sym_metavariable] = ACTIONS(1924), - [sym_raw_string_literal] = ACTIONS(1924), - [sym_float_literal] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_u8] = ACTIONS(1924), + [anon_sym_i8] = ACTIONS(1924), + [anon_sym_u16] = ACTIONS(1924), + [anon_sym_i16] = ACTIONS(1924), + [anon_sym_u32] = ACTIONS(1924), + [anon_sym_i32] = ACTIONS(1924), + [anon_sym_u64] = ACTIONS(1924), + [anon_sym_i64] = ACTIONS(1924), + [anon_sym_u128] = ACTIONS(1924), + [anon_sym_i128] = ACTIONS(1924), + [anon_sym_isize] = ACTIONS(1924), + [anon_sym_usize] = ACTIONS(1924), + [anon_sym_f32] = ACTIONS(1924), + [anon_sym_f64] = ACTIONS(1924), + [anon_sym_bool] = ACTIONS(1924), + [anon_sym_str] = ACTIONS(1924), + [anon_sym_char] = ACTIONS(1924), + [anon_sym_SQUOTE] = ACTIONS(1924), + [anon_sym_async] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_fn] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_impl] = ACTIONS(1924), + [anon_sym_let] = ACTIONS(1924), + [anon_sym_loop] = ACTIONS(1924), + [anon_sym_match] = ACTIONS(1924), + [anon_sym_mod] = ACTIONS(1924), + [anon_sym_pub] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_trait] = ACTIONS(1924), + [anon_sym_type] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_unsafe] = ACTIONS(1924), + [anon_sym_use] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_COLON_COLON] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_yield] = ACTIONS(1924), + [anon_sym_move] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(1922), + [aux_sym_string_literal_token1] = ACTIONS(1922), + [sym_char_literal] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_crate] = ACTIONS(1924), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1922), + [sym_float_literal] = ACTIONS(1922), [sym_block_comment] = ACTIONS(3), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_macro_rules_BANG] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(1928), - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_STAR] = ACTIONS(1928), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_POUND] = ACTIONS(1928), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_COLON_COLON] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_DOT_DOT] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_yield] = ACTIONS(1930), - [anon_sym_move] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1928), - [aux_sym_string_literal_token1] = ACTIONS(1928), - [sym_char_literal] = ACTIONS(1928), - [anon_sym_true] = ACTIONS(1930), - [anon_sym_false] = ACTIONS(1930), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1928), - [sym_raw_string_literal] = ACTIONS(1928), - [sym_float_literal] = ACTIONS(1928), + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1928), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_macro_rules_BANG] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_impl] = ACTIONS(1928), + [anon_sym_let] = ACTIONS(1928), + [anon_sym_loop] = ACTIONS(1928), + [anon_sym_match] = ACTIONS(1928), + [anon_sym_mod] = ACTIONS(1928), + [anon_sym_pub] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_trait] = ACTIONS(1928), + [anon_sym_type] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_unsafe] = ACTIONS(1928), + [anon_sym_use] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_DOT_DOT] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_yield] = ACTIONS(1928), + [anon_sym_move] = ACTIONS(1928), + [sym_integer_literal] = ACTIONS(1926), + [aux_sym_string_literal_token1] = ACTIONS(1926), + [sym_char_literal] = ACTIONS(1926), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1928), + [sym_super] = ACTIONS(1928), + [sym_crate] = ACTIONS(1928), + [sym_metavariable] = ACTIONS(1926), + [sym_raw_string_literal] = ACTIONS(1926), + [sym_float_literal] = ACTIONS(1926), [sym_block_comment] = ACTIONS(3), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(1932), - [sym_identifier] = ACTIONS(1934), - [anon_sym_SEMI] = ACTIONS(1932), - [anon_sym_macro_rules_BANG] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_RBRACE] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1932), - [anon_sym_STAR] = ACTIONS(1932), - [anon_sym_u8] = ACTIONS(1934), - [anon_sym_i8] = ACTIONS(1934), - [anon_sym_u16] = ACTIONS(1934), - [anon_sym_i16] = ACTIONS(1934), - [anon_sym_u32] = ACTIONS(1934), - [anon_sym_i32] = ACTIONS(1934), - [anon_sym_u64] = ACTIONS(1934), - [anon_sym_i64] = ACTIONS(1934), - [anon_sym_u128] = ACTIONS(1934), - [anon_sym_i128] = ACTIONS(1934), - [anon_sym_isize] = ACTIONS(1934), - [anon_sym_usize] = ACTIONS(1934), - [anon_sym_f32] = ACTIONS(1934), - [anon_sym_f64] = ACTIONS(1934), - [anon_sym_bool] = ACTIONS(1934), - [anon_sym_str] = ACTIONS(1934), - [anon_sym_char] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [anon_sym_async] = ACTIONS(1934), - [anon_sym_break] = ACTIONS(1934), - [anon_sym_const] = ACTIONS(1934), - [anon_sym_continue] = ACTIONS(1934), - [anon_sym_default] = ACTIONS(1934), - [anon_sym_enum] = ACTIONS(1934), - [anon_sym_fn] = ACTIONS(1934), - [anon_sym_for] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1934), - [anon_sym_impl] = ACTIONS(1934), - [anon_sym_let] = ACTIONS(1934), - [anon_sym_loop] = ACTIONS(1934), - [anon_sym_match] = ACTIONS(1934), - [anon_sym_mod] = ACTIONS(1934), - [anon_sym_pub] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1934), - [anon_sym_static] = ACTIONS(1934), - [anon_sym_struct] = ACTIONS(1934), - [anon_sym_trait] = ACTIONS(1934), - [anon_sym_type] = ACTIONS(1934), - [anon_sym_union] = ACTIONS(1934), - [anon_sym_unsafe] = ACTIONS(1934), - [anon_sym_use] = ACTIONS(1934), - [anon_sym_while] = ACTIONS(1934), - [anon_sym_POUND] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_COLON_COLON] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_DOT_DOT] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1934), - [anon_sym_move] = ACTIONS(1934), - [sym_integer_literal] = ACTIONS(1932), - [aux_sym_string_literal_token1] = ACTIONS(1932), - [sym_char_literal] = ACTIONS(1932), - [anon_sym_true] = ACTIONS(1934), - [anon_sym_false] = ACTIONS(1934), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1934), - [sym_super] = ACTIONS(1934), - [sym_crate] = ACTIONS(1934), - [sym_metavariable] = ACTIONS(1932), - [sym_raw_string_literal] = ACTIONS(1932), - [sym_float_literal] = ACTIONS(1932), + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_macro_rules_BANG] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_u8] = ACTIONS(1932), + [anon_sym_i8] = ACTIONS(1932), + [anon_sym_u16] = ACTIONS(1932), + [anon_sym_i16] = ACTIONS(1932), + [anon_sym_u32] = ACTIONS(1932), + [anon_sym_i32] = ACTIONS(1932), + [anon_sym_u64] = ACTIONS(1932), + [anon_sym_i64] = ACTIONS(1932), + [anon_sym_u128] = ACTIONS(1932), + [anon_sym_i128] = ACTIONS(1932), + [anon_sym_isize] = ACTIONS(1932), + [anon_sym_usize] = ACTIONS(1932), + [anon_sym_f32] = ACTIONS(1932), + [anon_sym_f64] = ACTIONS(1932), + [anon_sym_bool] = ACTIONS(1932), + [anon_sym_str] = ACTIONS(1932), + [anon_sym_char] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_fn] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_impl] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_loop] = ACTIONS(1932), + [anon_sym_match] = ACTIONS(1932), + [anon_sym_mod] = ACTIONS(1932), + [anon_sym_pub] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_trait] = ACTIONS(1932), + [anon_sym_type] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_unsafe] = ACTIONS(1932), + [anon_sym_use] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1932), + [anon_sym_move] = ACTIONS(1932), + [sym_integer_literal] = ACTIONS(1930), + [aux_sym_string_literal_token1] = ACTIONS(1930), + [sym_char_literal] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_crate] = ACTIONS(1932), + [sym_metavariable] = ACTIONS(1930), + [sym_raw_string_literal] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), [sym_block_comment] = ACTIONS(3), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_identifier] = ACTIONS(1938), - [anon_sym_SEMI] = ACTIONS(1936), - [anon_sym_macro_rules_BANG] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1936), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1936), - [anon_sym_STAR] = ACTIONS(1936), - [anon_sym_u8] = ACTIONS(1938), - [anon_sym_i8] = ACTIONS(1938), - [anon_sym_u16] = ACTIONS(1938), - [anon_sym_i16] = ACTIONS(1938), - [anon_sym_u32] = ACTIONS(1938), - [anon_sym_i32] = ACTIONS(1938), - [anon_sym_u64] = ACTIONS(1938), - [anon_sym_i64] = ACTIONS(1938), - [anon_sym_u128] = ACTIONS(1938), - [anon_sym_i128] = ACTIONS(1938), - [anon_sym_isize] = ACTIONS(1938), - [anon_sym_usize] = ACTIONS(1938), - [anon_sym_f32] = ACTIONS(1938), - [anon_sym_f64] = ACTIONS(1938), - [anon_sym_bool] = ACTIONS(1938), - [anon_sym_str] = ACTIONS(1938), - [anon_sym_char] = ACTIONS(1938), - [anon_sym_SQUOTE] = ACTIONS(1938), - [anon_sym_async] = ACTIONS(1938), - [anon_sym_break] = ACTIONS(1938), - [anon_sym_const] = ACTIONS(1938), - [anon_sym_continue] = ACTIONS(1938), - [anon_sym_default] = ACTIONS(1938), - [anon_sym_enum] = ACTIONS(1938), - [anon_sym_fn] = ACTIONS(1938), - [anon_sym_for] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1938), - [anon_sym_impl] = ACTIONS(1938), - [anon_sym_let] = ACTIONS(1938), - [anon_sym_loop] = ACTIONS(1938), - [anon_sym_match] = ACTIONS(1938), - [anon_sym_mod] = ACTIONS(1938), - [anon_sym_pub] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1938), - [anon_sym_static] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1938), - [anon_sym_trait] = ACTIONS(1938), - [anon_sym_type] = ACTIONS(1938), - [anon_sym_union] = ACTIONS(1938), - [anon_sym_unsafe] = ACTIONS(1938), - [anon_sym_use] = ACTIONS(1938), - [anon_sym_while] = ACTIONS(1938), - [anon_sym_POUND] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_DOT_DOT] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1938), - [anon_sym_move] = ACTIONS(1938), - [sym_integer_literal] = ACTIONS(1936), - [aux_sym_string_literal_token1] = ACTIONS(1936), - [sym_char_literal] = ACTIONS(1936), - [anon_sym_true] = ACTIONS(1938), - [anon_sym_false] = ACTIONS(1938), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1938), - [sym_super] = ACTIONS(1938), - [sym_crate] = ACTIONS(1938), - [sym_metavariable] = ACTIONS(1936), - [sym_raw_string_literal] = ACTIONS(1936), - [sym_float_literal] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_macro_rules_BANG] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_u8] = ACTIONS(1936), + [anon_sym_i8] = ACTIONS(1936), + [anon_sym_u16] = ACTIONS(1936), + [anon_sym_i16] = ACTIONS(1936), + [anon_sym_u32] = ACTIONS(1936), + [anon_sym_i32] = ACTIONS(1936), + [anon_sym_u64] = ACTIONS(1936), + [anon_sym_i64] = ACTIONS(1936), + [anon_sym_u128] = ACTIONS(1936), + [anon_sym_i128] = ACTIONS(1936), + [anon_sym_isize] = ACTIONS(1936), + [anon_sym_usize] = ACTIONS(1936), + [anon_sym_f32] = ACTIONS(1936), + [anon_sym_f64] = ACTIONS(1936), + [anon_sym_bool] = ACTIONS(1936), + [anon_sym_str] = ACTIONS(1936), + [anon_sym_char] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_fn] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_impl] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_loop] = ACTIONS(1936), + [anon_sym_match] = ACTIONS(1936), + [anon_sym_mod] = ACTIONS(1936), + [anon_sym_pub] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_trait] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_unsafe] = ACTIONS(1936), + [anon_sym_use] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1934), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_DOT_DOT] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_move] = ACTIONS(1936), + [sym_integer_literal] = ACTIONS(1934), + [aux_sym_string_literal_token1] = ACTIONS(1934), + [sym_char_literal] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1936), + [anon_sym_false] = ACTIONS(1936), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_crate] = ACTIONS(1936), + [sym_metavariable] = ACTIONS(1934), + [sym_raw_string_literal] = ACTIONS(1934), + [sym_float_literal] = ACTIONS(1934), [sym_block_comment] = ACTIONS(3), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1940), - [sym_identifier] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1940), - [anon_sym_macro_rules_BANG] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1940), - [anon_sym_RBRACE] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_u8] = ACTIONS(1942), - [anon_sym_i8] = ACTIONS(1942), - [anon_sym_u16] = ACTIONS(1942), - [anon_sym_i16] = ACTIONS(1942), - [anon_sym_u32] = ACTIONS(1942), - [anon_sym_i32] = ACTIONS(1942), - [anon_sym_u64] = ACTIONS(1942), - [anon_sym_i64] = ACTIONS(1942), - [anon_sym_u128] = ACTIONS(1942), - [anon_sym_i128] = ACTIONS(1942), - [anon_sym_isize] = ACTIONS(1942), - [anon_sym_usize] = ACTIONS(1942), - [anon_sym_f32] = ACTIONS(1942), - [anon_sym_f64] = ACTIONS(1942), - [anon_sym_bool] = ACTIONS(1942), - [anon_sym_str] = ACTIONS(1942), - [anon_sym_char] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_async] = ACTIONS(1942), - [anon_sym_break] = ACTIONS(1942), - [anon_sym_const] = ACTIONS(1942), - [anon_sym_continue] = ACTIONS(1942), - [anon_sym_default] = ACTIONS(1942), - [anon_sym_enum] = ACTIONS(1942), - [anon_sym_fn] = ACTIONS(1942), - [anon_sym_for] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1942), - [anon_sym_impl] = ACTIONS(1942), - [anon_sym_let] = ACTIONS(1942), - [anon_sym_loop] = ACTIONS(1942), - [anon_sym_match] = ACTIONS(1942), - [anon_sym_mod] = ACTIONS(1942), - [anon_sym_pub] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1942), - [anon_sym_static] = ACTIONS(1942), - [anon_sym_struct] = ACTIONS(1942), - [anon_sym_trait] = ACTIONS(1942), - [anon_sym_type] = ACTIONS(1942), - [anon_sym_union] = ACTIONS(1942), - [anon_sym_unsafe] = ACTIONS(1942), - [anon_sym_use] = ACTIONS(1942), - [anon_sym_while] = ACTIONS(1942), - [anon_sym_POUND] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1942), - [anon_sym_move] = ACTIONS(1942), - [sym_integer_literal] = ACTIONS(1940), - [aux_sym_string_literal_token1] = ACTIONS(1940), - [sym_char_literal] = ACTIONS(1940), - [anon_sym_true] = ACTIONS(1942), - [anon_sym_false] = ACTIONS(1942), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1942), - [sym_super] = ACTIONS(1942), - [sym_crate] = ACTIONS(1942), - [sym_metavariable] = ACTIONS(1940), - [sym_raw_string_literal] = ACTIONS(1940), - [sym_float_literal] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_macro_rules_BANG] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_u8] = ACTIONS(1940), + [anon_sym_i8] = ACTIONS(1940), + [anon_sym_u16] = ACTIONS(1940), + [anon_sym_i16] = ACTIONS(1940), + [anon_sym_u32] = ACTIONS(1940), + [anon_sym_i32] = ACTIONS(1940), + [anon_sym_u64] = ACTIONS(1940), + [anon_sym_i64] = ACTIONS(1940), + [anon_sym_u128] = ACTIONS(1940), + [anon_sym_i128] = ACTIONS(1940), + [anon_sym_isize] = ACTIONS(1940), + [anon_sym_usize] = ACTIONS(1940), + [anon_sym_f32] = ACTIONS(1940), + [anon_sym_f64] = ACTIONS(1940), + [anon_sym_bool] = ACTIONS(1940), + [anon_sym_str] = ACTIONS(1940), + [anon_sym_char] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_mod] = ACTIONS(1940), + [anon_sym_pub] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_trait] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_unsafe] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_yield] = ACTIONS(1940), + [anon_sym_move] = ACTIONS(1940), + [sym_integer_literal] = ACTIONS(1938), + [aux_sym_string_literal_token1] = ACTIONS(1938), + [sym_char_literal] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1940), + [anon_sym_false] = ACTIONS(1940), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_crate] = ACTIONS(1940), + [sym_metavariable] = ACTIONS(1938), + [sym_raw_string_literal] = ACTIONS(1938), + [sym_float_literal] = ACTIONS(1938), [sym_block_comment] = ACTIONS(3), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1944), - [sym_identifier] = ACTIONS(1946), - [anon_sym_SEMI] = ACTIONS(1944), - [anon_sym_macro_rules_BANG] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1944), - [anon_sym_RBRACE] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1944), - [anon_sym_u8] = ACTIONS(1946), - [anon_sym_i8] = ACTIONS(1946), - [anon_sym_u16] = ACTIONS(1946), - [anon_sym_i16] = ACTIONS(1946), - [anon_sym_u32] = ACTIONS(1946), - [anon_sym_i32] = ACTIONS(1946), - [anon_sym_u64] = ACTIONS(1946), - [anon_sym_i64] = ACTIONS(1946), - [anon_sym_u128] = ACTIONS(1946), - [anon_sym_i128] = ACTIONS(1946), - [anon_sym_isize] = ACTIONS(1946), - [anon_sym_usize] = ACTIONS(1946), - [anon_sym_f32] = ACTIONS(1946), - [anon_sym_f64] = ACTIONS(1946), - [anon_sym_bool] = ACTIONS(1946), - [anon_sym_str] = ACTIONS(1946), - [anon_sym_char] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1946), - [anon_sym_async] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_fn] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_impl] = ACTIONS(1946), - [anon_sym_let] = ACTIONS(1946), - [anon_sym_loop] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(1946), - [anon_sym_mod] = ACTIONS(1946), - [anon_sym_pub] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_trait] = ACTIONS(1946), - [anon_sym_type] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_unsafe] = ACTIONS(1946), - [anon_sym_use] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [anon_sym_POUND] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_yield] = ACTIONS(1946), - [anon_sym_move] = ACTIONS(1946), - [sym_integer_literal] = ACTIONS(1944), - [aux_sym_string_literal_token1] = ACTIONS(1944), - [sym_char_literal] = ACTIONS(1944), - [anon_sym_true] = ACTIONS(1946), - [anon_sym_false] = ACTIONS(1946), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_crate] = ACTIONS(1946), - [sym_metavariable] = ACTIONS(1944), - [sym_raw_string_literal] = ACTIONS(1944), - [sym_float_literal] = ACTIONS(1944), + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_macro_rules_BANG] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_u8] = ACTIONS(1944), + [anon_sym_i8] = ACTIONS(1944), + [anon_sym_u16] = ACTIONS(1944), + [anon_sym_i16] = ACTIONS(1944), + [anon_sym_u32] = ACTIONS(1944), + [anon_sym_i32] = ACTIONS(1944), + [anon_sym_u64] = ACTIONS(1944), + [anon_sym_i64] = ACTIONS(1944), + [anon_sym_u128] = ACTIONS(1944), + [anon_sym_i128] = ACTIONS(1944), + [anon_sym_isize] = ACTIONS(1944), + [anon_sym_usize] = ACTIONS(1944), + [anon_sym_f32] = ACTIONS(1944), + [anon_sym_f64] = ACTIONS(1944), + [anon_sym_bool] = ACTIONS(1944), + [anon_sym_str] = ACTIONS(1944), + [anon_sym_char] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1944), + [anon_sym_async] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_fn] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_impl] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1944), + [anon_sym_pub] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_trait] = ACTIONS(1944), + [anon_sym_type] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_unsafe] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_yield] = ACTIONS(1944), + [anon_sym_move] = ACTIONS(1944), + [sym_integer_literal] = ACTIONS(1942), + [aux_sym_string_literal_token1] = ACTIONS(1942), + [sym_char_literal] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_crate] = ACTIONS(1944), + [sym_metavariable] = ACTIONS(1942), + [sym_raw_string_literal] = ACTIONS(1942), + [sym_float_literal] = ACTIONS(1942), [sym_block_comment] = ACTIONS(3), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(1948), - [sym_identifier] = ACTIONS(1950), - [anon_sym_SEMI] = ACTIONS(1948), - [anon_sym_macro_rules_BANG] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1948), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_u8] = ACTIONS(1950), - [anon_sym_i8] = ACTIONS(1950), - [anon_sym_u16] = ACTIONS(1950), - [anon_sym_i16] = ACTIONS(1950), - [anon_sym_u32] = ACTIONS(1950), - [anon_sym_i32] = ACTIONS(1950), - [anon_sym_u64] = ACTIONS(1950), - [anon_sym_i64] = ACTIONS(1950), - [anon_sym_u128] = ACTIONS(1950), - [anon_sym_i128] = ACTIONS(1950), - [anon_sym_isize] = ACTIONS(1950), - [anon_sym_usize] = ACTIONS(1950), - [anon_sym_f32] = ACTIONS(1950), - [anon_sym_f64] = ACTIONS(1950), - [anon_sym_bool] = ACTIONS(1950), - [anon_sym_str] = ACTIONS(1950), - [anon_sym_char] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_async] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_fn] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_impl] = ACTIONS(1950), - [anon_sym_let] = ACTIONS(1950), - [anon_sym_loop] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1950), - [anon_sym_mod] = ACTIONS(1950), - [anon_sym_pub] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_unsafe] = ACTIONS(1950), - [anon_sym_use] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [anon_sym_POUND] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1948), - [anon_sym_COLON_COLON] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(1950), - [anon_sym_move] = ACTIONS(1950), - [sym_integer_literal] = ACTIONS(1948), - [aux_sym_string_literal_token1] = ACTIONS(1948), - [sym_char_literal] = ACTIONS(1948), - [anon_sym_true] = ACTIONS(1950), - [anon_sym_false] = ACTIONS(1950), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_crate] = ACTIONS(1950), - [sym_metavariable] = ACTIONS(1948), - [sym_raw_string_literal] = ACTIONS(1948), - [sym_float_literal] = ACTIONS(1948), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_macro_rules_BANG] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_u8] = ACTIONS(1948), + [anon_sym_i8] = ACTIONS(1948), + [anon_sym_u16] = ACTIONS(1948), + [anon_sym_i16] = ACTIONS(1948), + [anon_sym_u32] = ACTIONS(1948), + [anon_sym_i32] = ACTIONS(1948), + [anon_sym_u64] = ACTIONS(1948), + [anon_sym_i64] = ACTIONS(1948), + [anon_sym_u128] = ACTIONS(1948), + [anon_sym_i128] = ACTIONS(1948), + [anon_sym_isize] = ACTIONS(1948), + [anon_sym_usize] = ACTIONS(1948), + [anon_sym_f32] = ACTIONS(1948), + [anon_sym_f64] = ACTIONS(1948), + [anon_sym_bool] = ACTIONS(1948), + [anon_sym_str] = ACTIONS(1948), + [anon_sym_char] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_async] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_fn] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_impl] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_mod] = ACTIONS(1948), + [anon_sym_pub] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_trait] = ACTIONS(1948), + [anon_sym_type] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_unsafe] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_yield] = ACTIONS(1948), + [anon_sym_move] = ACTIONS(1948), + [sym_integer_literal] = ACTIONS(1946), + [aux_sym_string_literal_token1] = ACTIONS(1946), + [sym_char_literal] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1946), + [sym_raw_string_literal] = ACTIONS(1946), + [sym_float_literal] = ACTIONS(1946), [sym_block_comment] = ACTIONS(3), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(1952), - [sym_identifier] = ACTIONS(1954), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_macro_rules_BANG] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_STAR] = ACTIONS(1952), - [anon_sym_u8] = ACTIONS(1954), - [anon_sym_i8] = ACTIONS(1954), - [anon_sym_u16] = ACTIONS(1954), - [anon_sym_i16] = ACTIONS(1954), - [anon_sym_u32] = ACTIONS(1954), - [anon_sym_i32] = ACTIONS(1954), - [anon_sym_u64] = ACTIONS(1954), - [anon_sym_i64] = ACTIONS(1954), - [anon_sym_u128] = ACTIONS(1954), - [anon_sym_i128] = ACTIONS(1954), - [anon_sym_isize] = ACTIONS(1954), - [anon_sym_usize] = ACTIONS(1954), - [anon_sym_f32] = ACTIONS(1954), - [anon_sym_f64] = ACTIONS(1954), - [anon_sym_bool] = ACTIONS(1954), - [anon_sym_str] = ACTIONS(1954), - [anon_sym_char] = ACTIONS(1954), - [anon_sym_SQUOTE] = ACTIONS(1954), - [anon_sym_async] = ACTIONS(1954), - [anon_sym_break] = ACTIONS(1954), - [anon_sym_const] = ACTIONS(1954), - [anon_sym_continue] = ACTIONS(1954), - [anon_sym_default] = ACTIONS(1954), - [anon_sym_enum] = ACTIONS(1954), - [anon_sym_fn] = ACTIONS(1954), - [anon_sym_for] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1954), - [anon_sym_impl] = ACTIONS(1954), - [anon_sym_let] = ACTIONS(1954), - [anon_sym_loop] = ACTIONS(1954), - [anon_sym_match] = ACTIONS(1954), - [anon_sym_mod] = ACTIONS(1954), - [anon_sym_pub] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1954), - [anon_sym_static] = ACTIONS(1954), - [anon_sym_struct] = ACTIONS(1954), - [anon_sym_trait] = ACTIONS(1954), - [anon_sym_type] = ACTIONS(1954), - [anon_sym_union] = ACTIONS(1954), - [anon_sym_unsafe] = ACTIONS(1954), - [anon_sym_use] = ACTIONS(1954), - [anon_sym_while] = ACTIONS(1954), - [anon_sym_POUND] = ACTIONS(1952), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_yield] = ACTIONS(1954), - [anon_sym_move] = ACTIONS(1954), - [sym_integer_literal] = ACTIONS(1952), - [aux_sym_string_literal_token1] = ACTIONS(1952), - [sym_char_literal] = ACTIONS(1952), - [anon_sym_true] = ACTIONS(1954), - [anon_sym_false] = ACTIONS(1954), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1954), - [sym_super] = ACTIONS(1954), - [sym_crate] = ACTIONS(1954), - [sym_metavariable] = ACTIONS(1952), - [sym_raw_string_literal] = ACTIONS(1952), - [sym_float_literal] = ACTIONS(1952), + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_macro_rules_BANG] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_u8] = ACTIONS(1952), + [anon_sym_i8] = ACTIONS(1952), + [anon_sym_u16] = ACTIONS(1952), + [anon_sym_i16] = ACTIONS(1952), + [anon_sym_u32] = ACTIONS(1952), + [anon_sym_i32] = ACTIONS(1952), + [anon_sym_u64] = ACTIONS(1952), + [anon_sym_i64] = ACTIONS(1952), + [anon_sym_u128] = ACTIONS(1952), + [anon_sym_i128] = ACTIONS(1952), + [anon_sym_isize] = ACTIONS(1952), + [anon_sym_usize] = ACTIONS(1952), + [anon_sym_f32] = ACTIONS(1952), + [anon_sym_f64] = ACTIONS(1952), + [anon_sym_bool] = ACTIONS(1952), + [anon_sym_str] = ACTIONS(1952), + [anon_sym_char] = ACTIONS(1952), + [anon_sym_SQUOTE] = ACTIONS(1952), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_fn] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_impl] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_mod] = ACTIONS(1952), + [anon_sym_pub] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_unsafe] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_yield] = ACTIONS(1952), + [anon_sym_move] = ACTIONS(1952), + [sym_integer_literal] = ACTIONS(1950), + [aux_sym_string_literal_token1] = ACTIONS(1950), + [sym_char_literal] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_crate] = ACTIONS(1952), + [sym_metavariable] = ACTIONS(1950), + [sym_raw_string_literal] = ACTIONS(1950), + [sym_float_literal] = ACTIONS(1950), [sym_block_comment] = ACTIONS(3), }, [469] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_match_arm] = STATE(486), - [sym_last_match_arm] = STATE(2454), - [sym_match_pattern] = STATE(2387), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(547), - [aux_sym_match_block_repeat1] = STATE(486), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_macro_rules_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_u8] = ACTIONS(1956), + [anon_sym_i8] = ACTIONS(1956), + [anon_sym_u16] = ACTIONS(1956), + [anon_sym_i16] = ACTIONS(1956), + [anon_sym_u32] = ACTIONS(1956), + [anon_sym_i32] = ACTIONS(1956), + [anon_sym_u64] = ACTIONS(1956), + [anon_sym_i64] = ACTIONS(1956), + [anon_sym_u128] = ACTIONS(1956), + [anon_sym_i128] = ACTIONS(1956), + [anon_sym_isize] = ACTIONS(1956), + [anon_sym_usize] = ACTIONS(1956), + [anon_sym_f32] = ACTIONS(1956), + [anon_sym_f64] = ACTIONS(1956), + [anon_sym_bool] = ACTIONS(1956), + [anon_sym_str] = ACTIONS(1956), + [anon_sym_char] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_fn] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_impl] = ACTIONS(1956), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_loop] = ACTIONS(1956), + [anon_sym_match] = ACTIONS(1956), + [anon_sym_mod] = ACTIONS(1956), + [anon_sym_pub] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_trait] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1956), + [anon_sym_use] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_COLON_COLON] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_yield] = ACTIONS(1956), + [anon_sym_move] = ACTIONS(1956), + [sym_integer_literal] = ACTIONS(1954), + [aux_sym_string_literal_token1] = ACTIONS(1954), + [sym_char_literal] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1956), + [anon_sym_false] = ACTIONS(1956), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_crate] = ACTIONS(1956), + [sym_metavariable] = ACTIONS(1954), + [sym_raw_string_literal] = ACTIONS(1954), + [sym_float_literal] = ACTIONS(1954), [sym_block_comment] = ACTIONS(3), }, [470] = { @@ -61286,18 +58827,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [481] = { - [sym__token_pattern] = STATE(497), - [sym_token_tree_pattern] = STATE(497), - [sym_token_binding_pattern] = STATE(497), - [sym_token_repetition_pattern] = STATE(497), - [sym__literal] = STATE(497), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), [sym_identifier] = ACTIONS(2002), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_RPAREN] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2008), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), [anon_sym_u8] = ACTIONS(2002), @@ -61362,20 +58903,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [482] = { - [sym__token_pattern] = STATE(491), - [sym_token_tree_pattern] = STATE(491), - [sym_token_binding_pattern] = STATE(491), - [sym_token_repetition_pattern] = STATE(491), - [sym__literal] = STATE(491), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(491), + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2492), + [sym_match_pattern] = STATE(2378), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2022), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2025), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2033), + [anon_sym_RBRACK] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2036), [anon_sym_u8] = ACTIONS(2022), [anon_sym_i8] = ACTIONS(2022), [anon_sym_u16] = ACTIONS(2022), @@ -61423,187 +59041,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2022), [anon_sym_while] = ACTIONS(2022), [sym_mutable_specifier] = ACTIONS(2022), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2042), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_crate] = ACTIONS(2022), + [sym_raw_string_literal] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), + [sym_block_comment] = ACTIONS(3), + }, + [484] = { + [sym__token_pattern] = STATE(497), + [sym_token_tree_pattern] = STATE(497), + [sym_token_binding_pattern] = STATE(497), + [sym_token_repetition_pattern] = STATE(497), + [sym__literal] = STATE(497), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(497), + [sym_identifier] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_RBRACK] = ACTIONS(2050), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2048), + [anon_sym_i8] = ACTIONS(2048), + [anon_sym_u16] = ACTIONS(2048), + [anon_sym_i16] = ACTIONS(2048), + [anon_sym_u32] = ACTIONS(2048), + [anon_sym_i32] = ACTIONS(2048), + [anon_sym_u64] = ACTIONS(2048), + [anon_sym_i64] = ACTIONS(2048), + [anon_sym_u128] = ACTIONS(2048), + [anon_sym_i128] = ACTIONS(2048), + [anon_sym_isize] = ACTIONS(2048), + [anon_sym_usize] = ACTIONS(2048), + [anon_sym_f32] = ACTIONS(2048), + [anon_sym_f64] = ACTIONS(2048), + [anon_sym_bool] = ACTIONS(2048), + [anon_sym_str] = ACTIONS(2048), + [anon_sym_char] = ACTIONS(2048), + [aux_sym__non_special_token_token1] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(2048), + [anon_sym_as] = ACTIONS(2048), + [anon_sym_async] = ACTIONS(2048), + [anon_sym_await] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_fn] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_impl] = ACTIONS(2048), + [anon_sym_let] = ACTIONS(2048), + [anon_sym_loop] = ACTIONS(2048), + [anon_sym_match] = ACTIONS(2048), + [anon_sym_mod] = ACTIONS(2048), + [anon_sym_pub] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_trait] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_unsafe] = ACTIONS(2048), + [anon_sym_use] = ACTIONS(2048), + [anon_sym_where] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [sym_mutable_specifier] = ACTIONS(2048), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2022), - [sym_super] = ACTIONS(2022), - [sym_crate] = ACTIONS(2022), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_crate] = ACTIONS(2048), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [483] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2026), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2040), - [anon_sym_u8] = ACTIONS(2026), - [anon_sym_i8] = ACTIONS(2026), - [anon_sym_u16] = ACTIONS(2026), - [anon_sym_i16] = ACTIONS(2026), - [anon_sym_u32] = ACTIONS(2026), - [anon_sym_i32] = ACTIONS(2026), - [anon_sym_u64] = ACTIONS(2026), - [anon_sym_i64] = ACTIONS(2026), - [anon_sym_u128] = ACTIONS(2026), - [anon_sym_i128] = ACTIONS(2026), - [anon_sym_isize] = ACTIONS(2026), - [anon_sym_usize] = ACTIONS(2026), - [anon_sym_f32] = ACTIONS(2026), - [anon_sym_f64] = ACTIONS(2026), - [anon_sym_bool] = ACTIONS(2026), - [anon_sym_str] = ACTIONS(2026), - [anon_sym_char] = ACTIONS(2026), - [aux_sym__non_special_token_token1] = ACTIONS(2026), - [anon_sym_SQUOTE] = ACTIONS(2026), - [anon_sym_as] = ACTIONS(2026), - [anon_sym_async] = ACTIONS(2026), - [anon_sym_await] = ACTIONS(2026), - [anon_sym_break] = ACTIONS(2026), - [anon_sym_const] = ACTIONS(2026), - [anon_sym_continue] = ACTIONS(2026), - [anon_sym_default] = ACTIONS(2026), - [anon_sym_enum] = ACTIONS(2026), - [anon_sym_fn] = ACTIONS(2026), - [anon_sym_for] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2026), - [anon_sym_impl] = ACTIONS(2026), - [anon_sym_let] = ACTIONS(2026), - [anon_sym_loop] = ACTIONS(2026), - [anon_sym_match] = ACTIONS(2026), - [anon_sym_mod] = ACTIONS(2026), - [anon_sym_pub] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2026), - [anon_sym_static] = ACTIONS(2026), - [anon_sym_struct] = ACTIONS(2026), - [anon_sym_trait] = ACTIONS(2026), - [anon_sym_type] = ACTIONS(2026), - [anon_sym_union] = ACTIONS(2026), - [anon_sym_unsafe] = ACTIONS(2026), - [anon_sym_use] = ACTIONS(2026), - [anon_sym_where] = ACTIONS(2026), - [anon_sym_while] = ACTIONS(2026), - [sym_mutable_specifier] = ACTIONS(2026), - [sym_integer_literal] = ACTIONS(2043), - [aux_sym_string_literal_token1] = ACTIONS(2046), - [sym_char_literal] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2026), - [sym_super] = ACTIONS(2026), - [sym_crate] = ACTIONS(2026), - [sym_raw_string_literal] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), - [sym_block_comment] = ACTIONS(3), - }, - [484] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2333), - [sym_match_pattern] = STATE(2387), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(547), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, [485] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), + [sym__token_pattern] = STATE(498), + [sym_token_tree_pattern] = STATE(498), + [sym_token_binding_pattern] = STATE(498), + [sym_token_repetition_pattern] = STATE(498), + [sym__literal] = STATE(498), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(498), [sym_identifier] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_RBRACK] = ACTIONS(2058), - [anon_sym_DOLLAR] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2012), [anon_sym_u8] = ACTIONS(2052), [anon_sym_i8] = ACTIONS(2052), [anon_sym_u16] = ACTIONS(2052), @@ -61651,385 +59192,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2052), [anon_sym_while] = ACTIONS(2052), [sym_mutable_specifier] = ACTIONS(2052), - [sym_integer_literal] = ACTIONS(2069), - [aux_sym_string_literal_token1] = ACTIONS(2072), - [sym_char_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2052), - [sym_super] = ACTIONS(2052), - [sym_crate] = ACTIONS(2052), - [sym_metavariable] = ACTIONS(2078), - [sym_raw_string_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), - [sym_block_comment] = ACTIONS(3), - }, - [486] = { - [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2427), - [sym_match_pattern] = STATE(2387), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(547), - [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [487] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2083), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_crate] = ACTIONS(2052), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [488] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2081), + [486] = { + [sym__token_pattern] = STATE(481), + [sym_token_tree_pattern] = STATE(481), + [sym_token_binding_pattern] = STATE(481), + [sym_token_repetition_pattern] = STATE(481), + [sym__literal] = STATE(481), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(481), + [sym_identifier] = ACTIONS(2054), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_RPAREN] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2008), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), + [anon_sym_u8] = ACTIONS(2054), + [anon_sym_i8] = ACTIONS(2054), + [anon_sym_u16] = ACTIONS(2054), + [anon_sym_i16] = ACTIONS(2054), + [anon_sym_u32] = ACTIONS(2054), + [anon_sym_i32] = ACTIONS(2054), + [anon_sym_u64] = ACTIONS(2054), + [anon_sym_i64] = ACTIONS(2054), + [anon_sym_u128] = ACTIONS(2054), + [anon_sym_i128] = ACTIONS(2054), + [anon_sym_isize] = ACTIONS(2054), + [anon_sym_usize] = ACTIONS(2054), + [anon_sym_f32] = ACTIONS(2054), + [anon_sym_f64] = ACTIONS(2054), + [anon_sym_bool] = ACTIONS(2054), + [anon_sym_str] = ACTIONS(2054), + [anon_sym_char] = ACTIONS(2054), + [aux_sym__non_special_token_token1] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_as] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_await] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_fn] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_impl] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_mod] = ACTIONS(2054), + [anon_sym_pub] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2054), + [anon_sym_trait] = ACTIONS(2054), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2054), + [anon_sym_unsafe] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_where] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [sym_mutable_specifier] = ACTIONS(2054), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [489] = { + [487] = { [sym__token_pattern] = STATE(239), [sym_token_tree_pattern] = STATE(239), [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2002), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2008), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [aux_sym__non_special_token_token1] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_where] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [sym_mutable_specifier] = ACTIONS(2002), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [490] = { + [488] = { [sym_attribute_item] = STATE(547), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), [sym_match_arm] = STATE(500), - [sym_last_match_arm] = STATE(2482), - [sym_match_pattern] = STATE(2387), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), + [sym_last_match_arm] = STATE(2350), + [sym_match_pattern] = STATE(2378), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), [aux_sym_enum_variant_list_repeat1] = STATE(547), [aux_sym_match_block_repeat1] = STATE(500), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -62037,559 +59426,483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [491] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [492] = { - [sym__token_pattern] = STATE(493), - [sym_token_tree_pattern] = STATE(493), - [sym_token_binding_pattern] = STATE(493), - [sym_token_repetition_pattern] = STATE(493), - [sym__literal] = STATE(493), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2087), - [anon_sym_i8] = ACTIONS(2087), - [anon_sym_u16] = ACTIONS(2087), - [anon_sym_i16] = ACTIONS(2087), - [anon_sym_u32] = ACTIONS(2087), - [anon_sym_i32] = ACTIONS(2087), - [anon_sym_u64] = ACTIONS(2087), - [anon_sym_i64] = ACTIONS(2087), - [anon_sym_u128] = ACTIONS(2087), - [anon_sym_i128] = ACTIONS(2087), - [anon_sym_isize] = ACTIONS(2087), - [anon_sym_usize] = ACTIONS(2087), - [anon_sym_f32] = ACTIONS(2087), - [anon_sym_f64] = ACTIONS(2087), - [anon_sym_bool] = ACTIONS(2087), - [anon_sym_str] = ACTIONS(2087), - [anon_sym_char] = ACTIONS(2087), - [aux_sym__non_special_token_token1] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2087), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_async] = ACTIONS(2087), - [anon_sym_await] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [anon_sym_fn] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_impl] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_mod] = ACTIONS(2087), - [anon_sym_pub] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2087), - [anon_sym_trait] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_union] = ACTIONS(2087), - [anon_sym_unsafe] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_where] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [sym_mutable_specifier] = ACTIONS(2087), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2087), - [sym_super] = ACTIONS(2087), - [sym_crate] = ACTIONS(2087), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [493] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2020), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [494] = { - [sym__token_pattern] = STATE(495), - [sym_token_tree_pattern] = STATE(495), - [sym_token_binding_pattern] = STATE(495), - [sym_token_repetition_pattern] = STATE(495), - [sym__literal] = STATE(495), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(495), - [sym_identifier] = ACTIONS(2091), + [489] = { + [sym__token_pattern] = STATE(499), + [sym_token_tree_pattern] = STATE(499), + [sym_token_binding_pattern] = STATE(499), + [sym_token_repetition_pattern] = STATE(499), + [sym__literal] = STATE(499), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(499), + [sym_identifier] = ACTIONS(2058), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2008), [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2008), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [aux_sym__non_special_token_token1] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_await] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [sym_mutable_specifier] = ACTIONS(2091), + [anon_sym_u8] = ACTIONS(2058), + [anon_sym_i8] = ACTIONS(2058), + [anon_sym_u16] = ACTIONS(2058), + [anon_sym_i16] = ACTIONS(2058), + [anon_sym_u32] = ACTIONS(2058), + [anon_sym_i32] = ACTIONS(2058), + [anon_sym_u64] = ACTIONS(2058), + [anon_sym_i64] = ACTIONS(2058), + [anon_sym_u128] = ACTIONS(2058), + [anon_sym_i128] = ACTIONS(2058), + [anon_sym_isize] = ACTIONS(2058), + [anon_sym_usize] = ACTIONS(2058), + [anon_sym_f32] = ACTIONS(2058), + [anon_sym_f64] = ACTIONS(2058), + [anon_sym_bool] = ACTIONS(2058), + [anon_sym_str] = ACTIONS(2058), + [anon_sym_char] = ACTIONS(2058), + [aux_sym__non_special_token_token1] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_as] = ACTIONS(2058), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_await] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_impl] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_mod] = ACTIONS(2058), + [anon_sym_pub] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_trait] = ACTIONS(2058), + [anon_sym_type] = ACTIONS(2058), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_where] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [sym_mutable_specifier] = ACTIONS(2058), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [495] = { + [490] = { [sym__token_pattern] = STATE(239), [sym_token_tree_pattern] = STATE(239), [sym_token_binding_pattern] = STATE(239), [sym_token_repetition_pattern] = STATE(239), [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2002), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2062), [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2089), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [aux_sym__non_special_token_token1] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_where] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [sym_mutable_specifier] = ACTIONS(2002), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [496] = { - [sym__token_pattern] = STATE(489), - [sym_token_tree_pattern] = STATE(489), - [sym_token_binding_pattern] = STATE(489), - [sym_token_repetition_pattern] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(2093), + [491] = { + [sym__token_pattern] = STATE(490), + [sym_token_tree_pattern] = STATE(490), + [sym_token_binding_pattern] = STATE(490), + [sym_token_repetition_pattern] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(490), + [sym_identifier] = ACTIONS(2064), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2060), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [aux_sym__non_special_token_token1] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_where] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [sym_mutable_specifier] = ACTIONS(2093), + [anon_sym_u8] = ACTIONS(2064), + [anon_sym_i8] = ACTIONS(2064), + [anon_sym_u16] = ACTIONS(2064), + [anon_sym_i16] = ACTIONS(2064), + [anon_sym_u32] = ACTIONS(2064), + [anon_sym_i32] = ACTIONS(2064), + [anon_sym_u64] = ACTIONS(2064), + [anon_sym_i64] = ACTIONS(2064), + [anon_sym_u128] = ACTIONS(2064), + [anon_sym_i128] = ACTIONS(2064), + [anon_sym_isize] = ACTIONS(2064), + [anon_sym_usize] = ACTIONS(2064), + [anon_sym_f32] = ACTIONS(2064), + [anon_sym_f64] = ACTIONS(2064), + [anon_sym_bool] = ACTIONS(2064), + [anon_sym_str] = ACTIONS(2064), + [anon_sym_char] = ACTIONS(2064), + [aux_sym__non_special_token_token1] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_as] = ACTIONS(2064), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_await] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_fn] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_impl] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_mod] = ACTIONS(2064), + [anon_sym_pub] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_trait] = ACTIONS(2064), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_unsafe] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_where] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [sym_mutable_specifier] = ACTIONS(2064), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), + [sym_self] = ACTIONS(2064), + [sym_super] = ACTIONS(2064), + [sym_crate] = ACTIONS(2064), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [497] = { - [sym__token_pattern] = STATE(239), - [sym_token_tree_pattern] = STATE(239), - [sym_token_binding_pattern] = STATE(239), - [sym_token_repetition_pattern] = STATE(239), - [sym__literal] = STATE(239), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(2081), + [492] = { + [sym__token_pattern] = STATE(496), + [sym_token_tree_pattern] = STATE(496), + [sym_token_binding_pattern] = STATE(496), + [sym_token_repetition_pattern] = STATE(496), + [sym__literal] = STATE(496), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(496), + [sym_identifier] = ACTIONS(2066), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2008), [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_RBRACK] = ACTIONS(2060), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [aux_sym__non_special_token_token1] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_as] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_await] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_where] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [sym_mutable_specifier] = ACTIONS(2066), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [498] = { - [sym__token_pattern] = STATE(488), - [sym_token_tree_pattern] = STATE(488), - [sym_token_binding_pattern] = STATE(488), - [sym_token_repetition_pattern] = STATE(488), - [sym__literal] = STATE(488), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(488), + [493] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_RBRACK] = ACTIONS(2074), + [anon_sym_DOLLAR] = ACTIONS(2082), + [anon_sym_u8] = ACTIONS(2068), + [anon_sym_i8] = ACTIONS(2068), + [anon_sym_u16] = ACTIONS(2068), + [anon_sym_i16] = ACTIONS(2068), + [anon_sym_u32] = ACTIONS(2068), + [anon_sym_i32] = ACTIONS(2068), + [anon_sym_u64] = ACTIONS(2068), + [anon_sym_i64] = ACTIONS(2068), + [anon_sym_u128] = ACTIONS(2068), + [anon_sym_i128] = ACTIONS(2068), + [anon_sym_isize] = ACTIONS(2068), + [anon_sym_usize] = ACTIONS(2068), + [anon_sym_f32] = ACTIONS(2068), + [anon_sym_f64] = ACTIONS(2068), + [anon_sym_bool] = ACTIONS(2068), + [anon_sym_str] = ACTIONS(2068), + [anon_sym_char] = ACTIONS(2068), + [aux_sym__non_special_token_token1] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_as] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_await] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [anon_sym_fn] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_impl] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_mod] = ACTIONS(2068), + [anon_sym_pub] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_struct] = ACTIONS(2068), + [anon_sym_trait] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_union] = ACTIONS(2068), + [anon_sym_unsafe] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_where] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [sym_mutable_specifier] = ACTIONS(2068), + [sym_integer_literal] = ACTIONS(2085), + [aux_sym_string_literal_token1] = ACTIONS(2088), + [sym_char_literal] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2091), + [anon_sym_false] = ACTIONS(2091), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_crate] = ACTIONS(2068), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2085), + [sym_float_literal] = ACTIONS(2085), + [sym_block_comment] = ACTIONS(3), + }, + [494] = { + [sym_attribute_item] = STATE(547), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_match_arm] = STATE(500), + [sym_last_match_arm] = STATE(2499), + [sym_match_pattern] = STATE(2378), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(547), + [aux_sym_match_block_repeat1] = STATE(500), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [495] = { + [sym__token_pattern] = STATE(487), + [sym_token_tree_pattern] = STATE(487), + [sym_token_binding_pattern] = STATE(487), + [sym_token_repetition_pattern] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(487), [sym_identifier] = ACTIONS(2097), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2008), [anon_sym_LBRACK] = ACTIONS(2010), [anon_sym_DOLLAR] = ACTIONS(2012), [anon_sym_u8] = ACTIONS(2097), @@ -62653,110 +59966,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, + [496] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_RBRACK] = ACTIONS(2062), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [aux_sym__non_special_token_token1] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_where] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [sym_mutable_specifier] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [497] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_RBRACK] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [aux_sym__non_special_token_token1] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_where] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [sym_mutable_specifier] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [498] = { + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [aux_sym__non_special_token_token1] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_where] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [sym_mutable_specifier] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, [499] = { - [sym__token_pattern] = STATE(487), - [sym_token_tree_pattern] = STATE(487), - [sym_token_binding_pattern] = STATE(487), - [sym_token_repetition_pattern] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_pattern_repeat1] = STATE(487), - [sym_identifier] = ACTIONS(2099), + [sym__token_pattern] = STATE(239), + [sym_token_tree_pattern] = STATE(239), + [sym_token_binding_pattern] = STATE(239), + [sym_token_repetition_pattern] = STATE(239), + [sym__literal] = STATE(239), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_pattern_repeat1] = STATE(239), + [sym_identifier] = ACTIONS(2002), [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2008), [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_RBRACK] = ACTIONS(2095), [anon_sym_DOLLAR] = ACTIONS(2012), - [anon_sym_u8] = ACTIONS(2099), - [anon_sym_i8] = ACTIONS(2099), - [anon_sym_u16] = ACTIONS(2099), - [anon_sym_i16] = ACTIONS(2099), - [anon_sym_u32] = ACTIONS(2099), - [anon_sym_i32] = ACTIONS(2099), - [anon_sym_u64] = ACTIONS(2099), - [anon_sym_i64] = ACTIONS(2099), - [anon_sym_u128] = ACTIONS(2099), - [anon_sym_i128] = ACTIONS(2099), - [anon_sym_isize] = ACTIONS(2099), - [anon_sym_usize] = ACTIONS(2099), - [anon_sym_f32] = ACTIONS(2099), - [anon_sym_f64] = ACTIONS(2099), - [anon_sym_bool] = ACTIONS(2099), - [anon_sym_str] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [aux_sym__non_special_token_token1] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_as] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_await] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_fn] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_impl] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_mod] = ACTIONS(2099), - [anon_sym_pub] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_trait] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_unsafe] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_where] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [sym_mutable_specifier] = ACTIONS(2099), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [aux_sym__non_special_token_token1] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_as] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_where] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [sym_mutable_specifier] = ACTIONS(2002), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2099), - [sym_super] = ACTIONS(2099), - [sym_crate] = ACTIONS(2099), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), [sym_metavariable] = ACTIONS(2020), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [500] = { - [sym_attribute_item] = STATE(546), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), + [sym_attribute_item] = STATE(545), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), [sym_match_arm] = STATE(500), - [sym_match_pattern] = STATE(2548), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(546), + [sym_match_pattern] = STATE(2526), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(545), [aux_sym_match_block_repeat1] = STATE(500), [sym_identifier] = ACTIONS(2101), [anon_sym_LPAREN] = ACTIONS(2104), @@ -62809,14 +60350,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2169), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -62883,14 +60424,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2179), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -62953,12 +60494,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [503] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), [sym_identifier] = ACTIONS(2181), [anon_sym_LPAREN] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2185), @@ -63027,18 +60568,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [504] = { + [sym_token_tree] = STATE(503), + [sym_token_repetition] = STATE(503), + [sym__literal] = STATE(503), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(503), + [sym_identifier] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2195), + [anon_sym_i8] = ACTIONS(2195), + [anon_sym_u16] = ACTIONS(2195), + [anon_sym_i16] = ACTIONS(2195), + [anon_sym_u32] = ACTIONS(2195), + [anon_sym_i32] = ACTIONS(2195), + [anon_sym_u64] = ACTIONS(2195), + [anon_sym_i64] = ACTIONS(2195), + [anon_sym_u128] = ACTIONS(2195), + [anon_sym_i128] = ACTIONS(2195), + [anon_sym_isize] = ACTIONS(2195), + [anon_sym_usize] = ACTIONS(2195), + [anon_sym_f32] = ACTIONS(2195), + [anon_sym_f64] = ACTIONS(2195), + [anon_sym_bool] = ACTIONS(2195), + [anon_sym_str] = ACTIONS(2195), + [anon_sym_char] = ACTIONS(2195), + [aux_sym__non_special_token_token1] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2195), + [anon_sym_break] = ACTIONS(2195), + [anon_sym_const] = ACTIONS(2195), + [anon_sym_continue] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [anon_sym_fn] = ACTIONS(2195), + [anon_sym_for] = ACTIONS(2195), + [anon_sym_if] = ACTIONS(2195), + [anon_sym_impl] = ACTIONS(2195), + [anon_sym_let] = ACTIONS(2195), + [anon_sym_loop] = ACTIONS(2195), + [anon_sym_match] = ACTIONS(2195), + [anon_sym_mod] = ACTIONS(2195), + [anon_sym_pub] = ACTIONS(2195), + [anon_sym_return] = ACTIONS(2195), + [anon_sym_static] = ACTIONS(2195), + [anon_sym_struct] = ACTIONS(2195), + [anon_sym_trait] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_union] = ACTIONS(2195), + [anon_sym_unsafe] = ACTIONS(2195), + [anon_sym_use] = ACTIONS(2195), + [anon_sym_where] = ACTIONS(2195), + [anon_sym_while] = ACTIONS(2195), + [sym_mutable_specifier] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2199), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [505] = { + [sym_token_tree] = STATE(543), + [sym_token_repetition] = STATE(543), + [sym__literal] = STATE(543), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(543), + [sym_identifier] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2201), + [anon_sym_i8] = ACTIONS(2201), + [anon_sym_u16] = ACTIONS(2201), + [anon_sym_i16] = ACTIONS(2201), + [anon_sym_u32] = ACTIONS(2201), + [anon_sym_i32] = ACTIONS(2201), + [anon_sym_u64] = ACTIONS(2201), + [anon_sym_i64] = ACTIONS(2201), + [anon_sym_u128] = ACTIONS(2201), + [anon_sym_i128] = ACTIONS(2201), + [anon_sym_isize] = ACTIONS(2201), + [anon_sym_usize] = ACTIONS(2201), + [anon_sym_f32] = ACTIONS(2201), + [anon_sym_f64] = ACTIONS(2201), + [anon_sym_bool] = ACTIONS(2201), + [anon_sym_str] = ACTIONS(2201), + [anon_sym_char] = ACTIONS(2201), + [aux_sym__non_special_token_token1] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_as] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_impl] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_mod] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_where] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [sym_mutable_specifier] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2205), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2195), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2207), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -63100,92 +60789,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_delim_token_tree] = STATE(513), - [sym__delim_tokens] = STATE(513), - [sym__non_delim_token] = STATE(513), - [sym__literal] = STATE(513), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(513), - [sym_identifier] = ACTIONS(2197), + [507] = { + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2199), - [anon_sym_DOLLAR] = ACTIONS(2201), - [anon_sym_u8] = ACTIONS(2197), - [anon_sym_i8] = ACTIONS(2197), - [anon_sym_u16] = ACTIONS(2197), - [anon_sym_i16] = ACTIONS(2197), - [anon_sym_u32] = ACTIONS(2197), - [anon_sym_i32] = ACTIONS(2197), - [anon_sym_u64] = ACTIONS(2197), - [anon_sym_i64] = ACTIONS(2197), - [anon_sym_u128] = ACTIONS(2197), - [anon_sym_i128] = ACTIONS(2197), - [anon_sym_isize] = ACTIONS(2197), - [anon_sym_usize] = ACTIONS(2197), - [anon_sym_f32] = ACTIONS(2197), - [anon_sym_f64] = ACTIONS(2197), - [anon_sym_bool] = ACTIONS(2197), - [anon_sym_str] = ACTIONS(2197), - [anon_sym_char] = ACTIONS(2197), - [aux_sym__non_special_token_token1] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_await] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_impl] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_mod] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_where] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_u8] = ACTIONS(2161), + [anon_sym_i8] = ACTIONS(2161), + [anon_sym_u16] = ACTIONS(2161), + [anon_sym_i16] = ACTIONS(2161), + [anon_sym_u32] = ACTIONS(2161), + [anon_sym_i32] = ACTIONS(2161), + [anon_sym_u64] = ACTIONS(2161), + [anon_sym_i64] = ACTIONS(2161), + [anon_sym_u128] = ACTIONS(2161), + [anon_sym_i128] = ACTIONS(2161), + [anon_sym_isize] = ACTIONS(2161), + [anon_sym_usize] = ACTIONS(2161), + [anon_sym_f32] = ACTIONS(2161), + [anon_sym_f64] = ACTIONS(2161), + [anon_sym_bool] = ACTIONS(2161), + [anon_sym_str] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), [sym_integer_literal] = ACTIONS(2173), [aux_sym_string_literal_token1] = ACTIONS(2175), [sym_char_literal] = ACTIONS(2173), [anon_sym_true] = ACTIONS(2177), [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), [sym_raw_string_literal] = ACTIONS(2173), [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [506] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), + [508] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), [sym_identifier] = ACTIONS(2181), [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2187), [anon_sym_LBRACE] = ACTIONS(2185), [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2187), [anon_sym_DOLLAR] = ACTIONS(2191), [anon_sym_u8] = ACTIONS(2181), [anon_sym_i8] = ACTIONS(2181), @@ -63248,94 +60937,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [507] = { - [sym_delim_token_tree] = STATE(519), - [sym__delim_tokens] = STATE(519), - [sym__non_delim_token] = STATE(519), - [sym__literal] = STATE(519), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(519), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [aux_sym__non_special_token_token1] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_where] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [sym_mutable_specifier] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [508] = { + [509] = { [sym_delim_token_tree] = STATE(542), [sym__delim_tokens] = STATE(542), [sym__non_delim_token] = STATE(542), [sym__literal] = STATE(542), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(542), [sym_identifier] = ACTIONS(2209), [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2211), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2213), [anon_sym_u8] = ACTIONS(2209), [anon_sym_i8] = ACTIONS(2209), [anon_sym_u16] = ACTIONS(2209), @@ -63396,93 +61011,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [509] = { - [sym_delim_token_tree] = STATE(504), - [sym__delim_tokens] = STATE(504), - [sym__non_delim_token] = STATE(504), - [sym__literal] = STATE(504), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(504), - [sym_identifier] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2215), - [anon_sym_u8] = ACTIONS(2213), - [anon_sym_i8] = ACTIONS(2213), - [anon_sym_u16] = ACTIONS(2213), - [anon_sym_i16] = ACTIONS(2213), - [anon_sym_u32] = ACTIONS(2213), - [anon_sym_i32] = ACTIONS(2213), - [anon_sym_u64] = ACTIONS(2213), - [anon_sym_i64] = ACTIONS(2213), - [anon_sym_u128] = ACTIONS(2213), - [anon_sym_i128] = ACTIONS(2213), - [anon_sym_isize] = ACTIONS(2213), - [anon_sym_usize] = ACTIONS(2213), - [anon_sym_f32] = ACTIONS(2213), - [anon_sym_f64] = ACTIONS(2213), - [anon_sym_bool] = ACTIONS(2213), - [anon_sym_str] = ACTIONS(2213), - [anon_sym_char] = ACTIONS(2213), - [aux_sym__non_special_token_token1] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_impl] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_loop] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_mod] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_where] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [sym_mutable_specifier] = ACTIONS(2213), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_crate] = ACTIONS(2213), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, [510] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_RPAREN] = ACTIONS(2207), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -63545,92 +61086,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [511] = { - [sym_delim_token_tree] = STATE(529), - [sym__delim_tokens] = STATE(529), - [sym__non_delim_token] = STATE(529), - [sym__literal] = STATE(529), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(529), - [sym_identifier] = ACTIONS(2219), + [sym_delim_token_tree] = STATE(506), + [sym__delim_tokens] = STATE(506), + [sym__non_delim_token] = STATE(506), + [sym__literal] = STATE(506), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(506), + [sym_identifier] = ACTIONS(2215), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_u8] = ACTIONS(2219), - [anon_sym_i8] = ACTIONS(2219), - [anon_sym_u16] = ACTIONS(2219), - [anon_sym_i16] = ACTIONS(2219), - [anon_sym_u32] = ACTIONS(2219), - [anon_sym_i32] = ACTIONS(2219), - [anon_sym_u64] = ACTIONS(2219), - [anon_sym_i64] = ACTIONS(2219), - [anon_sym_u128] = ACTIONS(2219), - [anon_sym_i128] = ACTIONS(2219), - [anon_sym_isize] = ACTIONS(2219), - [anon_sym_usize] = ACTIONS(2219), - [anon_sym_f32] = ACTIONS(2219), - [anon_sym_f64] = ACTIONS(2219), - [anon_sym_bool] = ACTIONS(2219), - [anon_sym_str] = ACTIONS(2219), - [anon_sym_char] = ACTIONS(2219), - [aux_sym__non_special_token_token1] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2219), - [anon_sym_as] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_await] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_default] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_impl] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_mod] = ACTIONS(2219), - [anon_sym_pub] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_trait] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_where] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [sym_mutable_specifier] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2217), + [anon_sym_DOLLAR] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2215), + [anon_sym_i8] = ACTIONS(2215), + [anon_sym_u16] = ACTIONS(2215), + [anon_sym_i16] = ACTIONS(2215), + [anon_sym_u32] = ACTIONS(2215), + [anon_sym_i32] = ACTIONS(2215), + [anon_sym_u64] = ACTIONS(2215), + [anon_sym_i64] = ACTIONS(2215), + [anon_sym_u128] = ACTIONS(2215), + [anon_sym_i128] = ACTIONS(2215), + [anon_sym_isize] = ACTIONS(2215), + [anon_sym_usize] = ACTIONS(2215), + [anon_sym_f32] = ACTIONS(2215), + [anon_sym_f64] = ACTIONS(2215), + [anon_sym_bool] = ACTIONS(2215), + [anon_sym_str] = ACTIONS(2215), + [anon_sym_char] = ACTIONS(2215), + [aux_sym__non_special_token_token1] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_async] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2215), + [anon_sym_const] = ACTIONS(2215), + [anon_sym_continue] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2215), + [anon_sym_enum] = ACTIONS(2215), + [anon_sym_fn] = ACTIONS(2215), + [anon_sym_for] = ACTIONS(2215), + [anon_sym_if] = ACTIONS(2215), + [anon_sym_impl] = ACTIONS(2215), + [anon_sym_let] = ACTIONS(2215), + [anon_sym_loop] = ACTIONS(2215), + [anon_sym_match] = ACTIONS(2215), + [anon_sym_mod] = ACTIONS(2215), + [anon_sym_pub] = ACTIONS(2215), + [anon_sym_return] = ACTIONS(2215), + [anon_sym_static] = ACTIONS(2215), + [anon_sym_struct] = ACTIONS(2215), + [anon_sym_trait] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2215), + [anon_sym_union] = ACTIONS(2215), + [anon_sym_unsafe] = ACTIONS(2215), + [anon_sym_use] = ACTIONS(2215), + [anon_sym_where] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2215), + [sym_mutable_specifier] = ACTIONS(2215), [sym_integer_literal] = ACTIONS(2173), [aux_sym_string_literal_token1] = ACTIONS(2175), [sym_char_literal] = ACTIONS(2173), [anon_sym_true] = ACTIONS(2177), [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2219), - [sym_super] = ACTIONS(2219), - [sym_crate] = ACTIONS(2219), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), [sym_raw_string_literal] = ACTIONS(2173), [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [512] = { + [sym_token_tree] = STATE(531), + [sym_token_repetition] = STATE(531), + [sym__literal] = STATE(531), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(531), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [aux_sym__non_special_token_token1] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_mod] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_where] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [sym_mutable_specifier] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2225), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [513] = { + [sym_delim_token_tree] = STATE(507), + [sym__delim_tokens] = STATE(507), + [sym__non_delim_token] = STATE(507), + [sym__literal] = STATE(507), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(507), + [sym_identifier] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2229), + [anon_sym_u8] = ACTIONS(2227), + [anon_sym_i8] = ACTIONS(2227), + [anon_sym_u16] = ACTIONS(2227), + [anon_sym_i16] = ACTIONS(2227), + [anon_sym_u32] = ACTIONS(2227), + [anon_sym_i32] = ACTIONS(2227), + [anon_sym_u64] = ACTIONS(2227), + [anon_sym_i64] = ACTIONS(2227), + [anon_sym_u128] = ACTIONS(2227), + [anon_sym_i128] = ACTIONS(2227), + [anon_sym_isize] = ACTIONS(2227), + [anon_sym_usize] = ACTIONS(2227), + [anon_sym_f32] = ACTIONS(2227), + [anon_sym_f64] = ACTIONS(2227), + [anon_sym_bool] = ACTIONS(2227), + [anon_sym_str] = ACTIONS(2227), + [anon_sym_char] = ACTIONS(2227), + [aux_sym__non_special_token_token1] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_async] = ACTIONS(2227), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2227), + [anon_sym_continue] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2227), + [anon_sym_enum] = ACTIONS(2227), + [anon_sym_fn] = ACTIONS(2227), + [anon_sym_for] = ACTIONS(2227), + [anon_sym_if] = ACTIONS(2227), + [anon_sym_impl] = ACTIONS(2227), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_loop] = ACTIONS(2227), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_mod] = ACTIONS(2227), + [anon_sym_pub] = ACTIONS(2227), + [anon_sym_return] = ACTIONS(2227), + [anon_sym_static] = ACTIONS(2227), + [anon_sym_struct] = ACTIONS(2227), + [anon_sym_trait] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2227), + [anon_sym_union] = ACTIONS(2227), + [anon_sym_unsafe] = ACTIONS(2227), + [anon_sym_use] = ACTIONS(2227), + [anon_sym_where] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2227), + [sym_mutable_specifier] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [514] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -63692,19 +61381,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [513] = { + [515] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2231), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -63766,389 +61455,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [514] = { - [sym_token_tree] = STATE(525), - [sym_token_repetition] = STATE(525), - [sym__literal] = STATE(525), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_RBRACK] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2225), - [anon_sym_i8] = ACTIONS(2225), - [anon_sym_u16] = ACTIONS(2225), - [anon_sym_i16] = ACTIONS(2225), - [anon_sym_u32] = ACTIONS(2225), - [anon_sym_i32] = ACTIONS(2225), - [anon_sym_u64] = ACTIONS(2225), - [anon_sym_i64] = ACTIONS(2225), - [anon_sym_u128] = ACTIONS(2225), - [anon_sym_i128] = ACTIONS(2225), - [anon_sym_isize] = ACTIONS(2225), - [anon_sym_usize] = ACTIONS(2225), - [anon_sym_f32] = ACTIONS(2225), - [anon_sym_f64] = ACTIONS(2225), - [anon_sym_bool] = ACTIONS(2225), - [anon_sym_str] = ACTIONS(2225), - [anon_sym_char] = ACTIONS(2225), - [aux_sym__non_special_token_token1] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_impl] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_loop] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_mod] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_where] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [sym_mutable_specifier] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [516] = { + [sym_delim_token_tree] = STATE(514), + [sym__delim_tokens] = STATE(514), + [sym__non_delim_token] = STATE(514), + [sym__literal] = STATE(514), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(514), + [sym_identifier] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [aux_sym__non_special_token_token1] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_where] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [sym_mutable_specifier] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_metavariable] = ACTIONS(2229), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [515] = { - [sym_token_tree] = STATE(503), - [sym_token_repetition] = STATE(503), - [sym__literal] = STATE(503), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(503), - [sym_identifier] = ACTIONS(2231), + [517] = { + [sym_delim_token_tree] = STATE(502), + [sym__delim_tokens] = STATE(502), + [sym__non_delim_token] = STATE(502), + [sym__literal] = STATE(502), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(502), + [sym_identifier] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [aux_sym__non_special_token_token1] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_where] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [sym_mutable_specifier] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [518] = { + [sym_token_tree] = STATE(536), + [sym_token_repetition] = STATE(536), + [sym__literal] = STATE(536), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(536), + [sym_identifier] = ACTIONS(2243), [anon_sym_LPAREN] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2223), [anon_sym_LBRACK] = ACTIONS(2189), [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2231), - [anon_sym_i8] = ACTIONS(2231), - [anon_sym_u16] = ACTIONS(2231), - [anon_sym_i16] = ACTIONS(2231), - [anon_sym_u32] = ACTIONS(2231), - [anon_sym_i32] = ACTIONS(2231), - [anon_sym_u64] = ACTIONS(2231), - [anon_sym_i64] = ACTIONS(2231), - [anon_sym_u128] = ACTIONS(2231), - [anon_sym_i128] = ACTIONS(2231), - [anon_sym_isize] = ACTIONS(2231), - [anon_sym_usize] = ACTIONS(2231), - [anon_sym_f32] = ACTIONS(2231), - [anon_sym_f64] = ACTIONS(2231), - [anon_sym_bool] = ACTIONS(2231), - [anon_sym_str] = ACTIONS(2231), - [anon_sym_char] = ACTIONS(2231), - [aux_sym__non_special_token_token1] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2231), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(2231), - [anon_sym_await] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [anon_sym_fn] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_impl] = ACTIONS(2231), - [anon_sym_let] = ACTIONS(2231), - [anon_sym_loop] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2231), - [anon_sym_mod] = ACTIONS(2231), - [anon_sym_pub] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_static] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2231), - [anon_sym_trait] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_unsafe] = ACTIONS(2231), - [anon_sym_use] = ACTIONS(2231), - [anon_sym_where] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [sym_mutable_specifier] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2243), + [anon_sym_i8] = ACTIONS(2243), + [anon_sym_u16] = ACTIONS(2243), + [anon_sym_i16] = ACTIONS(2243), + [anon_sym_u32] = ACTIONS(2243), + [anon_sym_i32] = ACTIONS(2243), + [anon_sym_u64] = ACTIONS(2243), + [anon_sym_i64] = ACTIONS(2243), + [anon_sym_u128] = ACTIONS(2243), + [anon_sym_i128] = ACTIONS(2243), + [anon_sym_isize] = ACTIONS(2243), + [anon_sym_usize] = ACTIONS(2243), + [anon_sym_f32] = ACTIONS(2243), + [anon_sym_f64] = ACTIONS(2243), + [anon_sym_bool] = ACTIONS(2243), + [anon_sym_str] = ACTIONS(2243), + [anon_sym_char] = ACTIONS(2243), + [aux_sym__non_special_token_token1] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_await] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [anon_sym_fn] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_impl] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_mod] = ACTIONS(2243), + [anon_sym_pub] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_static] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2243), + [anon_sym_trait] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_union] = ACTIONS(2243), + [anon_sym_unsafe] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_where] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [sym_mutable_specifier] = ACTIONS(2243), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2231), - [sym_super] = ACTIONS(2231), - [sym_crate] = ACTIONS(2231), - [sym_metavariable] = ACTIONS(2233), + [sym_self] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_crate] = ACTIONS(2243), + [sym_metavariable] = ACTIONS(2245), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [516] = { - [sym_token_tree] = STATE(506), - [sym_token_repetition] = STATE(506), - [sym__literal] = STATE(506), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(506), - [sym_identifier] = ACTIONS(2235), + [519] = { + [sym_token_tree] = STATE(541), + [sym_token_repetition] = STATE(541), + [sym__literal] = STATE(541), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(541), + [sym_identifier] = ACTIONS(2247), [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2227), [anon_sym_LBRACE] = ACTIONS(2185), [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2223), [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2235), - [anon_sym_i8] = ACTIONS(2235), - [anon_sym_u16] = ACTIONS(2235), - [anon_sym_i16] = ACTIONS(2235), - [anon_sym_u32] = ACTIONS(2235), - [anon_sym_i32] = ACTIONS(2235), - [anon_sym_u64] = ACTIONS(2235), - [anon_sym_i64] = ACTIONS(2235), - [anon_sym_u128] = ACTIONS(2235), - [anon_sym_i128] = ACTIONS(2235), - [anon_sym_isize] = ACTIONS(2235), - [anon_sym_usize] = ACTIONS(2235), - [anon_sym_f32] = ACTIONS(2235), - [anon_sym_f64] = ACTIONS(2235), - [anon_sym_bool] = ACTIONS(2235), - [anon_sym_str] = ACTIONS(2235), - [anon_sym_char] = ACTIONS(2235), - [aux_sym__non_special_token_token1] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2235), - [anon_sym_as] = ACTIONS(2235), - [anon_sym_async] = ACTIONS(2235), - [anon_sym_await] = ACTIONS(2235), - [anon_sym_break] = ACTIONS(2235), - [anon_sym_const] = ACTIONS(2235), - [anon_sym_continue] = ACTIONS(2235), - [anon_sym_default] = ACTIONS(2235), - [anon_sym_enum] = ACTIONS(2235), - [anon_sym_fn] = ACTIONS(2235), - [anon_sym_for] = ACTIONS(2235), - [anon_sym_if] = ACTIONS(2235), - [anon_sym_impl] = ACTIONS(2235), - [anon_sym_let] = ACTIONS(2235), - [anon_sym_loop] = ACTIONS(2235), - [anon_sym_match] = ACTIONS(2235), - [anon_sym_mod] = ACTIONS(2235), - [anon_sym_pub] = ACTIONS(2235), - [anon_sym_return] = ACTIONS(2235), - [anon_sym_static] = ACTIONS(2235), - [anon_sym_struct] = ACTIONS(2235), - [anon_sym_trait] = ACTIONS(2235), - [anon_sym_type] = ACTIONS(2235), - [anon_sym_union] = ACTIONS(2235), - [anon_sym_unsafe] = ACTIONS(2235), - [anon_sym_use] = ACTIONS(2235), - [anon_sym_where] = ACTIONS(2235), - [anon_sym_while] = ACTIONS(2235), - [sym_mutable_specifier] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2247), + [anon_sym_i8] = ACTIONS(2247), + [anon_sym_u16] = ACTIONS(2247), + [anon_sym_i16] = ACTIONS(2247), + [anon_sym_u32] = ACTIONS(2247), + [anon_sym_i32] = ACTIONS(2247), + [anon_sym_u64] = ACTIONS(2247), + [anon_sym_i64] = ACTIONS(2247), + [anon_sym_u128] = ACTIONS(2247), + [anon_sym_i128] = ACTIONS(2247), + [anon_sym_isize] = ACTIONS(2247), + [anon_sym_usize] = ACTIONS(2247), + [anon_sym_f32] = ACTIONS(2247), + [anon_sym_f64] = ACTIONS(2247), + [anon_sym_bool] = ACTIONS(2247), + [anon_sym_str] = ACTIONS(2247), + [anon_sym_char] = ACTIONS(2247), + [aux_sym__non_special_token_token1] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_as] = ACTIONS(2247), + [anon_sym_async] = ACTIONS(2247), + [anon_sym_await] = ACTIONS(2247), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_const] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_default] = ACTIONS(2247), + [anon_sym_enum] = ACTIONS(2247), + [anon_sym_fn] = ACTIONS(2247), + [anon_sym_for] = ACTIONS(2247), + [anon_sym_if] = ACTIONS(2247), + [anon_sym_impl] = ACTIONS(2247), + [anon_sym_let] = ACTIONS(2247), + [anon_sym_loop] = ACTIONS(2247), + [anon_sym_match] = ACTIONS(2247), + [anon_sym_mod] = ACTIONS(2247), + [anon_sym_pub] = ACTIONS(2247), + [anon_sym_return] = ACTIONS(2247), + [anon_sym_static] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2247), + [anon_sym_trait] = ACTIONS(2247), + [anon_sym_type] = ACTIONS(2247), + [anon_sym_union] = ACTIONS(2247), + [anon_sym_unsafe] = ACTIONS(2247), + [anon_sym_use] = ACTIONS(2247), + [anon_sym_where] = ACTIONS(2247), + [anon_sym_while] = ACTIONS(2247), + [sym_mutable_specifier] = ACTIONS(2247), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2235), - [sym_super] = ACTIONS(2235), - [sym_crate] = ACTIONS(2235), - [sym_metavariable] = ACTIONS(2237), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2249), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_delim_token_tree] = STATE(528), - [sym__delim_tokens] = STATE(528), - [sym__non_delim_token] = STATE(528), - [sym__literal] = STATE(528), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(528), - [sym_identifier] = ACTIONS(2239), + [520] = { + [sym_delim_token_tree] = STATE(522), + [sym__delim_tokens] = STATE(522), + [sym__non_delim_token] = STATE(522), + [sym__literal] = STATE(522), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(522), + [sym_identifier] = ACTIONS(2251), [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2253), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2241), - [anon_sym_u8] = ACTIONS(2239), - [anon_sym_i8] = ACTIONS(2239), - [anon_sym_u16] = ACTIONS(2239), - [anon_sym_i16] = ACTIONS(2239), - [anon_sym_u32] = ACTIONS(2239), - [anon_sym_i32] = ACTIONS(2239), - [anon_sym_u64] = ACTIONS(2239), - [anon_sym_i64] = ACTIONS(2239), - [anon_sym_u128] = ACTIONS(2239), - [anon_sym_i128] = ACTIONS(2239), - [anon_sym_isize] = ACTIONS(2239), - [anon_sym_usize] = ACTIONS(2239), - [anon_sym_f32] = ACTIONS(2239), - [anon_sym_f64] = ACTIONS(2239), - [anon_sym_bool] = ACTIONS(2239), - [anon_sym_str] = ACTIONS(2239), - [anon_sym_char] = ACTIONS(2239), - [aux_sym__non_special_token_token1] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2239), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_async] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2239), - [anon_sym_break] = ACTIONS(2239), - [anon_sym_const] = ACTIONS(2239), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2239), - [anon_sym_enum] = ACTIONS(2239), - [anon_sym_fn] = ACTIONS(2239), - [anon_sym_for] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(2239), - [anon_sym_impl] = ACTIONS(2239), - [anon_sym_let] = ACTIONS(2239), - [anon_sym_loop] = ACTIONS(2239), - [anon_sym_match] = ACTIONS(2239), - [anon_sym_mod] = ACTIONS(2239), - [anon_sym_pub] = ACTIONS(2239), - [anon_sym_return] = ACTIONS(2239), - [anon_sym_static] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(2239), - [anon_sym_trait] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2239), - [anon_sym_union] = ACTIONS(2239), - [anon_sym_unsafe] = ACTIONS(2239), - [anon_sym_use] = ACTIONS(2239), - [anon_sym_where] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2239), - [sym_mutable_specifier] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2255), + [anon_sym_u8] = ACTIONS(2251), + [anon_sym_i8] = ACTIONS(2251), + [anon_sym_u16] = ACTIONS(2251), + [anon_sym_i16] = ACTIONS(2251), + [anon_sym_u32] = ACTIONS(2251), + [anon_sym_i32] = ACTIONS(2251), + [anon_sym_u64] = ACTIONS(2251), + [anon_sym_i64] = ACTIONS(2251), + [anon_sym_u128] = ACTIONS(2251), + [anon_sym_i128] = ACTIONS(2251), + [anon_sym_isize] = ACTIONS(2251), + [anon_sym_usize] = ACTIONS(2251), + [anon_sym_f32] = ACTIONS(2251), + [anon_sym_f64] = ACTIONS(2251), + [anon_sym_bool] = ACTIONS(2251), + [anon_sym_str] = ACTIONS(2251), + [anon_sym_char] = ACTIONS(2251), + [aux_sym__non_special_token_token1] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [anon_sym_fn] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_impl] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_loop] = ACTIONS(2251), + [anon_sym_match] = ACTIONS(2251), + [anon_sym_mod] = ACTIONS(2251), + [anon_sym_pub] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_struct] = ACTIONS(2251), + [anon_sym_trait] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_union] = ACTIONS(2251), + [anon_sym_unsafe] = ACTIONS(2251), + [anon_sym_use] = ACTIONS(2251), + [anon_sym_where] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [sym_mutable_specifier] = ACTIONS(2251), [sym_integer_literal] = ACTIONS(2173), [aux_sym_string_literal_token1] = ACTIONS(2175), [sym_char_literal] = ACTIONS(2173), [anon_sym_true] = ACTIONS(2177), [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2239), - [sym_super] = ACTIONS(2239), - [sym_crate] = ACTIONS(2239), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), [sym_raw_string_literal] = ACTIONS(2173), [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [518] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2181), - [anon_sym_i8] = ACTIONS(2181), - [anon_sym_u16] = ACTIONS(2181), - [anon_sym_i16] = ACTIONS(2181), - [anon_sym_u32] = ACTIONS(2181), - [anon_sym_i32] = ACTIONS(2181), - [anon_sym_u64] = ACTIONS(2181), - [anon_sym_i64] = ACTIONS(2181), - [anon_sym_u128] = ACTIONS(2181), - [anon_sym_i128] = ACTIONS(2181), - [anon_sym_isize] = ACTIONS(2181), - [anon_sym_usize] = ACTIONS(2181), - [anon_sym_f32] = ACTIONS(2181), - [anon_sym_f64] = ACTIONS(2181), - [anon_sym_bool] = ACTIONS(2181), - [anon_sym_str] = ACTIONS(2181), - [anon_sym_char] = ACTIONS(2181), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [521] = { + [sym_delim_token_tree] = STATE(515), + [sym__delim_tokens] = STATE(515), + [sym__non_delim_token] = STATE(515), + [sym__literal] = STATE(515), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(515), + [sym_identifier] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_DOLLAR] = ACTIONS(2259), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [aux_sym__non_special_token_token1] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_await] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_where] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [sym_mutable_specifier] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [519] = { + [522] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2169), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -64210,241 +61973,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [520] = { - [sym_delim_token_tree] = STATE(512), - [sym__delim_tokens] = STATE(512), - [sym__non_delim_token] = STATE(512), - [sym__literal] = STATE(512), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(512), - [sym_identifier] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2247), - [anon_sym_u8] = ACTIONS(2245), - [anon_sym_i8] = ACTIONS(2245), - [anon_sym_u16] = ACTIONS(2245), - [anon_sym_i16] = ACTIONS(2245), - [anon_sym_u32] = ACTIONS(2245), - [anon_sym_i32] = ACTIONS(2245), - [anon_sym_u64] = ACTIONS(2245), - [anon_sym_i64] = ACTIONS(2245), - [anon_sym_u128] = ACTIONS(2245), - [anon_sym_i128] = ACTIONS(2245), - [anon_sym_isize] = ACTIONS(2245), - [anon_sym_usize] = ACTIONS(2245), - [anon_sym_f32] = ACTIONS(2245), - [anon_sym_f64] = ACTIONS(2245), - [anon_sym_bool] = ACTIONS(2245), - [anon_sym_str] = ACTIONS(2245), - [anon_sym_char] = ACTIONS(2245), - [aux_sym__non_special_token_token1] = ACTIONS(2245), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_await] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_impl] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_mod] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_where] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [sym_mutable_specifier] = ACTIONS(2245), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_crate] = ACTIONS(2245), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [521] = { - [sym_delim_token_tree] = STATE(536), - [sym__delim_tokens] = STATE(536), - [sym__non_delim_token] = STATE(536), - [sym__literal] = STATE(536), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(536), - [sym_identifier] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2251), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [aux_sym__non_special_token_token1] = ACTIONS(2249), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_as] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_await] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_where] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [sym_mutable_specifier] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { - [sym_delim_token_tree] = STATE(540), - [sym__delim_tokens] = STATE(540), - [sym__non_delim_token] = STATE(540), - [sym__literal] = STATE(540), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(540), - [sym_identifier] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2255), - [anon_sym_i8] = ACTIONS(2255), - [anon_sym_u16] = ACTIONS(2255), - [anon_sym_i16] = ACTIONS(2255), - [anon_sym_u32] = ACTIONS(2255), - [anon_sym_i32] = ACTIONS(2255), - [anon_sym_u64] = ACTIONS(2255), - [anon_sym_i64] = ACTIONS(2255), - [anon_sym_u128] = ACTIONS(2255), - [anon_sym_i128] = ACTIONS(2255), - [anon_sym_isize] = ACTIONS(2255), - [anon_sym_usize] = ACTIONS(2255), - [anon_sym_f32] = ACTIONS(2255), - [anon_sym_f64] = ACTIONS(2255), - [anon_sym_bool] = ACTIONS(2255), - [anon_sym_str] = ACTIONS(2255), - [anon_sym_char] = ACTIONS(2255), - [aux_sym__non_special_token_token1] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_await] = ACTIONS(2255), - [anon_sym_break] = ACTIONS(2255), - [anon_sym_const] = ACTIONS(2255), - [anon_sym_continue] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [anon_sym_fn] = ACTIONS(2255), - [anon_sym_for] = ACTIONS(2255), - [anon_sym_if] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2255), - [anon_sym_let] = ACTIONS(2255), - [anon_sym_loop] = ACTIONS(2255), - [anon_sym_match] = ACTIONS(2255), - [anon_sym_mod] = ACTIONS(2255), - [anon_sym_pub] = ACTIONS(2255), - [anon_sym_return] = ACTIONS(2255), - [anon_sym_static] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2255), - [anon_sym_trait] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_union] = ACTIONS(2255), - [anon_sym_unsafe] = ACTIONS(2255), - [anon_sym_use] = ACTIONS(2255), - [anon_sym_where] = ACTIONS(2255), - [anon_sym_while] = ACTIONS(2255), - [sym_mutable_specifier] = ACTIONS(2255), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2255), - [sym_super] = ACTIONS(2255), - [sym_crate] = ACTIONS(2255), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, [523] = { - [sym_delim_token_tree] = STATE(510), - [sym__delim_tokens] = STATE(510), - [sym__non_delim_token] = STATE(510), - [sym__literal] = STATE(510), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(510), + [sym_delim_token_tree] = STATE(533), + [sym__delim_tokens] = STATE(533), + [sym__non_delim_token] = STATE(533), + [sym__literal] = STATE(533), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(533), [sym_identifier] = ACTIONS(2261), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2199), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2263), [anon_sym_u8] = ACTIONS(2261), [anon_sym_i8] = ACTIONS(2261), @@ -64507,167 +62048,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [524] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2161), - [anon_sym_i8] = ACTIONS(2161), - [anon_sym_u16] = ACTIONS(2161), - [anon_sym_i16] = ACTIONS(2161), - [anon_sym_u32] = ACTIONS(2161), - [anon_sym_i32] = ACTIONS(2161), - [anon_sym_u64] = ACTIONS(2161), - [anon_sym_i64] = ACTIONS(2161), - [anon_sym_u128] = ACTIONS(2161), - [anon_sym_i128] = ACTIONS(2161), - [anon_sym_isize] = ACTIONS(2161), - [anon_sym_usize] = ACTIONS(2161), - [anon_sym_f32] = ACTIONS(2161), - [anon_sym_f64] = ACTIONS(2161), - [anon_sym_bool] = ACTIONS(2161), - [anon_sym_str] = ACTIONS(2161), - [anon_sym_char] = ACTIONS(2161), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [525] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2181), + [sym_token_tree] = STATE(532), + [sym_token_repetition] = STATE(532), + [sym__literal] = STATE(532), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(532), + [sym_identifier] = ACTIONS(2265), [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2197), [anon_sym_LBRACE] = ACTIONS(2185), [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_RBRACK] = ACTIONS(2187), [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2181), - [anon_sym_i8] = ACTIONS(2181), - [anon_sym_u16] = ACTIONS(2181), - [anon_sym_i16] = ACTIONS(2181), - [anon_sym_u32] = ACTIONS(2181), - [anon_sym_i32] = ACTIONS(2181), - [anon_sym_u64] = ACTIONS(2181), - [anon_sym_i64] = ACTIONS(2181), - [anon_sym_u128] = ACTIONS(2181), - [anon_sym_i128] = ACTIONS(2181), - [anon_sym_isize] = ACTIONS(2181), - [anon_sym_usize] = ACTIONS(2181), - [anon_sym_f32] = ACTIONS(2181), - [anon_sym_f64] = ACTIONS(2181), - [anon_sym_bool] = ACTIONS(2181), - [anon_sym_str] = ACTIONS(2181), - [anon_sym_char] = ACTIONS(2181), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [526] = { - [sym_delim_token_tree] = STATE(501), - [sym__delim_tokens] = STATE(501), - [sym__non_delim_token] = STATE(501), - [sym__literal] = STATE(501), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2267), [anon_sym_u8] = ACTIONS(2265), [anon_sym_i8] = ACTIONS(2265), [anon_sym_u16] = ACTIONS(2265), @@ -64715,32 +62107,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2265), [anon_sym_while] = ACTIONS(2265), [sym_mutable_specifier] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_metavariable] = ACTIONS(2267), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [525] = { + [sym_delim_token_tree] = STATE(539), + [sym__delim_tokens] = STATE(539), + [sym__non_delim_token] = STATE(539), + [sym__literal] = STATE(539), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(539), + [sym_identifier] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2273), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [aux_sym__non_special_token_token1] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_as] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_await] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_where] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [sym_mutable_specifier] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [526] = { + [sym_delim_token_tree] = STATE(534), + [sym__delim_tokens] = STATE(534), + [sym__non_delim_token] = STATE(534), + [sym__literal] = STATE(534), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(534), + [sym_identifier] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2239), + [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_u8] = ACTIONS(2275), + [anon_sym_i8] = ACTIONS(2275), + [anon_sym_u16] = ACTIONS(2275), + [anon_sym_i16] = ACTIONS(2275), + [anon_sym_u32] = ACTIONS(2275), + [anon_sym_i32] = ACTIONS(2275), + [anon_sym_u64] = ACTIONS(2275), + [anon_sym_i64] = ACTIONS(2275), + [anon_sym_u128] = ACTIONS(2275), + [anon_sym_i128] = ACTIONS(2275), + [anon_sym_isize] = ACTIONS(2275), + [anon_sym_usize] = ACTIONS(2275), + [anon_sym_f32] = ACTIONS(2275), + [anon_sym_f64] = ACTIONS(2275), + [anon_sym_bool] = ACTIONS(2275), + [anon_sym_str] = ACTIONS(2275), + [anon_sym_char] = ACTIONS(2275), + [aux_sym__non_special_token_token1] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2275), + [anon_sym_as] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_await] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_fn] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_impl] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_mod] = ACTIONS(2275), + [anon_sym_pub] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2275), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_trait] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2275), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_unsafe] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_where] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [sym_mutable_specifier] = ACTIONS(2275), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [527] = { + [sym_delim_token_tree] = STATE(529), + [sym__delim_tokens] = STATE(529), + [sym__non_delim_token] = STATE(529), + [sym__literal] = STATE(529), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(529), + [sym_identifier] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_u8] = ACTIONS(2279), + [anon_sym_i8] = ACTIONS(2279), + [anon_sym_u16] = ACTIONS(2279), + [anon_sym_i16] = ACTIONS(2279), + [anon_sym_u32] = ACTIONS(2279), + [anon_sym_i32] = ACTIONS(2279), + [anon_sym_u64] = ACTIONS(2279), + [anon_sym_i64] = ACTIONS(2279), + [anon_sym_u128] = ACTIONS(2279), + [anon_sym_i128] = ACTIONS(2279), + [anon_sym_isize] = ACTIONS(2279), + [anon_sym_usize] = ACTIONS(2279), + [anon_sym_f32] = ACTIONS(2279), + [anon_sym_f64] = ACTIONS(2279), + [anon_sym_bool] = ACTIONS(2279), + [anon_sym_str] = ACTIONS(2279), + [anon_sym_char] = ACTIONS(2279), + [aux_sym__non_special_token_token1] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2279), + [anon_sym_as] = ACTIONS(2279), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_await] = ACTIONS(2279), + [anon_sym_break] = ACTIONS(2279), + [anon_sym_const] = ACTIONS(2279), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_default] = ACTIONS(2279), + [anon_sym_enum] = ACTIONS(2279), + [anon_sym_fn] = ACTIONS(2279), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_if] = ACTIONS(2279), + [anon_sym_impl] = ACTIONS(2279), + [anon_sym_let] = ACTIONS(2279), + [anon_sym_loop] = ACTIONS(2279), + [anon_sym_match] = ACTIONS(2279), + [anon_sym_mod] = ACTIONS(2279), + [anon_sym_pub] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_static] = ACTIONS(2279), + [anon_sym_struct] = ACTIONS(2279), + [anon_sym_trait] = ACTIONS(2279), + [anon_sym_type] = ACTIONS(2279), + [anon_sym_union] = ACTIONS(2279), + [anon_sym_unsafe] = ACTIONS(2279), + [anon_sym_use] = ACTIONS(2279), + [anon_sym_where] = ACTIONS(2279), + [anon_sym_while] = ACTIONS(2279), + [sym_mutable_specifier] = ACTIONS(2279), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2279), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [528] = { + [sym_delim_token_tree] = STATE(501), + [sym__delim_tokens] = STATE(501), + [sym__non_delim_token] = STATE(501), + [sym__literal] = STATE(501), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(501), + [sym_identifier] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2253), + [anon_sym_DOLLAR] = ACTIONS(2285), + [anon_sym_u8] = ACTIONS(2283), + [anon_sym_i8] = ACTIONS(2283), + [anon_sym_u16] = ACTIONS(2283), + [anon_sym_i16] = ACTIONS(2283), + [anon_sym_u32] = ACTIONS(2283), + [anon_sym_i32] = ACTIONS(2283), + [anon_sym_u64] = ACTIONS(2283), + [anon_sym_i64] = ACTIONS(2283), + [anon_sym_u128] = ACTIONS(2283), + [anon_sym_i128] = ACTIONS(2283), + [anon_sym_isize] = ACTIONS(2283), + [anon_sym_usize] = ACTIONS(2283), + [anon_sym_f32] = ACTIONS(2283), + [anon_sym_f64] = ACTIONS(2283), + [anon_sym_bool] = ACTIONS(2283), + [anon_sym_str] = ACTIONS(2283), + [anon_sym_char] = ACTIONS(2283), + [aux_sym__non_special_token_token1] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2283), + [anon_sym_as] = ACTIONS(2283), + [anon_sym_async] = ACTIONS(2283), + [anon_sym_await] = ACTIONS(2283), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_const] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_default] = ACTIONS(2283), + [anon_sym_enum] = ACTIONS(2283), + [anon_sym_fn] = ACTIONS(2283), + [anon_sym_for] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_impl] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_loop] = ACTIONS(2283), + [anon_sym_match] = ACTIONS(2283), + [anon_sym_mod] = ACTIONS(2283), + [anon_sym_pub] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_trait] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_unsafe] = ACTIONS(2283), + [anon_sym_use] = ACTIONS(2283), + [anon_sym_where] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [sym_mutable_specifier] = ACTIONS(2283), [sym_integer_literal] = ACTIONS(2173), [aux_sym_string_literal_token1] = ACTIONS(2175), [sym_char_literal] = ACTIONS(2173), [anon_sym_true] = ACTIONS(2177), [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2265), - [sym_super] = ACTIONS(2265), - [sym_crate] = ACTIONS(2265), + [sym_self] = ACTIONS(2283), + [sym_super] = ACTIONS(2283), + [sym_crate] = ACTIONS(2283), [sym_raw_string_literal] = ACTIONS(2173), [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [527] = { + [529] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2269), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -64802,19 +62491,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [528] = { + [530] = { + [sym_token_tree] = STATE(508), + [sym_token_repetition] = STATE(508), + [sym__literal] = STATE(508), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(508), + [sym_identifier] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2197), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2287), + [anon_sym_i8] = ACTIONS(2287), + [anon_sym_u16] = ACTIONS(2287), + [anon_sym_i16] = ACTIONS(2287), + [anon_sym_u32] = ACTIONS(2287), + [anon_sym_i32] = ACTIONS(2287), + [anon_sym_u64] = ACTIONS(2287), + [anon_sym_i64] = ACTIONS(2287), + [anon_sym_u128] = ACTIONS(2287), + [anon_sym_i128] = ACTIONS(2287), + [anon_sym_isize] = ACTIONS(2287), + [anon_sym_usize] = ACTIONS(2287), + [anon_sym_f32] = ACTIONS(2287), + [anon_sym_f64] = ACTIONS(2287), + [anon_sym_bool] = ACTIONS(2287), + [anon_sym_str] = ACTIONS(2287), + [anon_sym_char] = ACTIONS(2287), + [aux_sym__non_special_token_token1] = ACTIONS(2287), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_fn] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_impl] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_mod] = ACTIONS(2287), + [anon_sym_pub] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_trait] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_unsafe] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_where] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [sym_mutable_specifier] = ACTIONS(2287), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2287), + [sym_super] = ACTIONS(2287), + [sym_crate] = ACTIONS(2287), + [sym_metavariable] = ACTIONS(2289), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [531] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [532] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2269), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -64876,19 +62787,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [529] = { + [534] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2179), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -64950,389 +62861,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [530] = { - [sym_delim_token_tree] = STATE(543), - [sym__delim_tokens] = STATE(543), - [sym__non_delim_token] = STATE(543), - [sym__literal] = STATE(543), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(543), - [sym_identifier] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_u8] = ACTIONS(2271), - [anon_sym_i8] = ACTIONS(2271), - [anon_sym_u16] = ACTIONS(2271), - [anon_sym_i16] = ACTIONS(2271), - [anon_sym_u32] = ACTIONS(2271), - [anon_sym_i32] = ACTIONS(2271), - [anon_sym_u64] = ACTIONS(2271), - [anon_sym_i64] = ACTIONS(2271), - [anon_sym_u128] = ACTIONS(2271), - [anon_sym_i128] = ACTIONS(2271), - [anon_sym_isize] = ACTIONS(2271), - [anon_sym_usize] = ACTIONS(2271), - [anon_sym_f32] = ACTIONS(2271), - [anon_sym_f64] = ACTIONS(2271), - [anon_sym_bool] = ACTIONS(2271), - [anon_sym_str] = ACTIONS(2271), - [anon_sym_char] = ACTIONS(2271), - [aux_sym__non_special_token_token1] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2271), - [anon_sym_as] = ACTIONS(2271), - [anon_sym_async] = ACTIONS(2271), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_break] = ACTIONS(2271), - [anon_sym_const] = ACTIONS(2271), - [anon_sym_continue] = ACTIONS(2271), - [anon_sym_default] = ACTIONS(2271), - [anon_sym_enum] = ACTIONS(2271), - [anon_sym_fn] = ACTIONS(2271), - [anon_sym_for] = ACTIONS(2271), - [anon_sym_if] = ACTIONS(2271), - [anon_sym_impl] = ACTIONS(2271), - [anon_sym_let] = ACTIONS(2271), - [anon_sym_loop] = ACTIONS(2271), - [anon_sym_match] = ACTIONS(2271), - [anon_sym_mod] = ACTIONS(2271), - [anon_sym_pub] = ACTIONS(2271), - [anon_sym_return] = ACTIONS(2271), - [anon_sym_static] = ACTIONS(2271), - [anon_sym_struct] = ACTIONS(2271), - [anon_sym_trait] = ACTIONS(2271), - [anon_sym_type] = ACTIONS(2271), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2271), - [anon_sym_use] = ACTIONS(2271), - [anon_sym_where] = ACTIONS(2271), - [anon_sym_while] = ACTIONS(2271), - [sym_mutable_specifier] = ACTIONS(2271), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2271), - [sym_super] = ACTIONS(2271), - [sym_crate] = ACTIONS(2271), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [531] = { - [sym_delim_token_tree] = STATE(524), - [sym__delim_tokens] = STATE(524), - [sym__non_delim_token] = STATE(524), - [sym__literal] = STATE(524), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(524), - [sym_identifier] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_u8] = ACTIONS(2275), - [anon_sym_i8] = ACTIONS(2275), - [anon_sym_u16] = ACTIONS(2275), - [anon_sym_i16] = ACTIONS(2275), - [anon_sym_u32] = ACTIONS(2275), - [anon_sym_i32] = ACTIONS(2275), - [anon_sym_u64] = ACTIONS(2275), - [anon_sym_i64] = ACTIONS(2275), - [anon_sym_u128] = ACTIONS(2275), - [anon_sym_i128] = ACTIONS(2275), - [anon_sym_isize] = ACTIONS(2275), - [anon_sym_usize] = ACTIONS(2275), - [anon_sym_f32] = ACTIONS(2275), - [anon_sym_f64] = ACTIONS(2275), - [anon_sym_bool] = ACTIONS(2275), - [anon_sym_str] = ACTIONS(2275), - [anon_sym_char] = ACTIONS(2275), - [aux_sym__non_special_token_token1] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(2275), - [anon_sym_async] = ACTIONS(2275), - [anon_sym_await] = ACTIONS(2275), - [anon_sym_break] = ACTIONS(2275), - [anon_sym_const] = ACTIONS(2275), - [anon_sym_continue] = ACTIONS(2275), - [anon_sym_default] = ACTIONS(2275), - [anon_sym_enum] = ACTIONS(2275), - [anon_sym_fn] = ACTIONS(2275), - [anon_sym_for] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(2275), - [anon_sym_impl] = ACTIONS(2275), - [anon_sym_let] = ACTIONS(2275), - [anon_sym_loop] = ACTIONS(2275), - [anon_sym_match] = ACTIONS(2275), - [anon_sym_mod] = ACTIONS(2275), - [anon_sym_pub] = ACTIONS(2275), - [anon_sym_return] = ACTIONS(2275), - [anon_sym_static] = ACTIONS(2275), - [anon_sym_struct] = ACTIONS(2275), - [anon_sym_trait] = ACTIONS(2275), - [anon_sym_type] = ACTIONS(2275), - [anon_sym_union] = ACTIONS(2275), - [anon_sym_unsafe] = ACTIONS(2275), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_where] = ACTIONS(2275), - [anon_sym_while] = ACTIONS(2275), - [sym_mutable_specifier] = ACTIONS(2275), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2275), - [sym_super] = ACTIONS(2275), - [sym_crate] = ACTIONS(2275), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [532] = { - [sym_delim_token_tree] = STATE(527), - [sym__delim_tokens] = STATE(527), - [sym__non_delim_token] = STATE(527), - [sym__literal] = STATE(527), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_u8] = ACTIONS(2279), - [anon_sym_i8] = ACTIONS(2279), - [anon_sym_u16] = ACTIONS(2279), - [anon_sym_i16] = ACTIONS(2279), - [anon_sym_u32] = ACTIONS(2279), - [anon_sym_i32] = ACTIONS(2279), - [anon_sym_u64] = ACTIONS(2279), - [anon_sym_i64] = ACTIONS(2279), - [anon_sym_u128] = ACTIONS(2279), - [anon_sym_i128] = ACTIONS(2279), - [anon_sym_isize] = ACTIONS(2279), - [anon_sym_usize] = ACTIONS(2279), - [anon_sym_f32] = ACTIONS(2279), - [anon_sym_f64] = ACTIONS(2279), - [anon_sym_bool] = ACTIONS(2279), - [anon_sym_str] = ACTIONS(2279), - [anon_sym_char] = ACTIONS(2279), - [aux_sym__non_special_token_token1] = ACTIONS(2279), - [anon_sym_SQUOTE] = ACTIONS(2279), - [anon_sym_as] = ACTIONS(2279), - [anon_sym_async] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2279), - [anon_sym_break] = ACTIONS(2279), - [anon_sym_const] = ACTIONS(2279), - [anon_sym_continue] = ACTIONS(2279), - [anon_sym_default] = ACTIONS(2279), - [anon_sym_enum] = ACTIONS(2279), - [anon_sym_fn] = ACTIONS(2279), - [anon_sym_for] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(2279), - [anon_sym_impl] = ACTIONS(2279), - [anon_sym_let] = ACTIONS(2279), - [anon_sym_loop] = ACTIONS(2279), - [anon_sym_match] = ACTIONS(2279), - [anon_sym_mod] = ACTIONS(2279), - [anon_sym_pub] = ACTIONS(2279), - [anon_sym_return] = ACTIONS(2279), - [anon_sym_static] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2279), - [anon_sym_trait] = ACTIONS(2279), - [anon_sym_type] = ACTIONS(2279), - [anon_sym_union] = ACTIONS(2279), - [anon_sym_unsafe] = ACTIONS(2279), - [anon_sym_use] = ACTIONS(2279), - [anon_sym_where] = ACTIONS(2279), - [anon_sym_while] = ACTIONS(2279), - [sym_mutable_specifier] = ACTIONS(2279), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2279), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, - [533] = { - [sym_token_tree] = STATE(538), - [sym_token_repetition] = STATE(538), - [sym__literal] = STATE(538), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(538), - [sym_identifier] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_RBRACK] = ACTIONS(2285), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2283), - [anon_sym_i8] = ACTIONS(2283), - [anon_sym_u16] = ACTIONS(2283), - [anon_sym_i16] = ACTIONS(2283), - [anon_sym_u32] = ACTIONS(2283), - [anon_sym_i32] = ACTIONS(2283), - [anon_sym_u64] = ACTIONS(2283), - [anon_sym_i64] = ACTIONS(2283), - [anon_sym_u128] = ACTIONS(2283), - [anon_sym_i128] = ACTIONS(2283), - [anon_sym_isize] = ACTIONS(2283), - [anon_sym_usize] = ACTIONS(2283), - [anon_sym_f32] = ACTIONS(2283), - [anon_sym_f64] = ACTIONS(2283), - [anon_sym_bool] = ACTIONS(2283), - [anon_sym_str] = ACTIONS(2283), - [anon_sym_char] = ACTIONS(2283), - [aux_sym__non_special_token_token1] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2283), - [anon_sym_as] = ACTIONS(2283), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_await] = ACTIONS(2283), - [anon_sym_break] = ACTIONS(2283), - [anon_sym_const] = ACTIONS(2283), - [anon_sym_continue] = ACTIONS(2283), - [anon_sym_default] = ACTIONS(2283), - [anon_sym_enum] = ACTIONS(2283), - [anon_sym_fn] = ACTIONS(2283), - [anon_sym_for] = ACTIONS(2283), - [anon_sym_if] = ACTIONS(2283), - [anon_sym_impl] = ACTIONS(2283), - [anon_sym_let] = ACTIONS(2283), - [anon_sym_loop] = ACTIONS(2283), - [anon_sym_match] = ACTIONS(2283), - [anon_sym_mod] = ACTIONS(2283), - [anon_sym_pub] = ACTIONS(2283), - [anon_sym_return] = ACTIONS(2283), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_struct] = ACTIONS(2283), - [anon_sym_trait] = ACTIONS(2283), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_union] = ACTIONS(2283), - [anon_sym_unsafe] = ACTIONS(2283), - [anon_sym_use] = ACTIONS(2283), - [anon_sym_where] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2283), - [sym_mutable_specifier] = ACTIONS(2283), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2283), - [sym_super] = ACTIONS(2283), - [sym_crate] = ACTIONS(2283), - [sym_metavariable] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [534] = { - [sym_delim_token_tree] = STATE(502), - [sym__delim_tokens] = STATE(502), - [sym__non_delim_token] = STATE(502), - [sym__literal] = STATE(502), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(502), - [sym_identifier] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_u8] = ACTIONS(2289), - [anon_sym_i8] = ACTIONS(2289), - [anon_sym_u16] = ACTIONS(2289), - [anon_sym_i16] = ACTIONS(2289), - [anon_sym_u32] = ACTIONS(2289), - [anon_sym_i32] = ACTIONS(2289), - [anon_sym_u64] = ACTIONS(2289), - [anon_sym_i64] = ACTIONS(2289), - [anon_sym_u128] = ACTIONS(2289), - [anon_sym_i128] = ACTIONS(2289), - [anon_sym_isize] = ACTIONS(2289), - [anon_sym_usize] = ACTIONS(2289), - [anon_sym_f32] = ACTIONS(2289), - [anon_sym_f64] = ACTIONS(2289), - [anon_sym_bool] = ACTIONS(2289), - [anon_sym_str] = ACTIONS(2289), - [anon_sym_char] = ACTIONS(2289), - [aux_sym__non_special_token_token1] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_await] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_impl] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_mod] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_where] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [sym_mutable_specifier] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), - [sym_block_comment] = ACTIONS(3), - }, [535] = { - [sym_token_tree] = STATE(518), - [sym_token_repetition] = STATE(518), - [sym__literal] = STATE(518), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(518), + [sym_delim_token_tree] = STATE(510), + [sym__delim_tokens] = STATE(510), + [sym__non_delim_token] = STATE(510), + [sym__literal] = STATE(510), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(510), [sym_identifier] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2295), [anon_sym_u8] = ACTIONS(2293), [anon_sym_i8] = ACTIONS(2293), [anon_sym_u16] = ACTIONS(2293), @@ -65380,33 +62922,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2293), [anon_sym_while] = ACTIONS(2293), [sym_mutable_specifier] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [536] = { + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), [sym_integer_literal] = ACTIONS(2014), [aux_sym_string_literal_token1] = ACTIONS(2016), [sym_char_literal] = ACTIONS(2014), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(2293), - [sym_crate] = ACTIONS(2293), - [sym_metavariable] = ACTIONS(2295), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), [sym_raw_string_literal] = ACTIONS(2014), [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, - [536] = { + [537] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_RBRACK] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2297), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -65468,241 +63083,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2181), - [anon_sym_i8] = ACTIONS(2181), - [anon_sym_u16] = ACTIONS(2181), - [anon_sym_i16] = ACTIONS(2181), - [anon_sym_u32] = ACTIONS(2181), - [anon_sym_i32] = ACTIONS(2181), - [anon_sym_u64] = ACTIONS(2181), - [anon_sym_i64] = ACTIONS(2181), - [anon_sym_u128] = ACTIONS(2181), - [anon_sym_i128] = ACTIONS(2181), - [anon_sym_isize] = ACTIONS(2181), - [anon_sym_usize] = ACTIONS(2181), - [anon_sym_f32] = ACTIONS(2181), - [anon_sym_f64] = ACTIONS(2181), - [anon_sym_bool] = ACTIONS(2181), - [anon_sym_str] = ACTIONS(2181), - [anon_sym_char] = ACTIONS(2181), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, [538] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), - [sym_identifier] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_RBRACK] = ACTIONS(2243), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2181), - [anon_sym_i8] = ACTIONS(2181), - [anon_sym_u16] = ACTIONS(2181), - [anon_sym_i16] = ACTIONS(2181), - [anon_sym_u32] = ACTIONS(2181), - [anon_sym_i32] = ACTIONS(2181), - [anon_sym_u64] = ACTIONS(2181), - [anon_sym_i64] = ACTIONS(2181), - [anon_sym_u128] = ACTIONS(2181), - [anon_sym_i128] = ACTIONS(2181), - [anon_sym_isize] = ACTIONS(2181), - [anon_sym_usize] = ACTIONS(2181), - [anon_sym_f32] = ACTIONS(2181), - [anon_sym_f64] = ACTIONS(2181), - [anon_sym_bool] = ACTIONS(2181), - [anon_sym_str] = ACTIONS(2181), - [anon_sym_char] = ACTIONS(2181), - [aux_sym__non_special_token_token1] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_where] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [sym_mutable_specifier] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [sym_delim_token_tree] = STATE(483), + [sym__delim_tokens] = STATE(483), + [sym__non_delim_token] = STATE(483), + [sym__literal] = STATE(483), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(483), + [sym_identifier] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2171), + [anon_sym_u8] = ACTIONS(2161), + [anon_sym_i8] = ACTIONS(2161), + [anon_sym_u16] = ACTIONS(2161), + [anon_sym_i16] = ACTIONS(2161), + [anon_sym_u32] = ACTIONS(2161), + [anon_sym_i32] = ACTIONS(2161), + [anon_sym_u64] = ACTIONS(2161), + [anon_sym_i64] = ACTIONS(2161), + [anon_sym_u128] = ACTIONS(2161), + [anon_sym_i128] = ACTIONS(2161), + [anon_sym_isize] = ACTIONS(2161), + [anon_sym_usize] = ACTIONS(2161), + [anon_sym_f32] = ACTIONS(2161), + [anon_sym_f64] = ACTIONS(2161), + [anon_sym_bool] = ACTIONS(2161), + [anon_sym_str] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [aux_sym__non_special_token_token1] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_as] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_where] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [sym_mutable_specifier] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2193), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, [539] = { - [sym_token_tree] = STATE(537), - [sym_token_repetition] = STATE(537), - [sym__literal] = STATE(537), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(537), - [sym_identifier] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [aux_sym__non_special_token_token1] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_as] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_await] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_default] = ACTIONS(2299), - [anon_sym_enum] = ACTIONS(2299), - [anon_sym_fn] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_impl] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_mod] = ACTIONS(2299), - [anon_sym_pub] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(2299), - [anon_sym_trait] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_union] = ACTIONS(2299), - [anon_sym_unsafe] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_where] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [sym_mutable_specifier] = ACTIONS(2299), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2299), - [sym_super] = ACTIONS(2299), - [sym_crate] = ACTIONS(2299), - [sym_metavariable] = ACTIONS(2303), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { [sym_delim_token_tree] = STATE(483), [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_RPAREN] = ACTIONS(2179), + [anon_sym_RPAREN] = ACTIONS(2297), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -65764,18 +63231,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2173), [sym_block_comment] = ACTIONS(3), }, + [540] = { + [sym_delim_token_tree] = STATE(538), + [sym__delim_tokens] = STATE(538), + [sym__non_delim_token] = STATE(538), + [sym__literal] = STATE(538), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_DOLLAR] = ACTIONS(2301), + [anon_sym_u8] = ACTIONS(2299), + [anon_sym_i8] = ACTIONS(2299), + [anon_sym_u16] = ACTIONS(2299), + [anon_sym_i16] = ACTIONS(2299), + [anon_sym_u32] = ACTIONS(2299), + [anon_sym_i32] = ACTIONS(2299), + [anon_sym_u64] = ACTIONS(2299), + [anon_sym_i64] = ACTIONS(2299), + [anon_sym_u128] = ACTIONS(2299), + [anon_sym_i128] = ACTIONS(2299), + [anon_sym_isize] = ACTIONS(2299), + [anon_sym_usize] = ACTIONS(2299), + [anon_sym_f32] = ACTIONS(2299), + [anon_sym_f64] = ACTIONS(2299), + [anon_sym_bool] = ACTIONS(2299), + [anon_sym_str] = ACTIONS(2299), + [anon_sym_char] = ACTIONS(2299), + [aux_sym__non_special_token_token1] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_as] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_await] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_fn] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_impl] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_mod] = ACTIONS(2299), + [anon_sym_pub] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_trait] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_unsafe] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_where] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [sym_mutable_specifier] = ACTIONS(2299), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, [541] = { - [sym_token_tree] = STATE(485), - [sym_token_repetition] = STATE(485), - [sym__literal] = STATE(485), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(485), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), [sym_identifier] = ACTIONS(2181), [anon_sym_LPAREN] = ACTIONS(2183), [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2243), [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_RBRACK] = ACTIONS(2291), [anon_sym_DOLLAR] = ACTIONS(2191), [anon_sym_u8] = ACTIONS(2181), [anon_sym_i8] = ACTIONS(2181), @@ -65843,14 +63384,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__delim_tokens] = STATE(483), [sym__non_delim_token] = STATE(483), [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), [aux_sym_delim_token_tree_repeat1] = STATE(483), [sym_identifier] = ACTIONS(2161), [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2231), [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_DOLLAR] = ACTIONS(2171), [anon_sym_u8] = ACTIONS(2161), [anon_sym_i8] = ACTIONS(2161), @@ -65913,92 +63454,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_delim_token_tree] = STATE(483), - [sym__delim_tokens] = STATE(483), - [sym__non_delim_token] = STATE(483), - [sym__literal] = STATE(483), - [sym_string_literal] = STATE(592), - [sym_boolean_literal] = STATE(592), - [aux_sym_delim_token_tree_repeat1] = STATE(483), - [sym_identifier] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_DOLLAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2161), - [anon_sym_i8] = ACTIONS(2161), - [anon_sym_u16] = ACTIONS(2161), - [anon_sym_i16] = ACTIONS(2161), - [anon_sym_u32] = ACTIONS(2161), - [anon_sym_i32] = ACTIONS(2161), - [anon_sym_u64] = ACTIONS(2161), - [anon_sym_i64] = ACTIONS(2161), - [anon_sym_u128] = ACTIONS(2161), - [anon_sym_i128] = ACTIONS(2161), - [anon_sym_isize] = ACTIONS(2161), - [anon_sym_usize] = ACTIONS(2161), - [anon_sym_f32] = ACTIONS(2161), - [anon_sym_f64] = ACTIONS(2161), - [anon_sym_bool] = ACTIONS(2161), - [anon_sym_str] = ACTIONS(2161), - [anon_sym_char] = ACTIONS(2161), - [aux_sym__non_special_token_token1] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_await] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_where] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [sym_mutable_specifier] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), + [sym_token_tree] = STATE(493), + [sym_token_repetition] = STATE(493), + [sym__literal] = STATE(493), + [sym_string_literal] = STATE(573), + [sym_boolean_literal] = STATE(573), + [aux_sym_token_tree_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [aux_sym__non_special_token_token1] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_as] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_where] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [sym_mutable_specifier] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_raw_string_literal] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2193), + [sym_raw_string_literal] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_token_tree] = STATE(541), - [sym_token_repetition] = STATE(541), - [sym__literal] = STATE(541), - [sym_string_literal] = STATE(585), - [sym_boolean_literal] = STATE(585), - [aux_sym_token_tree_repeat1] = STATE(541), + [sym_delim_token_tree] = STATE(537), + [sym__delim_tokens] = STATE(537), + [sym__non_delim_token] = STATE(537), + [sym__literal] = STATE(537), + [sym_string_literal] = STATE(616), + [sym_boolean_literal] = STATE(616), + [aux_sym_delim_token_tree_repeat1] = STATE(537), [sym_identifier] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_DOLLAR] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2271), + [anon_sym_DOLLAR] = ACTIONS(2307), [anon_sym_u8] = ACTIONS(2305), [anon_sym_i8] = ACTIONS(2305), [anon_sym_u16] = ACTIONS(2305), @@ -66046,224 +63588,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2305), [anon_sym_while] = ACTIONS(2305), [sym_mutable_specifier] = ACTIONS(2305), - [sym_integer_literal] = ACTIONS(2014), - [aux_sym_string_literal_token1] = ACTIONS(2016), - [sym_char_literal] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2018), - [anon_sym_false] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), [sym_line_comment] = ACTIONS(912), [sym_self] = ACTIONS(2305), [sym_super] = ACTIONS(2305), [sym_crate] = ACTIONS(2305), - [sym_metavariable] = ACTIONS(2307), - [sym_raw_string_literal] = ACTIONS(2014), - [sym_float_literal] = ACTIONS(2014), + [sym_raw_string_literal] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), + [sym_block_comment] = ACTIONS(3), + }, + [545] = { + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_match_pattern] = STATE(2335), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(370), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [545] = { - [sym_attribute_item] = STATE(554), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(686), - [sym__type] = STATE(1821), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [546] = { + [sym_attribute_item] = STATE(558), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(691), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(554), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(558), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2311), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_COMMA] = ACTIONS(2319), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), - [sym_block_comment] = ACTIONS(3), - }, - [546] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_match_pattern] = STATE(2560), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(370), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [547] = { - [sym_attribute_item] = STATE(621), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_match_pattern] = STATE(2481), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1981), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_attribute_item] = STATE(623), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_match_pattern] = STATE(2503), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1895), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_POUND] = ACTIONS(370), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -66271,928 +63812,928 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [548] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(645), - [sym__type] = STATE(1917), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(730), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [549] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(645), - [sym__type] = STATE(1917), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(730), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [550] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(645), - [sym__type] = STATE(1917), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(730), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [551] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(645), - [sym__type] = STATE(1917), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(730), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [552] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(645), - [sym__type] = STATE(1917), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(730), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [553] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(645), - [sym__type] = STATE(1917), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(730), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [554] = { - [sym_attribute_item] = STATE(1153), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(733), - [sym__type] = STATE(1823), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1834), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(2335), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [555] = { + [sym_parameter] = STATE(2068), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1785), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(2337), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_PIPE] = ACTIONS(2339), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [556] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1835), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(804), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [557] = { + [sym_attribute_item] = STATE(559), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(730), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(1153), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(559), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, - [555] = { - [sym_attribute_item] = STATE(557), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(645), - [sym__type] = STATE(1917), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [558] = { + [sym_attribute_item] = STATE(1157), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(714), + [sym__type] = STATE(1809), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(557), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(1157), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), - [sym_block_comment] = ACTIONS(3), - }, - [556] = { - [sym_parameter] = STATE(1980), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1798), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(2335), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(2337), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2339), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, - [557] = { - [sym_attribute_item] = STATE(1153), - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym_visibility_modifier] = STATE(691), - [sym__type] = STATE(1883), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [559] = { + [sym_attribute_item] = STATE(1157), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym_visibility_modifier] = STATE(735), + [sym__type] = STATE(1898), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_enum_variant_list_repeat1] = STATE(1153), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_enum_variant_list_repeat1] = STATE(1157), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), [anon_sym_pub] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_POUND] = ACTIONS(2317), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), [sym_crate] = ACTIONS(2321), - [sym_metavariable] = ACTIONS(878), - [sym_block_comment] = ACTIONS(3), - }, - [558] = { - [sym_identifier] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_RPAREN] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_RBRACK] = ACTIONS(2343), - [anon_sym_COLON] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_u8] = ACTIONS(2341), - [anon_sym_i8] = ACTIONS(2341), - [anon_sym_u16] = ACTIONS(2341), - [anon_sym_i16] = ACTIONS(2341), - [anon_sym_u32] = ACTIONS(2341), - [anon_sym_i32] = ACTIONS(2341), - [anon_sym_u64] = ACTIONS(2341), - [anon_sym_i64] = ACTIONS(2341), - [anon_sym_u128] = ACTIONS(2341), - [anon_sym_i128] = ACTIONS(2341), - [anon_sym_isize] = ACTIONS(2341), - [anon_sym_usize] = ACTIONS(2341), - [anon_sym_f32] = ACTIONS(2341), - [anon_sym_f64] = ACTIONS(2341), - [anon_sym_bool] = ACTIONS(2341), - [anon_sym_str] = ACTIONS(2341), - [anon_sym_char] = ACTIONS(2341), - [aux_sym__non_special_token_token1] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_async] = ACTIONS(2341), - [anon_sym_await] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_default] = ACTIONS(2341), - [anon_sym_enum] = ACTIONS(2341), - [anon_sym_fn] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_impl] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_mod] = ACTIONS(2341), - [anon_sym_pub] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_static] = ACTIONS(2341), - [anon_sym_struct] = ACTIONS(2341), - [anon_sym_trait] = ACTIONS(2341), - [anon_sym_type] = ACTIONS(2341), - [anon_sym_union] = ACTIONS(2341), - [anon_sym_unsafe] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_where] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [sym_mutable_specifier] = ACTIONS(2341), - [sym_integer_literal] = ACTIONS(2343), - [aux_sym_string_literal_token1] = ACTIONS(2343), - [sym_char_literal] = ACTIONS(2343), - [anon_sym_true] = ACTIONS(2341), - [anon_sym_false] = ACTIONS(2341), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2341), - [sym_super] = ACTIONS(2341), - [sym_crate] = ACTIONS(2341), - [sym_metavariable] = ACTIONS(2343), - [sym_raw_string_literal] = ACTIONS(2343), - [sym_float_literal] = ACTIONS(2343), - [sym_block_comment] = ACTIONS(3), - }, - [559] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1791), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_RBRACK] = ACTIONS(780), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_COMMA] = ACTIONS(788), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [560] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1759), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_COMMA] = ACTIONS(2349), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1851), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_COMMA] = ACTIONS(2345), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -67200,156 +64741,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [561] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1789), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_COMMA] = ACTIONS(806), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_identifier] = ACTIONS(2347), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_RPAREN] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_RBRACK] = ACTIONS(2349), + [anon_sym_COLON] = ACTIONS(2351), + [anon_sym_DOLLAR] = ACTIONS(2347), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [aux_sym__non_special_token_token1] = ACTIONS(2347), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_as] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_await] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_where] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [sym_mutable_specifier] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2349), + [sym_raw_string_literal] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), [sym_block_comment] = ACTIONS(3), }, [562] = { - [sym_parameter] = STATE(2138), - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(2335), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2339), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [563] = { [sym_identifier] = ACTIONS(2353), [anon_sym_LPAREN] = ACTIONS(2355), [anon_sym_RPAREN] = ACTIONS(2355), @@ -67419,7 +64890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2355), [sym_block_comment] = ACTIONS(3), }, - [564] = { + [563] = { [sym_identifier] = ACTIONS(2357), [anon_sym_LPAREN] = ACTIONS(2359), [anon_sym_RPAREN] = ACTIONS(2359), @@ -67489,7 +64960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2359), [sym_block_comment] = ACTIONS(3), }, - [565] = { + [564] = { [sym_identifier] = ACTIONS(2361), [anon_sym_LPAREN] = ACTIONS(2363), [anon_sym_RPAREN] = ACTIONS(2363), @@ -67559,61 +65030,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2363), [sym_block_comment] = ACTIONS(3), }, - [566] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1804), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), + [565] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), [anon_sym_RPAREN] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, + [566] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_RBRACK] = ACTIONS(2367), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -67621,82 +65162,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [567] = { - [sym_identifier] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_RBRACK] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_u8] = ACTIONS(2367), - [anon_sym_i8] = ACTIONS(2367), - [anon_sym_u16] = ACTIONS(2367), - [anon_sym_i16] = ACTIONS(2367), - [anon_sym_u32] = ACTIONS(2367), - [anon_sym_i32] = ACTIONS(2367), - [anon_sym_u64] = ACTIONS(2367), - [anon_sym_i64] = ACTIONS(2367), - [anon_sym_u128] = ACTIONS(2367), - [anon_sym_i128] = ACTIONS(2367), - [anon_sym_isize] = ACTIONS(2367), - [anon_sym_usize] = ACTIONS(2367), - [anon_sym_f32] = ACTIONS(2367), - [anon_sym_f64] = ACTIONS(2367), - [anon_sym_bool] = ACTIONS(2367), - [anon_sym_str] = ACTIONS(2367), - [anon_sym_char] = ACTIONS(2367), - [aux_sym__non_special_token_token1] = ACTIONS(2367), - [anon_sym_SQUOTE] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_default] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_fn] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_impl] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_mod] = ACTIONS(2367), - [anon_sym_pub] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_trait] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(2367), - [anon_sym_unsafe] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_where] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [sym_mutable_specifier] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2369), - [aux_sym_string_literal_token1] = ACTIONS(2369), - [sym_char_literal] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_metavariable] = ACTIONS(2369), - [sym_raw_string_literal] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [568] = { @@ -67770,143 +65311,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [569] = { - [sym_function_modifiers] = STATE(2472), - [sym_const_parameter] = STATE(2006), - [sym_constrained_type_parameter] = STATE(1758), - [sym_optional_type_parameter] = STATE(2006), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2103), - [sym_bracketed_type] = STATE(2378), - [sym_qualified_type] = STATE(2448), - [sym_lifetime] = STATE(1654), - [sym_array_type] = STATE(1390), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), [sym_identifier] = ACTIONS(2375), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(2377), - [anon_sym_default] = ACTIONS(864), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_u8] = ACTIONS(2375), + [anon_sym_i8] = ACTIONS(2375), + [anon_sym_u16] = ACTIONS(2375), + [anon_sym_i16] = ACTIONS(2375), + [anon_sym_u32] = ACTIONS(2375), + [anon_sym_i32] = ACTIONS(2375), + [anon_sym_u64] = ACTIONS(2375), + [anon_sym_i64] = ACTIONS(2375), + [anon_sym_u128] = ACTIONS(2375), + [anon_sym_i128] = ACTIONS(2375), + [anon_sym_isize] = ACTIONS(2375), + [anon_sym_usize] = ACTIONS(2375), + [anon_sym_f32] = ACTIONS(2375), + [anon_sym_f64] = ACTIONS(2375), + [anon_sym_bool] = ACTIONS(2375), + [anon_sym_str] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [aux_sym__non_special_token_token1] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_as] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_impl] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_mod] = ACTIONS(2375), + [anon_sym_pub] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_trait] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_unsafe] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_where] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [sym_mutable_specifier] = ACTIONS(2375), + [sym_integer_literal] = ACTIONS(2377), + [aux_sym_string_literal_token1] = ACTIONS(2377), + [sym_char_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_crate] = ACTIONS(2375), + [sym_metavariable] = ACTIONS(2377), + [sym_raw_string_literal] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), [sym_block_comment] = ACTIONS(3), }, [570] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1804), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), + [sym_identifier] = ACTIONS(2379), + [anon_sym_LPAREN] = ACTIONS(2381), [anon_sym_RPAREN] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_RBRACK] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_u8] = ACTIONS(2379), + [anon_sym_i8] = ACTIONS(2379), + [anon_sym_u16] = ACTIONS(2379), + [anon_sym_i16] = ACTIONS(2379), + [anon_sym_u32] = ACTIONS(2379), + [anon_sym_i32] = ACTIONS(2379), + [anon_sym_u64] = ACTIONS(2379), + [anon_sym_i64] = ACTIONS(2379), + [anon_sym_u128] = ACTIONS(2379), + [anon_sym_i128] = ACTIONS(2379), + [anon_sym_isize] = ACTIONS(2379), + [anon_sym_usize] = ACTIONS(2379), + [anon_sym_f32] = ACTIONS(2379), + [anon_sym_f64] = ACTIONS(2379), + [anon_sym_bool] = ACTIONS(2379), + [anon_sym_str] = ACTIONS(2379), + [anon_sym_char] = ACTIONS(2379), + [aux_sym__non_special_token_token1] = ACTIONS(2379), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_as] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_impl] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_mod] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_trait] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_where] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [sym_mutable_specifier] = ACTIONS(2379), + [sym_integer_literal] = ACTIONS(2381), + [aux_sym_string_literal_token1] = ACTIONS(2381), + [sym_char_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_crate] = ACTIONS(2379), + [sym_metavariable] = ACTIONS(2381), + [sym_raw_string_literal] = ACTIONS(2381), + [sym_float_literal] = ACTIONS(2381), [sym_block_comment] = ACTIONS(3), }, [571] = { @@ -67968,158 +65509,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_integer_literal] = ACTIONS(2385), [aux_sym_string_literal_token1] = ACTIONS(2385), [sym_char_literal] = ACTIONS(2385), - [anon_sym_true] = ACTIONS(2383), - [anon_sym_false] = ACTIONS(2383), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2383), - [sym_super] = ACTIONS(2383), - [sym_crate] = ACTIONS(2383), - [sym_metavariable] = ACTIONS(2385), - [sym_raw_string_literal] = ACTIONS(2385), - [sym_float_literal] = ACTIONS(2385), - [sym_block_comment] = ACTIONS(3), - }, - [572] = { - [sym_identifier] = ACTIONS(2387), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2389), - [anon_sym_RBRACK] = ACTIONS(2389), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_u8] = ACTIONS(2387), - [anon_sym_i8] = ACTIONS(2387), - [anon_sym_u16] = ACTIONS(2387), - [anon_sym_i16] = ACTIONS(2387), - [anon_sym_u32] = ACTIONS(2387), - [anon_sym_i32] = ACTIONS(2387), - [anon_sym_u64] = ACTIONS(2387), - [anon_sym_i64] = ACTIONS(2387), - [anon_sym_u128] = ACTIONS(2387), - [anon_sym_i128] = ACTIONS(2387), - [anon_sym_isize] = ACTIONS(2387), - [anon_sym_usize] = ACTIONS(2387), - [anon_sym_f32] = ACTIONS(2387), - [anon_sym_f64] = ACTIONS(2387), - [anon_sym_bool] = ACTIONS(2387), - [anon_sym_str] = ACTIONS(2387), - [anon_sym_char] = ACTIONS(2387), - [aux_sym__non_special_token_token1] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_as] = ACTIONS(2387), - [anon_sym_async] = ACTIONS(2387), - [anon_sym_await] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_fn] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_impl] = ACTIONS(2387), - [anon_sym_let] = ACTIONS(2387), - [anon_sym_loop] = ACTIONS(2387), - [anon_sym_match] = ACTIONS(2387), - [anon_sym_mod] = ACTIONS(2387), - [anon_sym_pub] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_trait] = ACTIONS(2387), - [anon_sym_type] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_unsafe] = ACTIONS(2387), - [anon_sym_use] = ACTIONS(2387), - [anon_sym_where] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [sym_mutable_specifier] = ACTIONS(2387), - [sym_integer_literal] = ACTIONS(2389), - [aux_sym_string_literal_token1] = ACTIONS(2389), - [sym_char_literal] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2387), - [anon_sym_false] = ACTIONS(2387), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2387), - [sym_super] = ACTIONS(2387), - [sym_crate] = ACTIONS(2387), - [sym_metavariable] = ACTIONS(2389), - [sym_raw_string_literal] = ACTIONS(2389), - [sym_float_literal] = ACTIONS(2389), - [sym_block_comment] = ACTIONS(3), - }, - [573] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1804), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_RBRACK] = ACTIONS(2391), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_ref] = ACTIONS(686), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2385), + [sym_raw_string_literal] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), + [sym_block_comment] = ACTIONS(3), + }, + [572] = { + [sym_function_modifiers] = STATE(2322), + [sym_const_parameter] = STATE(1883), + [sym_constrained_type_parameter] = STATE(1847), + [sym_optional_type_parameter] = STATE(1883), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2043), + [sym_bracketed_type] = STATE(2388), + [sym_qualified_type] = STATE(2513), + [sym_lifetime] = STATE(1674), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2387), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(2389), + [anon_sym_default] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(672), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(858), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(2391), [sym_block_comment] = ACTIONS(3), }, - [574] = { + [573] = { [sym_identifier] = ACTIONS(2393), [anon_sym_LPAREN] = ACTIONS(2395), [anon_sym_RPAREN] = ACTIONS(2395), @@ -68189,7 +65660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2395), [sym_block_comment] = ACTIONS(3), }, - [575] = { + [574] = { [sym_identifier] = ACTIONS(2397), [anon_sym_LPAREN] = ACTIONS(2399), [anon_sym_RPAREN] = ACTIONS(2399), @@ -68259,341 +65730,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2399), [sym_block_comment] = ACTIONS(3), }, - [576] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1804), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [577] = { - [sym_identifier] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_RBRACK] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_u8] = ACTIONS(2403), - [anon_sym_i8] = ACTIONS(2403), - [anon_sym_u16] = ACTIONS(2403), - [anon_sym_i16] = ACTIONS(2403), - [anon_sym_u32] = ACTIONS(2403), - [anon_sym_i32] = ACTIONS(2403), - [anon_sym_u64] = ACTIONS(2403), - [anon_sym_i64] = ACTIONS(2403), - [anon_sym_u128] = ACTIONS(2403), - [anon_sym_i128] = ACTIONS(2403), - [anon_sym_isize] = ACTIONS(2403), - [anon_sym_usize] = ACTIONS(2403), - [anon_sym_f32] = ACTIONS(2403), - [anon_sym_f64] = ACTIONS(2403), - [anon_sym_bool] = ACTIONS(2403), - [anon_sym_str] = ACTIONS(2403), - [anon_sym_char] = ACTIONS(2403), - [aux_sym__non_special_token_token1] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_await] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_default] = ACTIONS(2403), - [anon_sym_enum] = ACTIONS(2403), - [anon_sym_fn] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_impl] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_mod] = ACTIONS(2403), - [anon_sym_pub] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(2403), - [anon_sym_trait] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_union] = ACTIONS(2403), - [anon_sym_unsafe] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_where] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [sym_mutable_specifier] = ACTIONS(2403), - [sym_integer_literal] = ACTIONS(2405), - [aux_sym_string_literal_token1] = ACTIONS(2405), - [sym_char_literal] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), + [575] = { + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2401), + [anon_sym_u8] = ACTIONS(2401), + [anon_sym_i8] = ACTIONS(2401), + [anon_sym_u16] = ACTIONS(2401), + [anon_sym_i16] = ACTIONS(2401), + [anon_sym_u32] = ACTIONS(2401), + [anon_sym_i32] = ACTIONS(2401), + [anon_sym_u64] = ACTIONS(2401), + [anon_sym_i64] = ACTIONS(2401), + [anon_sym_u128] = ACTIONS(2401), + [anon_sym_i128] = ACTIONS(2401), + [anon_sym_isize] = ACTIONS(2401), + [anon_sym_usize] = ACTIONS(2401), + [anon_sym_f32] = ACTIONS(2401), + [anon_sym_f64] = ACTIONS(2401), + [anon_sym_bool] = ACTIONS(2401), + [anon_sym_str] = ACTIONS(2401), + [anon_sym_char] = ACTIONS(2401), + [aux_sym__non_special_token_token1] = ACTIONS(2401), + [anon_sym_SQUOTE] = ACTIONS(2401), + [anon_sym_as] = ACTIONS(2401), + [anon_sym_async] = ACTIONS(2401), + [anon_sym_await] = ACTIONS(2401), + [anon_sym_break] = ACTIONS(2401), + [anon_sym_const] = ACTIONS(2401), + [anon_sym_continue] = ACTIONS(2401), + [anon_sym_default] = ACTIONS(2401), + [anon_sym_enum] = ACTIONS(2401), + [anon_sym_fn] = ACTIONS(2401), + [anon_sym_for] = ACTIONS(2401), + [anon_sym_if] = ACTIONS(2401), + [anon_sym_impl] = ACTIONS(2401), + [anon_sym_let] = ACTIONS(2401), + [anon_sym_loop] = ACTIONS(2401), + [anon_sym_match] = ACTIONS(2401), + [anon_sym_mod] = ACTIONS(2401), + [anon_sym_pub] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2401), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_struct] = ACTIONS(2401), + [anon_sym_trait] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_union] = ACTIONS(2401), + [anon_sym_unsafe] = ACTIONS(2401), + [anon_sym_use] = ACTIONS(2401), + [anon_sym_where] = ACTIONS(2401), + [anon_sym_while] = ACTIONS(2401), + [sym_mutable_specifier] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2403), + [aux_sym_string_literal_token1] = ACTIONS(2403), + [sym_char_literal] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(2401), + [anon_sym_false] = ACTIONS(2401), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_metavariable] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), + [sym_self] = ACTIONS(2401), + [sym_super] = ACTIONS(2401), + [sym_crate] = ACTIONS(2401), + [sym_metavariable] = ACTIONS(2403), + [sym_raw_string_literal] = ACTIONS(2403), + [sym_float_literal] = ACTIONS(2403), [sym_block_comment] = ACTIONS(3), }, - [578] = { - [sym_identifier] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_RBRACK] = ACTIONS(2409), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [aux_sym__non_special_token_token1] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_await] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_where] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [sym_mutable_specifier] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), + [576] = { + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_RPAREN] = ACTIONS(2407), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_u8] = ACTIONS(2405), + [anon_sym_i8] = ACTIONS(2405), + [anon_sym_u16] = ACTIONS(2405), + [anon_sym_i16] = ACTIONS(2405), + [anon_sym_u32] = ACTIONS(2405), + [anon_sym_i32] = ACTIONS(2405), + [anon_sym_u64] = ACTIONS(2405), + [anon_sym_i64] = ACTIONS(2405), + [anon_sym_u128] = ACTIONS(2405), + [anon_sym_i128] = ACTIONS(2405), + [anon_sym_isize] = ACTIONS(2405), + [anon_sym_usize] = ACTIONS(2405), + [anon_sym_f32] = ACTIONS(2405), + [anon_sym_f64] = ACTIONS(2405), + [anon_sym_bool] = ACTIONS(2405), + [anon_sym_str] = ACTIONS(2405), + [anon_sym_char] = ACTIONS(2405), + [aux_sym__non_special_token_token1] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_as] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_fn] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_impl] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_loop] = ACTIONS(2405), + [anon_sym_match] = ACTIONS(2405), + [anon_sym_mod] = ACTIONS(2405), + [anon_sym_pub] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_trait] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_unsafe] = ACTIONS(2405), + [anon_sym_use] = ACTIONS(2405), + [anon_sym_where] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [sym_mutable_specifier] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2407), + [aux_sym_string_literal_token1] = ACTIONS(2407), + [sym_char_literal] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(2405), + [anon_sym_false] = ACTIONS(2405), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_metavariable] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), + [sym_self] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_crate] = ACTIONS(2405), + [sym_metavariable] = ACTIONS(2407), + [sym_raw_string_literal] = ACTIONS(2407), + [sym_float_literal] = ACTIONS(2407), [sym_block_comment] = ACTIONS(3), }, - [579] = { - [sym_identifier] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_RPAREN] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_RBRACK] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u128] = ACTIONS(2411), - [anon_sym_i128] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_str] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [aux_sym__non_special_token_token1] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_await] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_fn] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_impl] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_mod] = ACTIONS(2411), - [anon_sym_pub] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_trait] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_unsafe] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_where] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [sym_mutable_specifier] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), + [577] = { + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2409), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [aux_sym__non_special_token_token1] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_where] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [sym_mutable_specifier] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_metavariable] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), [sym_block_comment] = ACTIONS(3), }, - [580] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1804), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_RPAREN] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [578] = { + [sym_parameter] = STATE(2262), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1969), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(2337), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -68601,69 +66002,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(2341), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [579] = { + [sym_identifier] = ACTIONS(2413), + [anon_sym_LPAREN] = ACTIONS(2415), + [anon_sym_RPAREN] = ACTIONS(2415), + [anon_sym_LBRACE] = ACTIONS(2415), + [anon_sym_RBRACE] = ACTIONS(2415), + [anon_sym_LBRACK] = ACTIONS(2415), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_DOLLAR] = ACTIONS(2413), + [anon_sym_u8] = ACTIONS(2413), + [anon_sym_i8] = ACTIONS(2413), + [anon_sym_u16] = ACTIONS(2413), + [anon_sym_i16] = ACTIONS(2413), + [anon_sym_u32] = ACTIONS(2413), + [anon_sym_i32] = ACTIONS(2413), + [anon_sym_u64] = ACTIONS(2413), + [anon_sym_i64] = ACTIONS(2413), + [anon_sym_u128] = ACTIONS(2413), + [anon_sym_i128] = ACTIONS(2413), + [anon_sym_isize] = ACTIONS(2413), + [anon_sym_usize] = ACTIONS(2413), + [anon_sym_f32] = ACTIONS(2413), + [anon_sym_f64] = ACTIONS(2413), + [anon_sym_bool] = ACTIONS(2413), + [anon_sym_str] = ACTIONS(2413), + [anon_sym_char] = ACTIONS(2413), + [aux_sym__non_special_token_token1] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_as] = ACTIONS(2413), + [anon_sym_async] = ACTIONS(2413), + [anon_sym_await] = ACTIONS(2413), + [anon_sym_break] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2413), + [anon_sym_continue] = ACTIONS(2413), + [anon_sym_default] = ACTIONS(2413), + [anon_sym_enum] = ACTIONS(2413), + [anon_sym_fn] = ACTIONS(2413), + [anon_sym_for] = ACTIONS(2413), + [anon_sym_if] = ACTIONS(2413), + [anon_sym_impl] = ACTIONS(2413), + [anon_sym_let] = ACTIONS(2413), + [anon_sym_loop] = ACTIONS(2413), + [anon_sym_match] = ACTIONS(2413), + [anon_sym_mod] = ACTIONS(2413), + [anon_sym_pub] = ACTIONS(2413), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_static] = ACTIONS(2413), + [anon_sym_struct] = ACTIONS(2413), + [anon_sym_trait] = ACTIONS(2413), + [anon_sym_type] = ACTIONS(2413), + [anon_sym_union] = ACTIONS(2413), + [anon_sym_unsafe] = ACTIONS(2413), + [anon_sym_use] = ACTIONS(2413), + [anon_sym_where] = ACTIONS(2413), + [anon_sym_while] = ACTIONS(2413), + [sym_mutable_specifier] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2415), + [aux_sym_string_literal_token1] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(2413), + [anon_sym_false] = ACTIONS(2413), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2413), + [sym_super] = ACTIONS(2413), + [sym_crate] = ACTIONS(2413), + [sym_metavariable] = ACTIONS(2415), + [sym_raw_string_literal] = ACTIONS(2415), + [sym_float_literal] = ACTIONS(2415), + [sym_block_comment] = ACTIONS(3), + }, + [580] = { + [sym_identifier] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_RPAREN] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_RBRACK] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_u8] = ACTIONS(2417), + [anon_sym_i8] = ACTIONS(2417), + [anon_sym_u16] = ACTIONS(2417), + [anon_sym_i16] = ACTIONS(2417), + [anon_sym_u32] = ACTIONS(2417), + [anon_sym_i32] = ACTIONS(2417), + [anon_sym_u64] = ACTIONS(2417), + [anon_sym_i64] = ACTIONS(2417), + [anon_sym_u128] = ACTIONS(2417), + [anon_sym_i128] = ACTIONS(2417), + [anon_sym_isize] = ACTIONS(2417), + [anon_sym_usize] = ACTIONS(2417), + [anon_sym_f32] = ACTIONS(2417), + [anon_sym_f64] = ACTIONS(2417), + [anon_sym_bool] = ACTIONS(2417), + [anon_sym_str] = ACTIONS(2417), + [anon_sym_char] = ACTIONS(2417), + [aux_sym__non_special_token_token1] = ACTIONS(2417), + [anon_sym_SQUOTE] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_async] = ACTIONS(2417), + [anon_sym_await] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_enum] = ACTIONS(2417), + [anon_sym_fn] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_impl] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_mod] = ACTIONS(2417), + [anon_sym_pub] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_struct] = ACTIONS(2417), + [anon_sym_trait] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_unsafe] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_where] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [sym_mutable_specifier] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2417), + [anon_sym_false] = ACTIONS(2417), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2417), + [sym_super] = ACTIONS(2417), + [sym_crate] = ACTIONS(2417), + [sym_metavariable] = ACTIONS(2419), + [sym_raw_string_literal] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), + [sym_block_comment] = ACTIONS(3), + }, [581] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1804), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_RBRACK] = ACTIONS(2417), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -68671,85 +66212,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [582] = { - [sym_identifier] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_RPAREN] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_u8] = ACTIONS(2419), - [anon_sym_i8] = ACTIONS(2419), - [anon_sym_u16] = ACTIONS(2419), - [anon_sym_i16] = ACTIONS(2419), - [anon_sym_u32] = ACTIONS(2419), - [anon_sym_i32] = ACTIONS(2419), - [anon_sym_u64] = ACTIONS(2419), - [anon_sym_i64] = ACTIONS(2419), - [anon_sym_u128] = ACTIONS(2419), - [anon_sym_i128] = ACTIONS(2419), - [anon_sym_isize] = ACTIONS(2419), - [anon_sym_usize] = ACTIONS(2419), - [anon_sym_f32] = ACTIONS(2419), - [anon_sym_f64] = ACTIONS(2419), - [anon_sym_bool] = ACTIONS(2419), - [anon_sym_str] = ACTIONS(2419), - [anon_sym_char] = ACTIONS(2419), - [aux_sym__non_special_token_token1] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_await] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_default] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_impl] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_mod] = ACTIONS(2419), - [anon_sym_pub] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_trait] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_where] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [sym_mutable_specifier] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), - [sym_block_comment] = ACTIONS(3), - }, - [583] = { [sym_identifier] = ACTIONS(2423), [anon_sym_LPAREN] = ACTIONS(2425), [anon_sym_RPAREN] = ACTIONS(2425), @@ -68819,200 +66290,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2425), [sym_block_comment] = ACTIONS(3), }, + [583] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_RPAREN] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), + [sym_block_comment] = ACTIONS(3), + }, [584] = { - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_RPAREN] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_RBRACK] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_u8] = ACTIONS(2427), - [anon_sym_i8] = ACTIONS(2427), - [anon_sym_u16] = ACTIONS(2427), - [anon_sym_i16] = ACTIONS(2427), - [anon_sym_u32] = ACTIONS(2427), - [anon_sym_i32] = ACTIONS(2427), - [anon_sym_u64] = ACTIONS(2427), - [anon_sym_i64] = ACTIONS(2427), - [anon_sym_u128] = ACTIONS(2427), - [anon_sym_i128] = ACTIONS(2427), - [anon_sym_isize] = ACTIONS(2427), - [anon_sym_usize] = ACTIONS(2427), - [anon_sym_f32] = ACTIONS(2427), - [anon_sym_f64] = ACTIONS(2427), - [anon_sym_bool] = ACTIONS(2427), - [anon_sym_str] = ACTIONS(2427), - [anon_sym_char] = ACTIONS(2427), - [aux_sym__non_special_token_token1] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_default] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_impl] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_mod] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_trait] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_where] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [sym_mutable_specifier] = ACTIONS(2427), - [sym_integer_literal] = ACTIONS(2429), - [aux_sym_string_literal_token1] = ACTIONS(2429), - [sym_char_literal] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [aux_sym__non_special_token_token1] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_where] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [sym_mutable_specifier] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2427), - [sym_super] = ACTIONS(2427), - [sym_crate] = ACTIONS(2427), - [sym_metavariable] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2429), - [sym_float_literal] = ACTIONS(2429), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2431), + [sym_raw_string_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), [sym_block_comment] = ACTIONS(3), }, [585] = { - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_u8] = ACTIONS(2431), - [anon_sym_i8] = ACTIONS(2431), - [anon_sym_u16] = ACTIONS(2431), - [anon_sym_i16] = ACTIONS(2431), - [anon_sym_u32] = ACTIONS(2431), - [anon_sym_i32] = ACTIONS(2431), - [anon_sym_u64] = ACTIONS(2431), - [anon_sym_i64] = ACTIONS(2431), - [anon_sym_u128] = ACTIONS(2431), - [anon_sym_i128] = ACTIONS(2431), - [anon_sym_isize] = ACTIONS(2431), - [anon_sym_usize] = ACTIONS(2431), - [anon_sym_f32] = ACTIONS(2431), - [anon_sym_f64] = ACTIONS(2431), - [anon_sym_bool] = ACTIONS(2431), - [anon_sym_str] = ACTIONS(2431), - [anon_sym_char] = ACTIONS(2431), - [aux_sym__non_special_token_token1] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_impl] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_mod] = ACTIONS(2431), - [anon_sym_pub] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_trait] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_where] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [sym_mutable_specifier] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_metavariable] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), - [sym_block_comment] = ACTIONS(3), - }, - [586] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1451), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69020,68 +66492,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [587] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2285), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [586] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2313), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69089,68 +66561,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [587] = { + [sym_identifier] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_RPAREN] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_RBRACK] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [aux_sym__non_special_token_token1] = ACTIONS(2429), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_await] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_where] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [sym_mutable_specifier] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_raw_string_literal] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + [sym_block_comment] = ACTIONS(3), + }, [588] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1890), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1418), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69158,137 +66699,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [589] = { - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_RPAREN] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_RBRACK] = ACTIONS(2429), - [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_u8] = ACTIONS(2427), - [anon_sym_i8] = ACTIONS(2427), - [anon_sym_u16] = ACTIONS(2427), - [anon_sym_i16] = ACTIONS(2427), - [anon_sym_u32] = ACTIONS(2427), - [anon_sym_i32] = ACTIONS(2427), - [anon_sym_u64] = ACTIONS(2427), - [anon_sym_i64] = ACTIONS(2427), - [anon_sym_u128] = ACTIONS(2427), - [anon_sym_i128] = ACTIONS(2427), - [anon_sym_isize] = ACTIONS(2427), - [anon_sym_usize] = ACTIONS(2427), - [anon_sym_f32] = ACTIONS(2427), - [anon_sym_f64] = ACTIONS(2427), - [anon_sym_bool] = ACTIONS(2427), - [anon_sym_str] = ACTIONS(2427), - [anon_sym_char] = ACTIONS(2427), - [aux_sym__non_special_token_token1] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_await] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_default] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_impl] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_mod] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_trait] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_where] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [sym_mutable_specifier] = ACTIONS(2427), - [sym_integer_literal] = ACTIONS(2429), - [aux_sym_string_literal_token1] = ACTIONS(2429), - [sym_char_literal] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2427), - [sym_super] = ACTIONS(2427), - [sym_crate] = ACTIONS(2427), - [sym_raw_string_literal] = ACTIONS(2429), - [sym_float_literal] = ACTIONS(2429), - [sym_block_comment] = ACTIONS(3), - }, - [590] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1434), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69296,68 +66768,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2435), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [590] = { + [sym_function_modifiers] = STATE(2322), + [sym_higher_ranked_trait_bound] = STATE(1576), + [sym_removed_trait_bound] = STATE(1576), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1577), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1581), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(858), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_block_comment] = ACTIONS(3), + }, [591] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2133), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2122), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69365,137 +66906,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [592] = { - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_RPAREN] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_u8] = ACTIONS(2431), - [anon_sym_i8] = ACTIONS(2431), - [anon_sym_u16] = ACTIONS(2431), - [anon_sym_i16] = ACTIONS(2431), - [anon_sym_u32] = ACTIONS(2431), - [anon_sym_i32] = ACTIONS(2431), - [anon_sym_u64] = ACTIONS(2431), - [anon_sym_i64] = ACTIONS(2431), - [anon_sym_u128] = ACTIONS(2431), - [anon_sym_i128] = ACTIONS(2431), - [anon_sym_isize] = ACTIONS(2431), - [anon_sym_usize] = ACTIONS(2431), - [anon_sym_f32] = ACTIONS(2431), - [anon_sym_f64] = ACTIONS(2431), - [anon_sym_bool] = ACTIONS(2431), - [anon_sym_str] = ACTIONS(2431), - [anon_sym_char] = ACTIONS(2431), - [aux_sym__non_special_token_token1] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_await] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_impl] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_mod] = ACTIONS(2431), - [anon_sym_pub] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_trait] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_where] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [sym_mutable_specifier] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_raw_string_literal] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2209), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [593] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1939), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1986), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69503,344 +67044,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [594] = { - [sym_function_modifiers] = STATE(2472), - [sym_higher_ranked_trait_bound] = STATE(1568), - [sym_removed_trait_bound] = STATE(1568), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1570), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1575), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_higher_ranked_trait_bound] = STATE(1576), + [sym_removed_trait_bound] = STATE(1576), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1577), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1615), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2439), + [anon_sym_for] = ACTIONS(2437), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [595] = { - [sym_function_modifiers] = STATE(2472), - [sym_higher_ranked_trait_bound] = STATE(1568), - [sym_removed_trait_bound] = STATE(1568), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1591), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1593), - [sym_array_type] = STATE(1390), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_block_comment] = ACTIONS(3), - }, - [596] = { - [sym_function_modifiers] = STATE(2472), - [sym_higher_ranked_trait_bound] = STATE(1568), - [sym_removed_trait_bound] = STATE(1568), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1591), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1575), - [sym_array_type] = STATE(1390), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_block_comment] = ACTIONS(3), - }, - [597] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2246), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_ref] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), - [anon_sym_DASH] = ACTIONS(702), - [sym_integer_literal] = ACTIONS(704), - [aux_sym_string_literal_token1] = ACTIONS(706), - [sym_char_literal] = ACTIONS(704), - [anon_sym_true] = ACTIONS(708), - [anon_sym_false] = ACTIONS(708), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), - [sym_raw_string_literal] = ACTIONS(704), - [sym_float_literal] = ACTIONS(704), - [sym_block_comment] = ACTIONS(3), - }, - [598] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1736), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1719), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(2441), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69848,68 +67182,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [599] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1418), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [596] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1764), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(2439), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69917,68 +67251,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [600] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1746), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [597] = { + [sym_function_modifiers] = STATE(2322), + [sym_higher_ranked_trait_bound] = STATE(1576), + [sym_removed_trait_bound] = STATE(1576), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1597), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1615), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(858), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_block_comment] = ACTIONS(3), + }, + [598] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1968), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -69986,137 +67389,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [601] = { - [sym_identifier] = ACTIONS(2367), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_RPAREN] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_RBRACK] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2367), - [anon_sym_i8] = ACTIONS(2367), - [anon_sym_u16] = ACTIONS(2367), - [anon_sym_i16] = ACTIONS(2367), - [anon_sym_u32] = ACTIONS(2367), - [anon_sym_i32] = ACTIONS(2367), - [anon_sym_u64] = ACTIONS(2367), - [anon_sym_i64] = ACTIONS(2367), - [anon_sym_u128] = ACTIONS(2367), - [anon_sym_i128] = ACTIONS(2367), - [anon_sym_isize] = ACTIONS(2367), - [anon_sym_usize] = ACTIONS(2367), - [anon_sym_f32] = ACTIONS(2367), - [anon_sym_f64] = ACTIONS(2367), - [anon_sym_bool] = ACTIONS(2367), - [anon_sym_str] = ACTIONS(2367), - [anon_sym_char] = ACTIONS(2367), - [aux_sym__non_special_token_token1] = ACTIONS(2367), - [anon_sym_SQUOTE] = ACTIONS(2367), - [anon_sym_as] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_await] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_default] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_fn] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_impl] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_mod] = ACTIONS(2367), - [anon_sym_pub] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_trait] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(2367), - [anon_sym_unsafe] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_where] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [sym_mutable_specifier] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2369), - [aux_sym_string_literal_token1] = ACTIONS(2369), - [sym_char_literal] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_raw_string_literal] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), - [sym_block_comment] = ACTIONS(3), - }, - [602] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1458), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [599] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1460), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70124,68 +67458,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [603] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1842), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [600] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2274), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70193,68 +67527,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2443), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [604] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1452), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [601] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1873), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70262,137 +67596,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [605] = { - [sym_identifier] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(438), - [anon_sym_RPAREN] = ACTIONS(438), - [anon_sym_LBRACE] = ACTIONS(438), - [anon_sym_RBRACE] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(438), - [anon_sym_RBRACK] = ACTIONS(438), - [anon_sym_DOLLAR] = ACTIONS(438), - [anon_sym_u8] = ACTIONS(440), - [anon_sym_i8] = ACTIONS(440), - [anon_sym_u16] = ACTIONS(440), - [anon_sym_i16] = ACTIONS(440), - [anon_sym_u32] = ACTIONS(440), - [anon_sym_i32] = ACTIONS(440), - [anon_sym_u64] = ACTIONS(440), - [anon_sym_i64] = ACTIONS(440), - [anon_sym_u128] = ACTIONS(440), - [anon_sym_i128] = ACTIONS(440), - [anon_sym_isize] = ACTIONS(440), - [anon_sym_usize] = ACTIONS(440), - [anon_sym_f32] = ACTIONS(440), - [anon_sym_f64] = ACTIONS(440), - [anon_sym_bool] = ACTIONS(440), - [anon_sym_str] = ACTIONS(440), - [anon_sym_char] = ACTIONS(440), - [aux_sym__non_special_token_token1] = ACTIONS(440), - [anon_sym_SQUOTE] = ACTIONS(440), - [anon_sym_as] = ACTIONS(440), - [anon_sym_async] = ACTIONS(440), - [anon_sym_await] = ACTIONS(440), - [anon_sym_break] = ACTIONS(440), - [anon_sym_const] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_default] = ACTIONS(440), - [anon_sym_enum] = ACTIONS(440), - [anon_sym_fn] = ACTIONS(440), - [anon_sym_for] = ACTIONS(440), - [anon_sym_if] = ACTIONS(440), - [anon_sym_impl] = ACTIONS(440), - [anon_sym_let] = ACTIONS(440), - [anon_sym_loop] = ACTIONS(440), - [anon_sym_match] = ACTIONS(440), - [anon_sym_mod] = ACTIONS(440), - [anon_sym_pub] = ACTIONS(440), - [anon_sym_return] = ACTIONS(440), - [anon_sym_static] = ACTIONS(440), - [anon_sym_struct] = ACTIONS(440), - [anon_sym_trait] = ACTIONS(440), - [anon_sym_type] = ACTIONS(440), - [anon_sym_union] = ACTIONS(440), - [anon_sym_unsafe] = ACTIONS(440), - [anon_sym_use] = ACTIONS(440), - [anon_sym_where] = ACTIONS(440), - [anon_sym_while] = ACTIONS(440), - [sym_mutable_specifier] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(438), - [aux_sym_string_literal_token1] = ACTIONS(438), - [sym_char_literal] = ACTIONS(438), - [anon_sym_true] = ACTIONS(440), - [anon_sym_false] = ACTIONS(440), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(440), - [sym_super] = ACTIONS(440), - [sym_crate] = ACTIONS(440), - [sym_raw_string_literal] = ACTIONS(438), - [sym_float_literal] = ACTIONS(438), - [sym_block_comment] = ACTIONS(3), - }, - [606] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1804), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [602] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2133), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70400,68 +67665,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [607] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1426), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [603] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70469,68 +67734,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [608] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1453), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [604] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2156), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(2445), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70538,68 +67803,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [609] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1870), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [605] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1425), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70607,137 +67872,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [610] = { - [sym_function_modifiers] = STATE(2472), - [sym_higher_ranked_trait_bound] = STATE(1537), - [sym_removed_trait_bound] = STATE(1537), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1540), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(1541), - [sym_array_type] = STATE(1390), - [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_QMARK] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2313), - [anon_sym_async] = ACTIONS(664), - [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), - [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), - [anon_sym_dyn] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), - [sym_block_comment] = ACTIONS(3), - }, - [611] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2187), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [606] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1723), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(2441), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70745,68 +67941,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [612] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2277), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [607] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1813), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70814,68 +68010,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(2443), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [613] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1735), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [608] = { + [sym_identifier] = ACTIONS(422), + [anon_sym_LPAREN] = ACTIONS(420), + [anon_sym_RPAREN] = ACTIONS(420), + [anon_sym_LBRACE] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(420), + [anon_sym_LBRACK] = ACTIONS(420), + [anon_sym_RBRACK] = ACTIONS(420), + [anon_sym_DOLLAR] = ACTIONS(420), + [anon_sym_u8] = ACTIONS(422), + [anon_sym_i8] = ACTIONS(422), + [anon_sym_u16] = ACTIONS(422), + [anon_sym_i16] = ACTIONS(422), + [anon_sym_u32] = ACTIONS(422), + [anon_sym_i32] = ACTIONS(422), + [anon_sym_u64] = ACTIONS(422), + [anon_sym_i64] = ACTIONS(422), + [anon_sym_u128] = ACTIONS(422), + [anon_sym_i128] = ACTIONS(422), + [anon_sym_isize] = ACTIONS(422), + [anon_sym_usize] = ACTIONS(422), + [anon_sym_f32] = ACTIONS(422), + [anon_sym_f64] = ACTIONS(422), + [anon_sym_bool] = ACTIONS(422), + [anon_sym_str] = ACTIONS(422), + [anon_sym_char] = ACTIONS(422), + [aux_sym__non_special_token_token1] = ACTIONS(422), + [anon_sym_SQUOTE] = ACTIONS(422), + [anon_sym_as] = ACTIONS(422), + [anon_sym_async] = ACTIONS(422), + [anon_sym_await] = ACTIONS(422), + [anon_sym_break] = ACTIONS(422), + [anon_sym_const] = ACTIONS(422), + [anon_sym_continue] = ACTIONS(422), + [anon_sym_default] = ACTIONS(422), + [anon_sym_enum] = ACTIONS(422), + [anon_sym_fn] = ACTIONS(422), + [anon_sym_for] = ACTIONS(422), + [anon_sym_if] = ACTIONS(422), + [anon_sym_impl] = ACTIONS(422), + [anon_sym_let] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(422), + [anon_sym_match] = ACTIONS(422), + [anon_sym_mod] = ACTIONS(422), + [anon_sym_pub] = ACTIONS(422), + [anon_sym_return] = ACTIONS(422), + [anon_sym_static] = ACTIONS(422), + [anon_sym_struct] = ACTIONS(422), + [anon_sym_trait] = ACTIONS(422), + [anon_sym_type] = ACTIONS(422), + [anon_sym_union] = ACTIONS(422), + [anon_sym_unsafe] = ACTIONS(422), + [anon_sym_use] = ACTIONS(422), + [anon_sym_where] = ACTIONS(422), + [anon_sym_while] = ACTIONS(422), + [sym_mutable_specifier] = ACTIONS(422), + [sym_integer_literal] = ACTIONS(420), + [aux_sym_string_literal_token1] = ACTIONS(420), + [sym_char_literal] = ACTIONS(420), + [anon_sym_true] = ACTIONS(422), + [anon_sym_false] = ACTIONS(422), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(422), + [sym_super] = ACTIONS(422), + [sym_crate] = ACTIONS(422), + [sym_raw_string_literal] = ACTIONS(420), + [sym_float_literal] = ACTIONS(420), + [sym_block_comment] = ACTIONS(3), + }, + [609] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1739), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -70883,206 +68148,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [614] = { - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_RPAREN] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_RBRACK] = ACTIONS(2399), - [anon_sym_DOLLAR] = ACTIONS(2399), - [anon_sym_u8] = ACTIONS(2397), - [anon_sym_i8] = ACTIONS(2397), - [anon_sym_u16] = ACTIONS(2397), - [anon_sym_i16] = ACTIONS(2397), - [anon_sym_u32] = ACTIONS(2397), - [anon_sym_i32] = ACTIONS(2397), - [anon_sym_u64] = ACTIONS(2397), - [anon_sym_i64] = ACTIONS(2397), - [anon_sym_u128] = ACTIONS(2397), - [anon_sym_i128] = ACTIONS(2397), - [anon_sym_isize] = ACTIONS(2397), - [anon_sym_usize] = ACTIONS(2397), - [anon_sym_f32] = ACTIONS(2397), - [anon_sym_f64] = ACTIONS(2397), - [anon_sym_bool] = ACTIONS(2397), - [anon_sym_str] = ACTIONS(2397), - [anon_sym_char] = ACTIONS(2397), - [aux_sym__non_special_token_token1] = ACTIONS(2397), - [anon_sym_SQUOTE] = ACTIONS(2397), - [anon_sym_as] = ACTIONS(2397), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_await] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_fn] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_impl] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_loop] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_mod] = ACTIONS(2397), - [anon_sym_pub] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_trait] = ACTIONS(2397), - [anon_sym_type] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_unsafe] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_where] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [sym_mutable_specifier] = ACTIONS(2397), - [sym_integer_literal] = ACTIONS(2399), - [aux_sym_string_literal_token1] = ACTIONS(2399), - [sym_char_literal] = ACTIONS(2399), - [anon_sym_true] = ACTIONS(2397), - [anon_sym_false] = ACTIONS(2397), - [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(2397), - [sym_super] = ACTIONS(2397), - [sym_crate] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2399), - [sym_float_literal] = ACTIONS(2399), + [610] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2135), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_ref] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), + [anon_sym_DASH] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), + [sym_raw_string_literal] = ACTIONS(704), + [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, - [615] = { - [sym_identifier] = ACTIONS(616), - [anon_sym_LPAREN] = ACTIONS(614), - [anon_sym_RPAREN] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(614), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_LBRACK] = ACTIONS(614), - [anon_sym_RBRACK] = ACTIONS(614), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_u8] = ACTIONS(616), - [anon_sym_i8] = ACTIONS(616), - [anon_sym_u16] = ACTIONS(616), - [anon_sym_i16] = ACTIONS(616), - [anon_sym_u32] = ACTIONS(616), - [anon_sym_i32] = ACTIONS(616), - [anon_sym_u64] = ACTIONS(616), - [anon_sym_i64] = ACTIONS(616), - [anon_sym_u128] = ACTIONS(616), - [anon_sym_i128] = ACTIONS(616), - [anon_sym_isize] = ACTIONS(616), - [anon_sym_usize] = ACTIONS(616), - [anon_sym_f32] = ACTIONS(616), - [anon_sym_f64] = ACTIONS(616), - [anon_sym_bool] = ACTIONS(616), - [anon_sym_str] = ACTIONS(616), - [anon_sym_char] = ACTIONS(616), - [aux_sym__non_special_token_token1] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(616), - [anon_sym_as] = ACTIONS(616), - [anon_sym_async] = ACTIONS(616), - [anon_sym_await] = ACTIONS(616), - [anon_sym_break] = ACTIONS(616), - [anon_sym_const] = ACTIONS(616), - [anon_sym_continue] = ACTIONS(616), - [anon_sym_default] = ACTIONS(616), - [anon_sym_enum] = ACTIONS(616), - [anon_sym_fn] = ACTIONS(616), - [anon_sym_for] = ACTIONS(616), - [anon_sym_if] = ACTIONS(616), - [anon_sym_impl] = ACTIONS(616), - [anon_sym_let] = ACTIONS(616), - [anon_sym_loop] = ACTIONS(616), - [anon_sym_match] = ACTIONS(616), - [anon_sym_mod] = ACTIONS(616), - [anon_sym_pub] = ACTIONS(616), - [anon_sym_return] = ACTIONS(616), - [anon_sym_static] = ACTIONS(616), - [anon_sym_struct] = ACTIONS(616), - [anon_sym_trait] = ACTIONS(616), - [anon_sym_type] = ACTIONS(616), - [anon_sym_union] = ACTIONS(616), - [anon_sym_unsafe] = ACTIONS(616), - [anon_sym_use] = ACTIONS(616), - [anon_sym_where] = ACTIONS(616), - [anon_sym_while] = ACTIONS(616), - [sym_mutable_specifier] = ACTIONS(616), - [sym_integer_literal] = ACTIONS(614), - [aux_sym_string_literal_token1] = ACTIONS(614), - [sym_char_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(616), - [anon_sym_false] = ACTIONS(616), + [611] = { + [sym_function_modifiers] = STATE(2322), + [sym_higher_ranked_trait_bound] = STATE(1540), + [sym_removed_trait_bound] = STATE(1540), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1541), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(1543), + [sym_array_type] = STATE(1393), + [sym_for_lifetimes] = STATE(1196), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(658), + [anon_sym_QMARK] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_async] = ACTIONS(664), + [anon_sym_const] = ACTIONS(664), + [anon_sym_default] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_union] = ACTIONS(858), + [anon_sym_unsafe] = ACTIONS(664), + [anon_sym_BANG] = ACTIONS(680), + [anon_sym_extern] = ACTIONS(684), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_dyn] = ACTIONS(696), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), + [sym_block_comment] = ACTIONS(3), + }, + [612] = { + [sym_identifier] = ACTIONS(2409), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [aux_sym__non_special_token_token1] = ACTIONS(2409), + [anon_sym_SQUOTE] = ACTIONS(2409), + [anon_sym_as] = ACTIONS(2409), + [anon_sym_async] = ACTIONS(2409), + [anon_sym_await] = ACTIONS(2409), + [anon_sym_break] = ACTIONS(2409), + [anon_sym_const] = ACTIONS(2409), + [anon_sym_continue] = ACTIONS(2409), + [anon_sym_default] = ACTIONS(2409), + [anon_sym_enum] = ACTIONS(2409), + [anon_sym_fn] = ACTIONS(2409), + [anon_sym_for] = ACTIONS(2409), + [anon_sym_if] = ACTIONS(2409), + [anon_sym_impl] = ACTIONS(2409), + [anon_sym_let] = ACTIONS(2409), + [anon_sym_loop] = ACTIONS(2409), + [anon_sym_match] = ACTIONS(2409), + [anon_sym_mod] = ACTIONS(2409), + [anon_sym_pub] = ACTIONS(2409), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_static] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(2409), + [anon_sym_trait] = ACTIONS(2409), + [anon_sym_type] = ACTIONS(2409), + [anon_sym_union] = ACTIONS(2409), + [anon_sym_unsafe] = ACTIONS(2409), + [anon_sym_use] = ACTIONS(2409), + [anon_sym_where] = ACTIONS(2409), + [anon_sym_while] = ACTIONS(2409), + [sym_mutable_specifier] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2411), + [aux_sym_string_literal_token1] = ACTIONS(2411), + [sym_char_literal] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(2409), + [anon_sym_false] = ACTIONS(2409), [sym_line_comment] = ACTIONS(912), - [sym_self] = ACTIONS(616), - [sym_super] = ACTIONS(616), - [sym_crate] = ACTIONS(616), - [sym_raw_string_literal] = ACTIONS(614), - [sym_float_literal] = ACTIONS(614), + [sym_self] = ACTIONS(2409), + [sym_super] = ACTIONS(2409), + [sym_crate] = ACTIONS(2409), + [sym_raw_string_literal] = ACTIONS(2411), + [sym_float_literal] = ACTIONS(2411), [sym_block_comment] = ACTIONS(3), }, - [616] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(1751), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [613] = { + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1813), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(2447), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -71090,68 +68424,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(2445), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, + [614] = { + [sym_identifier] = ACTIONS(464), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_RPAREN] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_RBRACK] = ACTIONS(462), + [anon_sym_DOLLAR] = ACTIONS(462), + [anon_sym_u8] = ACTIONS(464), + [anon_sym_i8] = ACTIONS(464), + [anon_sym_u16] = ACTIONS(464), + [anon_sym_i16] = ACTIONS(464), + [anon_sym_u32] = ACTIONS(464), + [anon_sym_i32] = ACTIONS(464), + [anon_sym_u64] = ACTIONS(464), + [anon_sym_i64] = ACTIONS(464), + [anon_sym_u128] = ACTIONS(464), + [anon_sym_i128] = ACTIONS(464), + [anon_sym_isize] = ACTIONS(464), + [anon_sym_usize] = ACTIONS(464), + [anon_sym_f32] = ACTIONS(464), + [anon_sym_f64] = ACTIONS(464), + [anon_sym_bool] = ACTIONS(464), + [anon_sym_str] = ACTIONS(464), + [anon_sym_char] = ACTIONS(464), + [aux_sym__non_special_token_token1] = ACTIONS(464), + [anon_sym_SQUOTE] = ACTIONS(464), + [anon_sym_as] = ACTIONS(464), + [anon_sym_async] = ACTIONS(464), + [anon_sym_await] = ACTIONS(464), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(464), + [anon_sym_default] = ACTIONS(464), + [anon_sym_enum] = ACTIONS(464), + [anon_sym_fn] = ACTIONS(464), + [anon_sym_for] = ACTIONS(464), + [anon_sym_if] = ACTIONS(464), + [anon_sym_impl] = ACTIONS(464), + [anon_sym_let] = ACTIONS(464), + [anon_sym_loop] = ACTIONS(464), + [anon_sym_match] = ACTIONS(464), + [anon_sym_mod] = ACTIONS(464), + [anon_sym_pub] = ACTIONS(464), + [anon_sym_return] = ACTIONS(464), + [anon_sym_static] = ACTIONS(464), + [anon_sym_struct] = ACTIONS(464), + [anon_sym_trait] = ACTIONS(464), + [anon_sym_type] = ACTIONS(464), + [anon_sym_union] = ACTIONS(464), + [anon_sym_unsafe] = ACTIONS(464), + [anon_sym_use] = ACTIONS(464), + [anon_sym_where] = ACTIONS(464), + [anon_sym_while] = ACTIONS(464), + [sym_mutable_specifier] = ACTIONS(464), + [sym_integer_literal] = ACTIONS(462), + [aux_sym_string_literal_token1] = ACTIONS(462), + [sym_char_literal] = ACTIONS(462), + [anon_sym_true] = ACTIONS(464), + [anon_sym_false] = ACTIONS(464), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(464), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_raw_string_literal] = ACTIONS(462), + [sym_float_literal] = ACTIONS(462), + [sym_block_comment] = ACTIONS(3), + }, + [615] = { + [sym_identifier] = ACTIONS(2371), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_RPAREN] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_RBRACK] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [aux_sym__non_special_token_token1] = ACTIONS(2371), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_as] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_await] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_impl] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_mod] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_trait] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_where] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [sym_mutable_specifier] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_raw_string_literal] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), + [sym_block_comment] = ACTIONS(3), + }, + [616] = { + [sym_identifier] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_RPAREN] = ACTIONS(2395), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_LBRACK] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(2395), + [anon_sym_DOLLAR] = ACTIONS(2395), + [anon_sym_u8] = ACTIONS(2393), + [anon_sym_i8] = ACTIONS(2393), + [anon_sym_u16] = ACTIONS(2393), + [anon_sym_i16] = ACTIONS(2393), + [anon_sym_u32] = ACTIONS(2393), + [anon_sym_i32] = ACTIONS(2393), + [anon_sym_u64] = ACTIONS(2393), + [anon_sym_i64] = ACTIONS(2393), + [anon_sym_u128] = ACTIONS(2393), + [anon_sym_i128] = ACTIONS(2393), + [anon_sym_isize] = ACTIONS(2393), + [anon_sym_usize] = ACTIONS(2393), + [anon_sym_f32] = ACTIONS(2393), + [anon_sym_f64] = ACTIONS(2393), + [anon_sym_bool] = ACTIONS(2393), + [anon_sym_str] = ACTIONS(2393), + [anon_sym_char] = ACTIONS(2393), + [aux_sym__non_special_token_token1] = ACTIONS(2393), + [anon_sym_SQUOTE] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_await] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_fn] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_impl] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_mod] = ACTIONS(2393), + [anon_sym_pub] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_trait] = ACTIONS(2393), + [anon_sym_type] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_where] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [sym_mutable_specifier] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2395), + [aux_sym_string_literal_token1] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(2393), + [anon_sym_false] = ACTIONS(2393), + [sym_line_comment] = ACTIONS(912), + [sym_self] = ACTIONS(2393), + [sym_super] = ACTIONS(2393), + [sym_crate] = ACTIONS(2393), + [sym_raw_string_literal] = ACTIONS(2395), + [sym_float_literal] = ACTIONS(2395), + [sym_block_comment] = ACTIONS(3), + }, [617] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2197), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(2128), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -71159,68 +68700,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [618] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2273), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1433), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(2447), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -71228,68 +68769,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [619] = { - [sym_bracketed_type] = STATE(2489), - [sym_generic_type] = STATE(2488), - [sym_generic_type_with_turbofish] = STATE(2487), - [sym_macro_invocation] = STATE(1422), - [sym_scoped_identifier] = STATE(1337), - [sym_scoped_type_identifier] = STATE(2013), - [sym_const_block] = STATE(1422), - [sym__pattern] = STATE(2198), - [sym_tuple_pattern] = STATE(1422), - [sym_slice_pattern] = STATE(1422), - [sym_tuple_struct_pattern] = STATE(1422), - [sym_struct_pattern] = STATE(1422), - [sym_remaining_field_pattern] = STATE(1422), - [sym_mut_pattern] = STATE(1422), - [sym_range_pattern] = STATE(1422), - [sym_ref_pattern] = STATE(1422), - [sym_captured_pattern] = STATE(1422), - [sym_reference_pattern] = STATE(1422), - [sym_or_pattern] = STATE(1422), - [sym__literal_pattern] = STATE(1396), - [sym_negative_literal] = STATE(1397), - [sym_string_literal] = STATE(1397), - [sym_boolean_literal] = STATE(1397), - [sym_identifier] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1526), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_u8] = ACTIONS(1532), - [anon_sym_i8] = ACTIONS(1532), - [anon_sym_u16] = ACTIONS(1532), - [anon_sym_i16] = ACTIONS(1532), - [anon_sym_u32] = ACTIONS(1532), - [anon_sym_i32] = ACTIONS(1532), - [anon_sym_u64] = ACTIONS(1532), - [anon_sym_i64] = ACTIONS(1532), - [anon_sym_u128] = ACTIONS(1532), - [anon_sym_i128] = ACTIONS(1532), - [anon_sym_isize] = ACTIONS(1532), - [anon_sym_usize] = ACTIONS(1532), - [anon_sym_f32] = ACTIONS(1532), - [anon_sym_f64] = ACTIONS(1532), - [anon_sym_bool] = ACTIONS(1532), - [anon_sym_str] = ACTIONS(1532), - [anon_sym_char] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), + [sym_bracketed_type] = STATE(2414), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(2400), + [sym_macro_invocation] = STATE(1428), + [sym_scoped_identifier] = STATE(1333), + [sym_scoped_type_identifier] = STATE(1888), + [sym_const_block] = STATE(1428), + [sym__pattern] = STATE(1432), + [sym_tuple_pattern] = STATE(1428), + [sym_slice_pattern] = STATE(1428), + [sym_tuple_struct_pattern] = STATE(1428), + [sym_struct_pattern] = STATE(1428), + [sym_remaining_field_pattern] = STATE(1428), + [sym_mut_pattern] = STATE(1428), + [sym_range_pattern] = STATE(1428), + [sym_ref_pattern] = STATE(1428), + [sym_captured_pattern] = STATE(1428), + [sym_reference_pattern] = STATE(1428), + [sym_or_pattern] = STATE(1428), + [sym__literal_pattern] = STATE(1376), + [sym_negative_literal] = STATE(1391), + [sym_string_literal] = STATE(1391), + [sym_boolean_literal] = STATE(1391), + [sym_identifier] = ACTIONS(1216), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1226), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), [anon_sym_ref] = ACTIONS(686), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym__] = ACTIONS(792), - [anon_sym_AMP] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(796), - [anon_sym_DOT_DOT] = ACTIONS(798), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym__] = ACTIONS(780), + [anon_sym_AMP] = ACTIONS(1232), + [sym_mutable_specifier] = ACTIONS(784), + [anon_sym_DOT_DOT] = ACTIONS(786), [anon_sym_DASH] = ACTIONS(702), [sym_integer_literal] = ACTIONS(704), [aux_sym_string_literal_token1] = ACTIONS(706), @@ -71297,1290 +68838,1290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(708), [anon_sym_false] = ACTIONS(708), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1542), - [sym_super] = ACTIONS(1542), - [sym_crate] = ACTIONS(1542), - [sym_metavariable] = ACTIONS(1544), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1236), [sym_raw_string_literal] = ACTIONS(704), [sym_float_literal] = ACTIONS(704), [sym_block_comment] = ACTIONS(3), }, [620] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(2451), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2453), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [621] = { - [sym_attribute_item] = STATE(621), - [aux_sym_enum_variant_list_repeat1] = STATE(621), - [sym_identifier] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_RBRACK] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_u8] = ACTIONS(2455), - [anon_sym_i8] = ACTIONS(2455), - [anon_sym_u16] = ACTIONS(2455), - [anon_sym_i16] = ACTIONS(2455), - [anon_sym_u32] = ACTIONS(2455), - [anon_sym_i32] = ACTIONS(2455), - [anon_sym_u64] = ACTIONS(2455), - [anon_sym_i64] = ACTIONS(2455), - [anon_sym_u128] = ACTIONS(2455), - [anon_sym_i128] = ACTIONS(2455), - [anon_sym_isize] = ACTIONS(2455), - [anon_sym_usize] = ACTIONS(2455), - [anon_sym_f32] = ACTIONS(2455), - [anon_sym_f64] = ACTIONS(2455), - [anon_sym_bool] = ACTIONS(2455), - [anon_sym_str] = ACTIONS(2455), - [anon_sym_char] = ACTIONS(2455), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_POUND] = ACTIONS(2459), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_COMMA] = ACTIONS(2457), - [anon_sym_ref] = ACTIONS(2455), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym__] = ACTIONS(2455), - [anon_sym_AMP] = ACTIONS(2457), - [sym_mutable_specifier] = ACTIONS(2455), - [anon_sym_DOT_DOT] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2457), - [anon_sym_yield] = ACTIONS(2455), - [anon_sym_move] = ACTIONS(2455), - [sym_integer_literal] = ACTIONS(2457), - [aux_sym_string_literal_token1] = ACTIONS(2457), - [sym_char_literal] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2455), - [sym_super] = ACTIONS(2455), - [sym_crate] = ACTIONS(2455), - [sym_metavariable] = ACTIONS(2457), - [sym_raw_string_literal] = ACTIONS(2457), - [sym_float_literal] = ACTIONS(2457), - [sym_block_comment] = ACTIONS(3), - }, - [622] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2289), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2462), + [sym_mutable_specifier] = ACTIONS(2453), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(2455), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, - [623] = { - [sym_function_modifiers] = STATE(2386), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(941), - [sym_bracketed_type] = STATE(2491), - [sym_lifetime] = STATE(2513), - [sym_array_type] = STATE(1040), - [sym_for_lifetimes] = STATE(1195), - [sym_function_type] = STATE(1040), - [sym_tuple_type] = STATE(1040), - [sym_unit_type] = STATE(1040), - [sym_generic_type] = STATE(790), - [sym_generic_type_with_turbofish] = STATE(2492), - [sym_bounded_type] = STATE(1040), - [sym_reference_type] = STATE(1040), - [sym_pointer_type] = STATE(1040), - [sym_empty_type] = STATE(1040), - [sym_abstract_type] = STATE(1040), - [sym_dynamic_type] = STATE(1040), - [sym_macro_invocation] = STATE(1040), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(760), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_u8] = ACTIONS(2474), - [anon_sym_i8] = ACTIONS(2474), - [anon_sym_u16] = ACTIONS(2474), - [anon_sym_i16] = ACTIONS(2474), - [anon_sym_u32] = ACTIONS(2474), - [anon_sym_i32] = ACTIONS(2474), - [anon_sym_u64] = ACTIONS(2474), - [anon_sym_i64] = ACTIONS(2474), - [anon_sym_u128] = ACTIONS(2474), - [anon_sym_i128] = ACTIONS(2474), - [anon_sym_isize] = ACTIONS(2474), - [anon_sym_usize] = ACTIONS(2474), - [anon_sym_f32] = ACTIONS(2474), - [anon_sym_f64] = ACTIONS(2474), - [anon_sym_bool] = ACTIONS(2474), - [anon_sym_str] = ACTIONS(2474), - [anon_sym_char] = ACTIONS(2474), + [622] = { + [sym_function_modifiers] = STATE(2396), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(838), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(2439), + [sym_array_type] = STATE(893), + [sym_for_lifetimes] = STATE(1197), + [sym_function_type] = STATE(893), + [sym_tuple_type] = STATE(893), + [sym_unit_type] = STATE(893), + [sym_generic_type] = STATE(806), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(893), + [sym_reference_type] = STATE(893), + [sym_pointer_type] = STATE(893), + [sym_empty_type] = STATE(893), + [sym_abstract_type] = STATE(893), + [sym_dynamic_type] = STATE(893), + [sym_macro_invocation] = STATE(893), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(761), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_PLUS] = ACTIONS(2463), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_u8] = ACTIONS(2467), + [anon_sym_i8] = ACTIONS(2467), + [anon_sym_u16] = ACTIONS(2467), + [anon_sym_i16] = ACTIONS(2467), + [anon_sym_u32] = ACTIONS(2467), + [anon_sym_i32] = ACTIONS(2467), + [anon_sym_u64] = ACTIONS(2467), + [anon_sym_i64] = ACTIONS(2467), + [anon_sym_u128] = ACTIONS(2467), + [anon_sym_i128] = ACTIONS(2467), + [anon_sym_isize] = ACTIONS(2467), + [anon_sym_usize] = ACTIONS(2467), + [anon_sym_f32] = ACTIONS(2467), + [anon_sym_f64] = ACTIONS(2467), + [anon_sym_bool] = ACTIONS(2467), + [anon_sym_str] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(2476), - [anon_sym_fn] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2471), [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2482), + [anon_sym_impl] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2475), [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2477), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_dyn] = ACTIONS(2490), - [sym_mutable_specifier] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_dyn] = ACTIONS(2483), + [sym_mutable_specifier] = ACTIONS(2485), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_crate] = ACTIONS(2494), - [sym_metavariable] = ACTIONS(2496), + [sym_self] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_crate] = ACTIONS(2487), + [sym_metavariable] = ACTIONS(2489), + [sym_block_comment] = ACTIONS(3), + }, + [623] = { + [sym_attribute_item] = STATE(623), + [aux_sym_enum_variant_list_repeat1] = STATE(623), + [sym_identifier] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_RBRACK] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_u8] = ACTIONS(2491), + [anon_sym_i8] = ACTIONS(2491), + [anon_sym_u16] = ACTIONS(2491), + [anon_sym_i16] = ACTIONS(2491), + [anon_sym_u32] = ACTIONS(2491), + [anon_sym_i32] = ACTIONS(2491), + [anon_sym_u64] = ACTIONS(2491), + [anon_sym_i64] = ACTIONS(2491), + [anon_sym_u128] = ACTIONS(2491), + [anon_sym_i128] = ACTIONS(2491), + [anon_sym_isize] = ACTIONS(2491), + [anon_sym_usize] = ACTIONS(2491), + [anon_sym_f32] = ACTIONS(2491), + [anon_sym_f64] = ACTIONS(2491), + [anon_sym_bool] = ACTIONS(2491), + [anon_sym_str] = ACTIONS(2491), + [anon_sym_char] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_loop] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_COMMA] = ACTIONS(2493), + [anon_sym_ref] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym__] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2493), + [sym_mutable_specifier] = ACTIONS(2491), + [anon_sym_DOT_DOT] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2491), + [anon_sym_move] = ACTIONS(2491), + [sym_integer_literal] = ACTIONS(2493), + [aux_sym_string_literal_token1] = ACTIONS(2493), + [sym_char_literal] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2491), + [anon_sym_false] = ACTIONS(2491), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2493), + [sym_raw_string_literal] = ACTIONS(2493), + [sym_float_literal] = ACTIONS(2493), [sym_block_comment] = ACTIONS(3), }, [624] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1398), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2312), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_mutable_specifier] = ACTIONS(2498), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [625] = { - [sym_function_modifiers] = STATE(2472), - [sym_type_parameters] = STATE(704), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1668), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1842), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1639), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1499), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [626] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2305), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(622), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_type_parameters] = STATE(664), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1656), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1696), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1514), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2506), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [627] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1399), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(624), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_type_parameters] = STATE(732), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1621), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1661), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1503), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), - [sym_mutable_specifier] = ACTIONS(2508), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [628] = { - [sym_function_modifiers] = STATE(2472), - [sym_type_parameters] = STATE(712), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1656), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_type_parameters] = STATE(723), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1703), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1651), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1493), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1702), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1532), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [629] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(620), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_RPAREN] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2510), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2512), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [630] = { - [sym_function_modifiers] = STATE(2472), - [sym_type_parameters] = STATE(659), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1623), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2276), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(624), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1659), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1482), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), - [anon_sym_SQUOTE] = ACTIONS(2313), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(2510), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(2514), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [631] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1827), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_type_parameters] = STATE(731), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1642), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_RPAREN] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1650), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1494), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [632] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [633] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [634] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2103), - [sym_bracketed_type] = STATE(2378), - [sym_qualified_type] = STATE(2448), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2043), + [sym_bracketed_type] = STATE(2388), + [sym_qualified_type] = STATE(2513), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [635] = { - [sym_function_modifiers] = STATE(2472), - [sym_type_parameters] = STATE(723), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1652), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(1801), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1650), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1506), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(856), - [anon_sym_LBRACK] = ACTIONS(860), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(848), + [anon_sym_RPAREN] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [636] = { - [sym_function_modifiers] = STATE(2386), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1005), - [sym_bracketed_type] = STATE(2491), - [sym_lifetime] = STATE(623), - [sym_array_type] = STATE(1040), - [sym_for_lifetimes] = STATE(1195), - [sym_function_type] = STATE(1040), - [sym_tuple_type] = STATE(1040), - [sym_unit_type] = STATE(1040), - [sym_generic_type] = STATE(790), - [sym_generic_type_with_turbofish] = STATE(2492), - [sym_bounded_type] = STATE(1040), - [sym_reference_type] = STATE(1040), - [sym_pointer_type] = STATE(1040), - [sym_empty_type] = STATE(1040), - [sym_abstract_type] = STATE(1040), - [sym_dynamic_type] = STATE(1040), - [sym_macro_invocation] = STATE(1040), - [sym_scoped_identifier] = STATE(2216), - [sym_scoped_type_identifier] = STATE(760), - [aux_sym_function_modifiers_repeat1] = STATE(1526), - [sym_identifier] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_u8] = ACTIONS(2474), - [anon_sym_i8] = ACTIONS(2474), - [anon_sym_u16] = ACTIONS(2474), - [anon_sym_i16] = ACTIONS(2474), - [anon_sym_u32] = ACTIONS(2474), - [anon_sym_i32] = ACTIONS(2474), - [anon_sym_u64] = ACTIONS(2474), - [anon_sym_i64] = ACTIONS(2474), - [anon_sym_u128] = ACTIONS(2474), - [anon_sym_i128] = ACTIONS(2474), - [anon_sym_isize] = ACTIONS(2474), - [anon_sym_usize] = ACTIONS(2474), - [anon_sym_f32] = ACTIONS(2474), - [anon_sym_f64] = ACTIONS(2474), - [anon_sym_bool] = ACTIONS(2474), - [anon_sym_str] = ACTIONS(2474), - [anon_sym_char] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2504), + [sym_function_modifiers] = STATE(2396), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(825), + [sym_bracketed_type] = STATE(2501), + [sym_lifetime] = STATE(622), + [sym_array_type] = STATE(893), + [sym_for_lifetimes] = STATE(1197), + [sym_function_type] = STATE(893), + [sym_tuple_type] = STATE(893), + [sym_unit_type] = STATE(893), + [sym_generic_type] = STATE(806), + [sym_generic_type_with_turbofish] = STATE(2502), + [sym_bounded_type] = STATE(893), + [sym_reference_type] = STATE(893), + [sym_pointer_type] = STATE(893), + [sym_empty_type] = STATE(893), + [sym_abstract_type] = STATE(893), + [sym_dynamic_type] = STATE(893), + [sym_macro_invocation] = STATE(893), + [sym_scoped_identifier] = STATE(2268), + [sym_scoped_type_identifier] = STATE(761), + [aux_sym_function_modifiers_repeat1] = STATE(1561), + [sym_identifier] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2465), + [anon_sym_u8] = ACTIONS(2467), + [anon_sym_i8] = ACTIONS(2467), + [anon_sym_u16] = ACTIONS(2467), + [anon_sym_i16] = ACTIONS(2467), + [anon_sym_u32] = ACTIONS(2467), + [anon_sym_i32] = ACTIONS(2467), + [anon_sym_u64] = ACTIONS(2467), + [anon_sym_i64] = ACTIONS(2467), + [anon_sym_u128] = ACTIONS(2467), + [anon_sym_i128] = ACTIONS(2467), + [anon_sym_isize] = ACTIONS(2467), + [anon_sym_usize] = ACTIONS(2467), + [anon_sym_f32] = ACTIONS(2467), + [anon_sym_f64] = ACTIONS(2467), + [anon_sym_bool] = ACTIONS(2467), + [anon_sym_str] = ACTIONS(2467), + [anon_sym_char] = ACTIONS(2467), + [anon_sym_SQUOTE] = ACTIONS(2510), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(2476), - [anon_sym_fn] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2469), + [anon_sym_fn] = ACTIONS(2471), [anon_sym_for] = ACTIONS(672), - [anon_sym_impl] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2482), + [anon_sym_impl] = ACTIONS(2473), + [anon_sym_union] = ACTIONS(2475), [anon_sym_unsafe] = ACTIONS(664), - [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2477), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_dyn] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_dyn] = ACTIONS(2483), [sym_mutable_specifier] = ACTIONS(2524), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_crate] = ACTIONS(2494), - [sym_metavariable] = ACTIONS(2496), + [sym_self] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_crate] = ACTIONS(2487), + [sym_metavariable] = ACTIONS(2489), [sym_block_comment] = ACTIONS(3), }, [637] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, [638] = { - [sym_function_modifiers] = STATE(2472), - [sym_extern_modifier] = STATE(1526), - [sym__type] = STATE(1831), - [sym_bracketed_type] = STATE(2378), - [sym_lifetime] = STATE(2471), - [sym_array_type] = STATE(1390), + [sym_function_modifiers] = STATE(2322), + [sym_extern_modifier] = STATE(1561), + [sym__type] = STATE(2103), + [sym_bracketed_type] = STATE(2388), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1393), [sym_for_lifetimes] = STATE(1196), - [sym_function_type] = STATE(1390), - [sym_tuple_type] = STATE(1390), - [sym_unit_type] = STATE(1390), - [sym_generic_type] = STATE(1359), - [sym_generic_type_with_turbofish] = STATE(2379), - [sym_bounded_type] = STATE(1390), - [sym_reference_type] = STATE(1390), - [sym_pointer_type] = STATE(1390), - [sym_empty_type] = STATE(1390), - [sym_abstract_type] = STATE(1390), - [sym_dynamic_type] = STATE(1390), - [sym_macro_invocation] = STATE(1390), - [sym_scoped_identifier] = STATE(2157), - [sym_scoped_type_identifier] = STATE(1331), - [aux_sym_function_modifiers_repeat1] = STATE(1526), + [sym_function_type] = STATE(1393), + [sym_tuple_type] = STATE(1393), + [sym_unit_type] = STATE(1393), + [sym_generic_type] = STATE(1353), + [sym_generic_type_with_turbofish] = STATE(2389), + [sym_bounded_type] = STATE(1393), + [sym_reference_type] = STATE(1393), + [sym_pointer_type] = STATE(1393), + [sym_empty_type] = STATE(1393), + [sym_abstract_type] = STATE(1393), + [sym_dynamic_type] = STATE(1393), + [sym_macro_invocation] = STATE(1393), + [sym_scoped_identifier] = STATE(2321), + [sym_scoped_type_identifier] = STATE(1332), + [aux_sym_function_modifiers_repeat1] = STATE(1561), [sym_identifier] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(848), [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(852), [anon_sym_STAR] = ACTIONS(658), - [anon_sym_u8] = ACTIONS(862), - [anon_sym_i8] = ACTIONS(862), - [anon_sym_u16] = ACTIONS(862), - [anon_sym_i16] = ACTIONS(862), - [anon_sym_u32] = ACTIONS(862), - [anon_sym_i32] = ACTIONS(862), - [anon_sym_u64] = ACTIONS(862), - [anon_sym_i64] = ACTIONS(862), - [anon_sym_u128] = ACTIONS(862), - [anon_sym_i128] = ACTIONS(862), - [anon_sym_isize] = ACTIONS(862), - [anon_sym_usize] = ACTIONS(862), - [anon_sym_f32] = ACTIONS(862), - [anon_sym_f64] = ACTIONS(862), - [anon_sym_bool] = ACTIONS(862), - [anon_sym_str] = ACTIONS(862), - [anon_sym_char] = ACTIONS(862), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u128] = ACTIONS(854), + [anon_sym_i128] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_str] = ACTIONS(854), + [anon_sym_char] = ACTIONS(854), [anon_sym_SQUOTE] = ACTIONS(2313), [anon_sym_async] = ACTIONS(664), [anon_sym_const] = ACTIONS(664), - [anon_sym_default] = ACTIONS(864), + [anon_sym_default] = ACTIONS(856), [anon_sym_fn] = ACTIONS(670), [anon_sym_for] = ACTIONS(672), [anon_sym_impl] = ACTIONS(674), - [anon_sym_union] = ACTIONS(866), + [anon_sym_union] = ACTIONS(858), [anon_sym_unsafe] = ACTIONS(664), [anon_sym_BANG] = ACTIONS(680), [anon_sym_extern] = ACTIONS(684), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(870), - [anon_sym_AMP] = ACTIONS(872), + [anon_sym_COLON_COLON] = ACTIONS(862), + [anon_sym_AMP] = ACTIONS(864), [anon_sym_dyn] = ACTIONS(696), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(876), - [sym_super] = ACTIONS(876), - [sym_crate] = ACTIONS(876), - [sym_metavariable] = ACTIONS(878), + [sym_self] = ACTIONS(868), + [sym_super] = ACTIONS(868), + [sym_crate] = ACTIONS(868), + [sym_metavariable] = ACTIONS(870), [sym_block_comment] = ACTIONS(3), }, }; @@ -72603,19 +70144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -72623,37 +70164,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1400), 1, + STATE(2293), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72665,7 +70206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72700,19 +70241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -72720,37 +70261,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2291), 1, + STATE(1658), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72762,7 +70303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72797,19 +70338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -72817,37 +70358,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2038), 1, + STATE(1381), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72859,7 +70400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72894,19 +70435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -72914,37 +70455,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1663), 1, + STATE(2110), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -72956,7 +70497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72991,19 +70532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73011,37 +70552,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1613), 1, + STATE(1638), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73053,7 +70594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73088,19 +70629,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73108,37 +70649,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1383), 1, + STATE(1798), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73150,7 +70691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73185,19 +70726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73205,37 +70746,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1883), 1, + STATE(1665), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73247,7 +70788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73282,19 +70823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73302,37 +70843,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1387), 1, + STATE(2075), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1561), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + STATE(1393), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(854), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1032] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, + anon_sym_LPAREN, + ACTIONS(852), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, + anon_sym_default, + ACTIONS(858), 1, + anon_sym_union, + ACTIONS(862), 1, + anon_sym_COLON_COLON, + ACTIONS(864), 1, + anon_sym_AMP, + ACTIONS(870), 1, + sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, + sym_scoped_type_identifier, + STATE(1353), 1, + sym_generic_type, + STATE(1962), 1, + sym__type, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, sym_lifetime, - STATE(2472), 1, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1561), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + STATE(1393), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(854), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1161] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_LPAREN, + ACTIONS(2461), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, + anon_sym_default, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, + anon_sym_union, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, + anon_sym_COLON_COLON, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, + sym_metavariable, + STATE(761), 1, + sym_scoped_type_identifier, + STATE(806), 1, + sym_generic_type, + STATE(1031), 1, + sym__type, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, + sym_scoped_identifier, + STATE(2396), 1, sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, + sym_bracketed_type, + STATE(2502), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73344,7 +71079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73362,7 +71097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1032] = 32, + [1290] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73379,116 +71114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, - anon_sym_default, - ACTIONS(866), 1, - anon_sym_union, - ACTIONS(870), 1, - anon_sym_COLON_COLON, - ACTIONS(872), 1, - anon_sym_AMP, - ACTIONS(878), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, - sym_scoped_type_identifier, - STATE(1359), 1, - sym_generic_type, - STATE(1879), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1526), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(1390), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(862), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [1161] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, ACTIONS(856), 1, - anon_sym_LPAREN, - ACTIONS(860), 1, - anon_sym_LBRACK, - ACTIONS(864), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73496,37 +71134,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1614), 1, + STATE(1383), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73538,7 +71176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73556,7 +71194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1290] = 32, + [1419] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73573,19 +71211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73593,37 +71231,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1385), 1, + STATE(1934), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73635,7 +71273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73653,7 +71291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1419] = 32, + [1548] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73670,19 +71308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73690,37 +71328,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2068), 1, + STATE(1389), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73732,7 +71370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73750,7 +71388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1548] = 32, + [1677] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73767,19 +71405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73787,37 +71425,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1811), 1, + STATE(2065), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73829,7 +71467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73847,7 +71485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1677] = 32, + [1806] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73864,19 +71502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73884,37 +71522,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1633), 1, + STATE(1666), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -73926,7 +71564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73944,7 +71582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1806] = 32, + [1935] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -73961,19 +71599,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -73981,37 +71619,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1398), 1, + STATE(1687), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74023,7 +71661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74041,7 +71679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1935] = 32, + [2064] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74058,19 +71696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74078,37 +71716,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1624), 1, + STATE(1637), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74120,7 +71758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74138,7 +71776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2064] = 32, + [2193] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74155,19 +71793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74175,37 +71813,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2104), 1, + STATE(2187), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74217,7 +71855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74235,7 +71873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2193] = 32, + [2322] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74252,19 +71890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74272,37 +71910,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2045), 1, + STATE(1663), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74314,7 +71952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74332,7 +71970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2322] = 32, + [2451] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74349,19 +71987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74369,37 +72007,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2117), 1, + STATE(2170), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74411,7 +72049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74429,7 +72067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2451] = 32, + [2580] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74446,19 +72084,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74466,37 +72104,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1875), 1, + STATE(1652), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74508,7 +72146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74526,7 +72164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2580] = 32, + [2709] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74543,57 +72181,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2530), 1, - sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1491), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1657), 1, - sym__type, - STATE(1679), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, + STATE(1633), 1, + sym__type, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1561), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + STATE(1393), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(854), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [2838] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_LPAREN, + ACTIONS(2461), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, + anon_sym_default, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, + anon_sym_union, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, + anon_sym_COLON_COLON, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, + sym_metavariable, + STATE(761), 1, + sym_scoped_type_identifier, + STATE(806), 1, + sym_generic_type, + STATE(976), 1, + sym__type, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, + sym_scoped_identifier, + STATE(2396), 1, sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, + sym_bracketed_type, + STATE(2502), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74605,7 +72340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74623,7 +72358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2709] = 32, + [2967] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74640,19 +72375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74660,37 +72395,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1869), 1, + STATE(2037), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74702,7 +72437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74720,7 +72455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2838] = 32, + [3096] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74737,19 +72472,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74757,37 +72492,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1405), 1, + STATE(1630), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74799,7 +72534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74817,7 +72552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2967] = 32, + [3225] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74834,57 +72569,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2530), 1, + sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1492), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1679), 1, sym_generic_type, - STATE(1625), 1, + STATE(1690), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74896,7 +72631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74914,7 +72649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3096] = 32, + [3354] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -74931,19 +72666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -74951,37 +72686,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1817), 1, + STATE(2127), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -74993,7 +72728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75011,7 +72746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3225] = 32, + [3483] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75028,19 +72763,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75048,37 +72783,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1379), 1, + STATE(1392), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75090,7 +72825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75108,7 +72843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3354] = 32, + [3612] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75125,19 +72860,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75145,37 +72880,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1631), 1, + STATE(1386), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75187,7 +72922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75205,7 +72940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3483] = 32, + [3741] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75222,19 +72957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75242,37 +72977,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1394), 1, + STATE(1791), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75284,7 +73019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75302,7 +73037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3612] = 32, + [3870] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75319,19 +73054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75339,37 +73074,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1647), 1, + STATE(1635), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75381,7 +73116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75399,74 +73134,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3741] = 32, + [3999] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(806), 1, sym_generic_type, - STATE(1874), 1, + STATE(981), 1, sym__type, - STATE(2157), 1, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2396), 1, + sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75478,7 +73213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75496,7 +73231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3870] = 32, + [4128] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75513,19 +73248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75533,37 +73268,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1381), 1, + STATE(1400), 1, sym__type, - STATE(1382), 1, - sym_lifetime, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75575,7 +73310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75593,7 +73328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3999] = 32, + [4257] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, @@ -75602,65 +73337,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2464), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2466), 1, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2465), 1, anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(2478), 1, + ACTIONS(2471), 1, anon_sym_fn, - ACTIONS(2480), 1, + ACTIONS(2473), 1, anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(2484), 1, + ACTIONS(2477), 1, anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(2490), 1, + ACTIONS(2483), 1, anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(2489), 1, sym_metavariable, - STATE(760), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(806), 1, sym_generic_type, - STATE(935), 1, + STATE(843), 1, sym__type, - STATE(1195), 1, + STATE(1197), 1, sym_for_lifetimes, - STATE(2216), 1, + STATE(2268), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2396), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75672,7 +73407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75690,74 +73425,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4128] = 32, + [4386] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(942), 1, + STATE(2018), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75769,7 +73504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75787,74 +73522,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4257] = 32, + [4515] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(951), 1, + STATE(2202), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75866,7 +73601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75884,7 +73619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4386] = 32, + [4644] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75901,19 +73636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -75921,37 +73656,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2051), 1, + STATE(2306), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -75963,7 +73698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75981,7 +73716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4515] = 32, + [4773] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -75998,19 +73733,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76018,37 +73753,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2282), 1, + STATE(1620), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76060,7 +73795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76078,74 +73813,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4644] = 32, + [4902] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(953), 1, + STATE(1668), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76157,7 +73892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76175,74 +73910,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4773] = 32, + [5031] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(806), 1, sym_generic_type, - STATE(1619), 1, + STATE(982), 1, sym__type, - STATE(2157), 1, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2396), 1, + sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76254,7 +73989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76272,7 +74007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4902] = 32, + [5160] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76289,19 +74024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76309,37 +74044,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1936), 1, + STATE(1402), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76351,7 +74086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76369,7 +74104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5031] = 32, + [5289] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76386,19 +74121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76406,37 +74141,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1381), 1, + STATE(1716), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76448,7 +74183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76466,7 +74201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5160] = 32, + [5418] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76483,19 +74218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76503,37 +74238,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1670), 1, + STATE(1380), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76545,7 +74280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76563,7 +74298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5289] = 32, + [5547] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76580,19 +74315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76600,37 +74335,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1694), 1, + STATE(1657), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76642,7 +74377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76660,7 +74395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5418] = 32, + [5676] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76677,19 +74412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76697,37 +74432,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2025), 1, + STATE(1823), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76739,7 +74474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76757,7 +74492,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5547] = 32, + [5805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1156), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(1158), 42, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_yield, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5876] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76774,19 +74577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76794,37 +74597,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1782), 1, + STATE(1390), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76836,7 +74639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76854,7 +74657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5676] = 32, + [6005] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76871,19 +74674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76891,37 +74694,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2031), 1, + STATE(2071), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -76933,7 +74736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76951,7 +74754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5805] = 32, + [6134] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -76968,19 +74771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -76988,37 +74791,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1889), 1, + STATE(1997), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77030,7 +74833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77048,7 +74851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5934] = 32, + [6263] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77065,19 +74868,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77085,37 +74888,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1636), 1, + STATE(1675), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77127,7 +74930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77145,7 +74948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6063] = 32, + [6392] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77162,19 +74965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77182,37 +74985,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1823), 1, + STATE(1677), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77224,7 +75027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77242,7 +75045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6192] = 32, + [6521] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77259,19 +75062,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77279,37 +75082,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1655), 1, + STATE(1394), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77321,7 +75124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77339,7 +75142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6321] = 32, + [6650] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77356,19 +75159,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77376,134 +75179,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1684), 1, + STATE(1809), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, + STATE(2322), 1, sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1526), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(1390), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(862), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [6450] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, - anon_sym_LPAREN, - ACTIONS(860), 1, - anon_sym_LBRACK, - ACTIONS(864), 1, - anon_sym_default, - ACTIONS(866), 1, - anon_sym_union, - ACTIONS(870), 1, - anon_sym_COLON_COLON, - ACTIONS(872), 1, - anon_sym_AMP, - ACTIONS(878), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, - sym_scoped_type_identifier, - STATE(1359), 1, - sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2177), 1, - sym__type, - STATE(2378), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77515,7 +75221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77533,7 +75239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6579] = 32, + [6779] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77550,19 +75256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77570,37 +75276,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2252), 1, + STATE(1682), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77612,7 +75318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77630,7 +75336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6708] = 32, + [6908] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77647,19 +75353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77667,37 +75373,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1867), 1, + STATE(1662), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77709,7 +75415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77727,7 +75433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6837] = 32, + [7037] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77744,19 +75450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77764,37 +75470,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1840), 1, + STATE(2320), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77806,7 +75512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77824,7 +75530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6966] = 32, + [7166] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77841,19 +75547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77861,37 +75567,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1831), 1, + STATE(2240), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -77903,7 +75609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77921,7 +75627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7095] = 32, + [7295] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -77938,19 +75644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -77958,37 +75664,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1671), 1, + STATE(1874), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78000,7 +75706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78018,7 +75724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7224] = 32, + [7424] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78035,19 +75741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78055,37 +75761,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1669), 1, + STATE(1403), 1, sym__type, - STATE(2157), 1, + STATE(1404), 1, + sym_lifetime, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78097,7 +75803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78115,7 +75821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7353] = 32, + [7553] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78132,19 +75838,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78152,37 +75858,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2017), 1, + STATE(1403), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78194,7 +75900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78212,7 +75918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7482] = 32, + [7682] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78229,19 +75935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78249,37 +75955,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1928), 1, + STATE(1706), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78291,7 +75997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78309,7 +76015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7611] = 32, + [7811] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78326,19 +76032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78346,37 +76052,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2192), 1, + STATE(2111), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78388,7 +76094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78406,7 +76112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7740] = 32, + [7940] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78423,19 +76129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78443,37 +76149,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1678), 1, + STATE(1773), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78485,7 +76191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78503,7 +76209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7869] = 33, + [8069] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78520,58 +76226,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2532), 1, - sym_self, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1383), 1, + STATE(1653), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(876), 2, - sym_super, - sym_crate, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - STATE(1390), 11, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78583,7 +76288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78601,7 +76306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8000] = 32, + [8198] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78618,19 +76323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78638,37 +76343,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1985), 1, + STATE(1634), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78680,7 +76385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78698,7 +76403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8129] = 32, + [8327] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78715,19 +76420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78735,37 +76440,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1572), 1, + STATE(2099), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78777,7 +76482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78795,7 +76500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8258] = 32, + [8456] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78812,19 +76517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -78832,37 +76537,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1701), 1, + STATE(1850), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78874,7 +76579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78892,7 +76597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8387] = 32, + [8585] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -78909,57 +76614,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2534), 1, - sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1497), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1637), 1, + STATE(1353), 1, sym_generic_type, - STATE(1640), 1, + STATE(1903), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -78971,7 +76676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78989,7 +76694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8516] = 32, + [8714] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79006,19 +76711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79026,37 +76731,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1703), 1, + STATE(1617), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79068,7 +76773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79086,7 +76791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8645] = 32, + [8843] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79103,19 +76808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79123,37 +76828,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1999), 1, + STATE(2280), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79165,7 +76870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79183,7 +76888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8774] = 32, + [8972] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79200,19 +76905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79220,37 +76925,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2222), 1, + STATE(1925), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79262,7 +76967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79280,7 +76985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8903] = 32, + [9101] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79297,19 +77002,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79317,37 +77022,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1692), 1, + STATE(1966), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79359,7 +77064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79377,7 +77082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9032] = 32, + [9230] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79394,19 +77099,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79414,37 +77119,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1689), 1, + STATE(1908), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79456,7 +77161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79474,7 +77179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9161] = 32, + [9359] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79491,19 +77196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79511,37 +77216,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2230), 1, + STATE(1697), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79553,7 +77258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79571,7 +77276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9290] = 32, + [9488] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79588,19 +77293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79608,37 +77313,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2021), 1, + STATE(2078), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79650,7 +77355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79668,7 +77373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9419] = 32, + [9617] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79685,57 +77390,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2536), 1, - sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1507), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1642), 1, - sym__type, - STATE(1643), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, + STATE(1789), 1, + sym__type, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79747,7 +77452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79765,7 +77470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9548] = 32, + [9746] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79782,19 +77487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79802,37 +77507,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1950), 1, + STATE(2103), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79844,7 +77549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79862,74 +77567,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9677] = 32, + [9875] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(806), 1, sym_generic_type, - STATE(2009), 1, + STATE(923), 1, sym__type, - STATE(2157), 1, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2396), 1, + sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -79941,7 +77646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79959,7 +77664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9806] = 32, + [10004] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -79976,19 +77681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -79996,37 +77701,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1660), 1, + STATE(1707), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80038,7 +77743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80056,7 +77761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9935] = 32, + [10133] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80073,19 +77778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80093,37 +77798,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2203), 1, + STATE(1710), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80135,7 +77840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80153,7 +77858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10064] = 32, + [10262] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80170,19 +77875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80190,134 +77895,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, - sym_generic_type, - STATE(1622), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1526), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(1390), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(862), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [10193] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, - anon_sym_LPAREN, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, - anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, - anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, - anon_sym_COLON_COLON, - ACTIONS(2488), 1, - anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, - sym_metavariable, - STATE(760), 1, - sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(856), 1, + STATE(2062), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80329,7 +77937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80347,7 +77955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10322] = 32, + [10391] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80364,19 +77972,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80384,37 +77992,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1392), 1, + STATE(1901), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80426,7 +78034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80444,7 +78052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10451] = 32, + [10520] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80461,19 +78069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -80481,37 +78089,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1402), 1, + STATE(2230), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80523,7 +78131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80541,7 +78149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10580] = 32, + [10649] = 33, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80558,57 +78166,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2532), 1, + sym_self, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1704), 1, + STATE(1383), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + ACTIONS(868), 2, + sym_super, + sym_crate, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80620,7 +78229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80638,7 +78247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10709] = 32, + [10780] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80655,57 +78264,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2534), 1, + sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1486), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1624), 1, + sym__type, + STATE(1672), 1, sym_generic_type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2180), 1, - sym__type, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1561), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + STATE(1393), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(854), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [10909] = 32, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, + anon_sym_LPAREN, + ACTIONS(2461), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, + anon_sym_default, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, + anon_sym_union, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, + anon_sym_COLON_COLON, + ACTIONS(2481), 1, + anon_sym_AMP, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, + sym_metavariable, + STATE(761), 1, + sym_scoped_type_identifier, + STATE(806), 1, + sym_generic_type, + STATE(1062), 1, + sym__type, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, + sym_scoped_identifier, + STATE(2396), 1, sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, + sym_bracketed_type, + STATE(2502), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80717,7 +78423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80735,7 +78441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10838] = 32, + [11038] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -80752,57 +78458,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, + ACTIONS(2309), 1, + sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2538), 1, - sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1483), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1685), 1, - sym__type, - STATE(1686), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, + STATE(2312), 1, + sym__type, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80814,7 +78520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80832,74 +78538,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10967] = 32, + [11167] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(862), 1, + STATE(1669), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -80911,7 +78617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80929,74 +78635,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11096] = 32, + [11296] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(865), 1, + STATE(2311), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81008,7 +78714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81026,74 +78732,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11225] = 32, + [11425] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(867), 1, + STATE(1842), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81105,7 +78811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81123,7 +78829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11354] = 32, + [11554] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81140,19 +78846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81160,37 +78866,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2289), 1, + STATE(2095), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81202,7 +78908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81220,7 +78926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11483] = 32, + [11683] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81237,19 +78943,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81257,37 +78963,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1992), 1, + STATE(1898), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81299,7 +79005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81317,7 +79023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11612] = 32, + [11812] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81334,57 +79040,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, ACTIONS(2313), 1, anon_sym_SQUOTE, + ACTIONS(2536), 1, + sym_identifier, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1524), 1, sym_scoped_type_identifier, - STATE(1359), 1, - sym_generic_type, - STATE(1688), 1, + STATE(1692), 1, sym__type, - STATE(2157), 1, + STATE(1693), 1, + sym_generic_type, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81396,7 +79102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81414,74 +79120,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11741] = 32, + [11941] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2538), 1, + sym_identifier, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1528), 1, sym_scoped_type_identifier, - STATE(790), 1, - sym_generic_type, - STATE(1083), 1, + STATE(1681), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(1704), 1, + sym_generic_type, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81493,7 +79199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81511,7 +79217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11870] = 32, + [12070] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81528,19 +79234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81548,37 +79254,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1919), 1, + STATE(1973), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81590,50 +79296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [11999] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1344), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(1346), 42, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81651,32 +79314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_yield, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12070] = 32, + [12199] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81693,19 +79331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81713,37 +79351,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1837), 1, + STATE(1676), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81755,7 +79393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81773,7 +79411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12199] = 32, + [12328] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -81790,19 +79428,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -81810,37 +79448,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2279), 1, + STATE(1982), 1, sym__type, - STATE(2378), 1, + STATE(2321), 1, + sym_scoped_identifier, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81852,7 +79490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81870,74 +79508,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12328] = 32, + [12457] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(806), 1, sym_generic_type, - STATE(1915), 1, + STATE(913), 1, sym__type, - STATE(2157), 1, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2396), 1, + sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -81949,7 +79587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81967,74 +79605,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12457] = 32, + [12586] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(806), 1, sym_generic_type, - STATE(1617), 1, + STATE(910), 1, sym__type, - STATE(2157), 1, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2396), 1, + sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82046,7 +79684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82064,7 +79702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12586] = 32, + [12715] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82081,19 +79719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82101,37 +79739,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1621), 1, + STATE(2031), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82143,7 +79781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82161,74 +79799,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12715] = 32, + [12844] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(806), 1, sym_generic_type, - STATE(1846), 1, + STATE(908), 1, sym__type, - STATE(2157), 1, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2396), 1, + sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82240,7 +79878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82258,7 +79896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12844] = 32, + [12973] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(658), 1, @@ -82275,19 +79913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82295,37 +79933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, STATE(1683), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82337,7 +79975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82355,7 +79993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12973] = 32, + [13102] = 32, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, @@ -82364,162 +80002,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(2464), 1, + ACTIONS(2457), 1, sym_identifier, - ACTIONS(2466), 1, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2465), 1, anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(2478), 1, + ACTIONS(2471), 1, anon_sym_fn, - ACTIONS(2480), 1, + ACTIONS(2473), 1, anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(2484), 1, + ACTIONS(2477), 1, anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(2490), 1, + ACTIONS(2483), 1, anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(2489), 1, sym_metavariable, - STATE(760), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(806), 1, sym_generic_type, - STATE(946), 1, + STATE(836), 1, sym__type, - STATE(1195), 1, + STATE(1197), 1, sym_for_lifetimes, - STATE(2216), 1, + STATE(2268), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2396), 1, sym_function_modifiers, - STATE(2491), 1, - sym_bracketed_type, - STATE(2492), 1, - sym_generic_type_with_turbofish, - STATE(2513), 1, + STATE(2439), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1526), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2494), 3, - sym_self, - sym_super, - sym_crate, - STATE(1040), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(2474), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [13102] = 32, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, - anon_sym_LPAREN, - ACTIONS(860), 1, - anon_sym_LBRACK, - ACTIONS(864), 1, - anon_sym_default, - ACTIONS(866), 1, - anon_sym_union, - ACTIONS(870), 1, - anon_sym_COLON_COLON, - ACTIONS(872), 1, - anon_sym_AMP, - ACTIONS(878), 1, - sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, - sym_scoped_type_identifier, - STATE(1359), 1, - sym_generic_type, - STATE(2093), 1, - sym__type, - STATE(2157), 1, - sym_scoped_identifier, - STATE(2378), 1, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82531,7 +80072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82552,71 +80093,71 @@ static const uint16_t ts_small_parse_table[] = { [13231] = 32, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_STAR, - ACTIONS(670), 1, - anon_sym_fn, ACTIONS(672), 1, anon_sym_for, - ACTIONS(674), 1, - anon_sym_impl, - ACTIONS(680), 1, - anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(696), 1, - anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_identifier, + ACTIONS(2459), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(2461), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(2465), 1, + anon_sym_STAR, + ACTIONS(2469), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2473), 1, + anon_sym_impl, + ACTIONS(2475), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(2477), 1, + anon_sym_BANG, + ACTIONS(2479), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(2481), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(2483), 1, + anon_sym_dyn, + ACTIONS(2489), 1, sym_metavariable, - ACTIONS(2309), 1, - sym_identifier, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1331), 1, + STATE(761), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(806), 1, sym_generic_type, - STATE(1766), 1, + STATE(838), 1, sym__type, - STATE(2157), 1, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2268), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2396), 1, + sym_function_modifiers, + STATE(2439), 1, + sym_lifetime, + STATE(2501), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(893), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82628,7 +80169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(2467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82663,19 +80204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82683,37 +80224,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(1595), 1, + STATE(2267), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, + STATE(2322), 1, sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82725,7 +80266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82746,71 +80287,71 @@ static const uint16_t ts_small_parse_table[] = { [13489] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(932), 1, + STATE(1822), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82822,7 +80363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82843,71 +80384,71 @@ static const uint16_t ts_small_parse_table[] = { [13618] = 32, ACTIONS(77), 1, anon_sym_LT, + ACTIONS(658), 1, + anon_sym_STAR, + ACTIONS(670), 1, + anon_sym_fn, ACTIONS(672), 1, anon_sym_for, + ACTIONS(674), 1, + anon_sym_impl, + ACTIONS(680), 1, + anon_sym_BANG, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(2464), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(696), 1, + anon_sym_dyn, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(2468), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_STAR, - ACTIONS(2476), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2480), 1, - anon_sym_impl, - ACTIONS(2482), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(2484), 1, - anon_sym_BANG, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(2488), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_dyn, - ACTIONS(2496), 1, + ACTIONS(870), 1, sym_metavariable, - STATE(760), 1, + ACTIONS(2309), 1, + sym_identifier, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(790), 1, + STATE(1353), 1, sym_generic_type, - STATE(941), 1, + STATE(2036), 1, sym__type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2216), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2386), 1, + STATE(2322), 1, sym_function_modifiers, - STATE(2491), 1, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2513), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1040), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -82919,7 +80460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2474), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82954,19 +80495,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, ACTIONS(696), 1, anon_sym_dyn, - ACTIONS(856), 1, + ACTIONS(848), 1, anon_sym_LPAREN, - ACTIONS(860), 1, + ACTIONS(852), 1, anon_sym_LBRACK, - ACTIONS(864), 1, + ACTIONS(856), 1, anon_sym_default, - ACTIONS(866), 1, + ACTIONS(858), 1, anon_sym_union, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(872), 1, + ACTIONS(864), 1, anon_sym_AMP, - ACTIONS(878), 1, + ACTIONS(870), 1, sym_metavariable, ACTIONS(2309), 1, sym_identifier, @@ -82974,37 +80515,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, STATE(1196), 1, sym_for_lifetimes, - STATE(1331), 1, + STATE(1332), 1, sym_scoped_type_identifier, - STATE(1359), 1, + STATE(1353), 1, sym_generic_type, - STATE(2139), 1, + STATE(1708), 1, sym__type, - STATE(2157), 1, + STATE(2321), 1, sym_scoped_identifier, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2341), 1, + sym_lifetime, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2471), 1, - sym_lifetime, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(1390), 11, + STATE(1393), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -83016,7 +80557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(862), 17, + ACTIONS(854), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83038,7 +80579,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2542), 17, + ACTIONS(842), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83056,7 +80597,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2540), 40, + ACTIONS(840), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83101,7 +80642,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 17, + ACTIONS(2542), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83119,7 +80660,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2544), 40, + ACTIONS(2540), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83164,26 +80705,25 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(502), 18, + ACTIONS(2546), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, + anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, - anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2548), 39, + ACTIONS(2544), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83215,6 +80755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, + anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -83227,25 +80768,26 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(842), 17, + ACTIONS(512), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_BANG, - anon_sym_DASH_GT, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, anon_sym_DOT_DOT, + anon_sym_DASH, anon_sym_PIPE, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(840), 40, + ACTIONS(2548), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83277,7 +80819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_unsafe, anon_sym_while, - anon_sym_DASH, anon_sym_yield, anon_sym_move, anon_sym_true, @@ -83290,7 +80831,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 15, + ACTIONS(1156), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -83306,7 +80847,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1158), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83354,10 +80895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2560), 1, anon_sym_LT2, - STATE(797), 1, - sym_type_arguments, - STATE(807), 1, + STATE(777), 1, sym_parameters, + STATE(795), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -83414,10 +80955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2560), 1, anon_sym_LT2, - STATE(797), 1, - sym_type_arguments, - STATE(807), 1, + STATE(777), 1, sym_parameters, + STATE(795), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -83474,10 +81015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2560), 1, anon_sym_LT2, - STATE(797), 1, - sym_type_arguments, - STATE(807), 1, + STATE(777), 1, sym_parameters, + STATE(795), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -83527,15 +81068,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14409] = 5, - ACTIONS(2574), 1, + [14409] = 7, + ACTIONS(2556), 1, anon_sym_BANG, - ACTIONS(2576), 1, + ACTIONS(2570), 1, + anon_sym_LBRACE, + ACTIONS(2572), 1, + anon_sym_COLON_COLON, + STATE(922), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(430), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(428), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14474] = 7, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(791), 1, + sym_parameters, + STATE(803), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2576), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2574), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14539] = 5, + ACTIONS(2582), 1, + anon_sym_BANG, + ACTIONS(2584), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2580), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2578), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14600] = 5, + ACTIONS(2590), 1, + anon_sym_BANG, + ACTIONS(2592), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2588), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2586), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14661] = 5, + ACTIONS(2598), 1, + anon_sym_BANG, + ACTIONS(2600), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2596), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2594), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14722] = 7, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(791), 1, + sym_parameters, + STATE(803), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2604), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2602), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14787] = 7, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(791), 1, + sym_parameters, + STATE(803), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2608), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_LT_EQ, + anon_sym_DOT, + ACTIONS(2606), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [14852] = 5, + ACTIONS(2614), 1, + anon_sym_BANG, + ACTIONS(2616), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2572), 17, + ACTIONS(2612), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83553,7 +81494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2570), 29, + ACTIONS(2610), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83583,17 +81524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [14470] = 5, - ACTIONS(2582), 1, - anon_sym_BANG, - ACTIONS(2584), 1, - anon_sym_COLON_COLON, + [14913] = 4, + ACTIONS(2618), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 17, + ACTIONS(2590), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83602,18 +81542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(2592), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83622,13 +81559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83638,22 +81576,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14531] = 7, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(799), 1, - sym_type_arguments, - STATE(803), 1, - sym_parameters, + [14971] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 17, + ACTIONS(1410), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1412), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1778), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1780), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15083] = 4, + ACTIONS(2620), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2598), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83662,17 +81702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2586), 27, + ACTIONS(2600), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83681,12 +81719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83696,22 +81736,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14596] = 7, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(2590), 1, - anon_sym_LBRACE, - ACTIONS(2592), 1, + [15141] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1314), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1121), 1, - sym_field_initializer_list, + sym_metavariable, + ACTIONS(1316), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15197] = 4, + ACTIONS(2622), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2582), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83725,7 +81814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 29, + ACTIONS(2584), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83737,6 +81826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -83755,19 +81845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14661] = 7, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(799), 1, - sym_type_arguments, - STATE(803), 1, - sym_parameters, + [15255] = 5, + ACTIONS(2628), 1, + anon_sym_SQUOTE, + STATE(898), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 17, + ACTIONS(2626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83778,15 +81864,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2594), 27, + ACTIONS(2624), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83803,6 +81888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83812,22 +81898,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14726] = 7, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(799), 1, - sym_type_arguments, - STATE(803), 1, - sym_parameters, + [15315] = 6, + ACTIONS(2636), 1, + anon_sym_BANG, + ACTIONS(2638), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 17, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(2632), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83836,31 +81927,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2598), 27, + ACTIONS(2630), 23, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83870,18 +81954,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14791] = 5, - ACTIONS(2606), 1, - anon_sym_BANG, - ACTIONS(2608), 1, + [15377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1774), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1776), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15433] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 17, + ACTIONS(2590), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83890,14 +82025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2602), 29, + ACTIONS(2592), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83910,13 +82043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83926,18 +82060,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14852] = 5, - ACTIONS(2614), 1, - anon_sym_BANG, - ACTIONS(2616), 1, - anon_sym_COLON_COLON, + [15489] = 4, + ACTIONS(2640), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 17, + ACTIONS(2614), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83946,18 +82080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2610), 29, + ACTIONS(2616), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83966,13 +82097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -83982,12 +82114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14913] = 3, + [15547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1924), 9, + ACTIONS(1598), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83997,7 +82130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(1600), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -84036,16 +82169,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14969] = 4, - ACTIONS(2618), 1, - anon_sym_LBRACE, + [15603] = 4, + ACTIONS(2642), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84059,10 +82191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 30, + ACTIONS(2606), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84071,7 +82204,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84090,25 +82222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15027] = 6, - ACTIONS(2626), 1, - anon_sym_BANG, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, + [15660] = 4, + ACTIONS(2648), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2622), 16, + ACTIONS(2646), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84122,12 +82244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 23, + ACTIONS(2644), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84146,16 +82275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15089] = 4, - ACTIONS(2630), 1, - anon_sym_LBRACE, + [15717] = 4, + ACTIONS(2654), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 16, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84169,10 +82297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2616), 30, + ACTIONS(2650), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84181,7 +82310,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84200,122 +82328,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15147] = 3, + [15774] = 4, + ACTIONS(2656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1936), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2576), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1938), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15203] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1352), 9, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2574), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1354), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15259] = 4, - ACTIONS(2632), 1, - anon_sym_LBRACE, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15831] = 5, + ACTIONS(2660), 1, + anon_sym_LPAREN, + STATE(929), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 16, + ACTIONS(2662), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84329,10 +82405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2608), 30, + ACTIONS(2658), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84341,7 +82417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84360,15 +82435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15317] = 5, - ACTIONS(2638), 1, - anon_sym_SQUOTE, - STATE(1073), 1, - sym_loop_label, + [15890] = 4, + ACTIONS(2664), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84384,7 +82457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 30, + ACTIONS(428), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84415,14 +82488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15377] = 3, + [15947] = 5, + ACTIONS(2638), 1, + anon_sym_COLON_COLON, + ACTIONS(2666), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2632), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84436,11 +82512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 31, + ACTIONS(2630), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84449,7 +82524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84468,16 +82542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15433] = 4, - ACTIONS(2640), 1, - anon_sym_LBRACE, + [16006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 16, + ACTIONS(814), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -84491,19 +82562,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2576), 30, + ACTIONS(816), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84522,117 +82594,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15491] = 3, + [16061] = 5, + ACTIONS(2556), 1, + anon_sym_BANG, + ACTIONS(2668), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1096), 9, + ACTIONS(430), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(428), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1098), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15547] = 3, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16120] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1376), 9, + ACTIONS(2672), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2670), 31, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1378), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15603] = 3, + anon_sym_DASH_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16175] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2676), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84648,11 +82723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 31, + ACTIONS(2674), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -84660,7 +82734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -84680,11 +82753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15658] = 3, + [16232] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2648), 15, + ACTIONS(2682), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84700,7 +82773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2646), 31, + ACTIONS(2680), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84712,8 +82785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84732,15 +82805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15713] = 5, - ACTIONS(2652), 1, - anon_sym_LPAREN, - STATE(1081), 1, - sym_arguments, + [16287] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 15, + ACTIONS(2686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84756,8 +82825,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2650), 29, + ACTIONS(2684), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -84767,6 +82837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -84786,13 +82857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15772] = 4, - ACTIONS(2656), 1, - anon_sym_COLON_COLON, + [16342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84808,7 +82877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 30, + ACTIONS(2688), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84821,6 +82890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84839,13 +82909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15829] = 4, - ACTIONS(2662), 1, - anon_sym_DASH_GT, + [16397] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2660), 15, + ACTIONS(2694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84861,7 +82929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2658), 30, + ACTIONS(2692), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84874,6 +82942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -84892,15 +82961,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15886] = 5, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, - ACTIONS(2664), 1, - anon_sym_BANG, + [16452] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(2696), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84916,7 +82984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 29, + ACTIONS(2674), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84946,13 +83014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15945] = 4, - ACTIONS(2670), 1, + [16509] = 4, + ACTIONS(2702), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2668), 15, + ACTIONS(2700), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84968,7 +83036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2666), 30, + ACTIONS(2698), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84999,11 +83067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16002] = 3, + [16566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2674), 15, + ACTIONS(2706), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85019,7 +83087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2672), 31, + ACTIONS(2704), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85051,13 +83119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16057] = 4, - ACTIONS(2680), 1, - anon_sym_DASH_GT, + [16621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(2710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85073,7 +83139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 30, + ACTIONS(2708), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85085,6 +83151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -85104,11 +83171,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16114] = 3, + [16676] = 4, + ACTIONS(2716), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(814), 15, + ACTIONS(2714), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85124,7 +83193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(816), 31, + ACTIONS(2712), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85133,7 +83202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, @@ -85156,11 +83224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16169] = 3, + [16733] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2684), 15, + ACTIONS(2720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85176,7 +83244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2682), 31, + ACTIONS(2718), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85208,13 +83276,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16224] = 4, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [16788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2724), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2722), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [16843] = 4, + ACTIONS(2730), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2728), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85230,7 +83350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(2726), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85261,13 +83381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16281] = 4, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, + [16900] = 4, + ACTIONS(2736), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85283,7 +83403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(2732), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85314,13 +83434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16338] = 4, - ACTIONS(2690), 1, - anon_sym_COLON_COLON, + [16957] = 5, + ACTIONS(2738), 1, + anon_sym_else, + STATE(831), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(392), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85336,7 +83458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(390), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85348,7 +83470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85367,11 +83488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16395] = 3, + [17016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 17, + ACTIONS(2742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85382,14 +83503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(2740), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85402,13 +83521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85418,14 +83538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16450] = 4, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [17071] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85441,7 +83560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(2744), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85453,6 +83572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -85472,11 +83592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16507] = 3, + [17126] = 4, + ACTIONS(2748), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2694), 15, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85492,7 +83614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2692), 31, + ACTIONS(2606), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85504,7 +83626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -85524,15 +83645,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16562] = 5, - ACTIONS(2556), 1, - anon_sym_BANG, - ACTIONS(2696), 1, - anon_sym_COLON_COLON, + [17183] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85548,10 +83665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 29, + ACTIONS(2750), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85560,6 +83678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85578,14 +83697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16621] = 4, + [17238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2700), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2702), 15, + ACTIONS(2588), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85596,15 +83712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2698), 29, + ACTIONS(2586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85614,12 +83733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -85629,13 +83748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16678] = 3, + [17293] = 4, + ACTIONS(2656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 15, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85651,7 +83771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2704), 31, + ACTIONS(2602), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85664,7 +83784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85683,11 +83802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16733] = 3, + [17350] = 4, + ACTIONS(2656), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 15, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85703,7 +83824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2708), 31, + ACTIONS(2606), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85715,7 +83836,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -85735,14 +83855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16788] = 4, + [17407] = 4, + ACTIONS(2758), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2712), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2702), 15, + ACTIONS(2756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85758,10 +83877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 29, + ACTIONS(2754), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85788,11 +83908,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16845] = 3, + [17464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1386), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1388), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1322), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1324), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1966), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1968), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1486), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1488), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2716), 15, + ACTIONS(2576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85808,7 +84132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2714), 31, + ACTIONS(2574), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85821,7 +84145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85840,13 +84163,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16900] = 4, - ACTIONS(2722), 1, - anon_sym_DASH_GT, + [17734] = 4, + ACTIONS(2638), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2720), 15, + ACTIONS(2632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85862,11 +84185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2718), 30, + ACTIONS(2630), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -85893,11 +84215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16957] = 3, + [17790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2726), 15, + ACTIONS(2762), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85913,7 +84235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2724), 31, + ACTIONS(2760), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85926,7 +84248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85945,11 +84266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17012] = 3, + [17844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85965,7 +84286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2728), 31, + ACTIONS(2764), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85978,7 +84299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -85997,15 +84317,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17067] = 5, - ACTIONS(2732), 1, - anon_sym_else, - STATE(952), 1, - sym_else_clause, + [17898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(402), 15, + ACTIONS(1306), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1308), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1786), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1788), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18006] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2371), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86021,7 +84439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(400), 29, + ACTIONS(2373), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86033,6 +84451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86051,13 +84470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17126] = 4, - ACTIONS(2738), 1, - anon_sym_DASH_GT, + [18060] = 4, + ACTIONS(2768), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2736), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86073,11 +84492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2734), 30, + ACTIONS(428), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86104,13 +84522,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17183] = 4, - ACTIONS(2744), 1, - anon_sym_DASH_GT, + [18116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1610), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1612), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18170] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(2772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86126,7 +84593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 30, + ACTIONS(2770), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86157,11 +84624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17240] = 3, + [18224] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2748), 15, + ACTIONS(2776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86177,7 +84644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2746), 31, + ACTIONS(2774), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86190,7 +84657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -86209,13 +84675,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17295] = 4, - ACTIONS(2686), 1, - anon_sym_COLON_COLON, + [18278] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 15, + ACTIONS(408), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86231,7 +84695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2594), 30, + ACTIONS(406), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86262,11 +84726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17352] = 3, + [18332] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 15, + ACTIONS(422), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86282,7 +84746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2750), 31, + ACTIONS(420), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86294,7 +84758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -86314,13 +84777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17407] = 4, - ACTIONS(2758), 1, - anon_sym_DASH_GT, + [18386] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2756), 15, + ACTIONS(2780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86336,7 +84797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2754), 30, + ACTIONS(2778), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86367,11 +84828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17464] = 3, + [18440] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1232), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86379,7 +84840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1234), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86418,11 +84879,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17518] = 3, + [18494] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1296), 7, + ACTIONS(1638), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86430,7 +84891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1298), 38, + ACTIONS(1640), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86469,11 +84930,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17572] = 3, + [18548] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1558), 7, + ACTIONS(1526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86481,7 +84942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1560), 38, + ACTIONS(1528), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86520,11 +84981,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17626] = 3, + [18602] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1618), 7, + ACTIONS(1514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86532,7 +84993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1620), 38, + ACTIONS(1516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86571,62 +85032,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17680] = 3, + [18656] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1630), 7, + ACTIONS(2604), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2602), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18710] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(612), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1632), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17734] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(610), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18764] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 15, + ACTIONS(2784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86642,7 +85154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2760), 30, + ACTIONS(2782), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86673,62 +85185,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17788] = 3, + [18818] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1648), 7, + ACTIONS(2788), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2786), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18872] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2792), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1650), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17842] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2790), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18926] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2431), 15, + ACTIONS(2796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86744,7 +85307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2433), 30, + ACTIONS(2794), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86775,11 +85338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17896] = 3, + [18980] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(2800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86795,7 +85358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 30, + ACTIONS(2798), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86826,11 +85389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17950] = 3, + [19034] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(2804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86846,7 +85409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 30, + ACTIONS(2802), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86877,11 +85440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18004] = 3, + [19088] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(432), 15, + ACTIONS(2808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86897,7 +85460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(430), 30, + ACTIONS(2806), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86928,11 +85491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18058] = 3, + [19142] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1684), 7, + ACTIONS(1390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86940,7 +85503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1686), 38, + ACTIONS(1392), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -86979,11 +85542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18112] = 3, + [19196] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1688), 7, + ACTIONS(1378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -86991,7 +85554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1690), 38, + ACTIONS(1380), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87030,62 +85593,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18166] = 3, + [19250] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1692), 7, + ACTIONS(2812), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2810), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2816), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1694), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18220] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2814), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2820), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2818), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19412] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2820), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2818), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19466] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1696), 7, + ACTIONS(1374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87093,7 +85809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1698), 38, + ACTIONS(1376), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87132,11 +85848,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18274] = 3, + [19520] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1700), 7, + ACTIONS(1370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87144,7 +85860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1702), 38, + ACTIONS(1372), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87183,11 +85899,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18328] = 3, + [19574] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1704), 7, + ACTIONS(1362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87195,7 +85911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1706), 38, + ACTIONS(1364), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87234,62 +85950,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18382] = 3, + [19628] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1708), 7, + ACTIONS(446), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(444), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1710), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18436] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19682] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1712), 7, + ACTIONS(1188), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87297,7 +86013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1714), 38, + ACTIONS(1190), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87336,113 +86052,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18490] = 3, + [19736] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1724), 7, + ACTIONS(498), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(496), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(502), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1726), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18544] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(500), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19844] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1732), 7, + ACTIONS(2662), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2658), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1734), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18598] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(414), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19952] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1736), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87450,7 +86268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1738), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87489,62 +86307,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18652] = 3, + [20006] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1740), 7, + ACTIONS(2824), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2822), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1742), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18706] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20060] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1756), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87552,7 +86370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1758), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87591,11 +86409,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18760] = 3, + [20114] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1772), 7, + ACTIONS(1294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87603,7 +86421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1774), 38, + ACTIONS(1296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87642,11 +86460,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18814] = 3, + [20168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1780), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87654,7 +86472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1782), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87693,11 +86511,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18868] = 3, + [20222] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1784), 7, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87705,7 +86523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1786), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87744,11 +86562,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18922] = 3, + [20276] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1792), 7, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87756,7 +86574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1794), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87795,11 +86613,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18976] = 3, + [20330] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1804), 7, + ACTIONS(1258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87807,7 +86625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1806), 38, + ACTIONS(1260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87846,11 +86664,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19030] = 3, + [20384] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1812), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87858,7 +86676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1814), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87897,62 +86715,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19084] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2774), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2772), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19138] = 3, + [20438] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1816), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -87960,7 +86727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1818), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -87999,11 +86766,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19192] = 3, + [20492] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1820), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88011,7 +86778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1822), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88050,11 +86817,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19246] = 3, + [20546] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1824), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88062,7 +86829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1826), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88101,62 +86868,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19300] = 3, + [20600] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2776), 30, + ACTIONS(1208), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19354] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1210), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20654] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88172,7 +86939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 30, + ACTIONS(2826), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88203,62 +86970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19408] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1840), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1842), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19462] = 3, + [20708] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1056), 7, + ACTIONS(1200), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88266,7 +86982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1058), 38, + ACTIONS(1202), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88305,11 +87021,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19516] = 3, + [20762] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1852), 7, + ACTIONS(1176), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88317,7 +87033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1854), 38, + ACTIONS(1178), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88356,11 +87072,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19570] = 3, + [20816] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1856), 7, + ACTIONS(1172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88368,7 +87084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1858), 38, + ACTIONS(1174), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88407,11 +87123,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19624] = 3, + [20870] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1880), 7, + ACTIONS(1168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88419,7 +87135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1882), 38, + ACTIONS(1170), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88458,11 +87174,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19678] = 3, + [20924] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1888), 7, + ACTIONS(1144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88470,7 +87186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1890), 38, + ACTIONS(1146), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88509,11 +87225,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19732] = 3, + [20978] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1904), 7, + ACTIONS(1080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88521,7 +87237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1906), 38, + ACTIONS(1082), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88560,11 +87276,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19786] = 3, + [21032] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1952), 7, + ACTIONS(1068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88572,7 +87288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1954), 38, + ACTIONS(1070), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88611,62 +87327,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19840] = 3, + [21086] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(494), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(492), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19894] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1982), 7, + ACTIONS(1518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88674,7 +87339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1984), 38, + ACTIONS(1520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88713,11 +87378,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19948] = 3, + [21140] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1986), 7, + ACTIONS(1092), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88725,7 +87390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1988), 38, + ACTIONS(1094), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88764,11 +87429,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20002] = 3, + [21194] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1994), 7, + ACTIONS(1108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88776,7 +87441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1996), 38, + ACTIONS(1110), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88815,62 +87480,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20056] = 3, + [21248] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2784), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20110] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1998), 7, + ACTIONS(1112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88878,7 +87492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(2000), 38, + ACTIONS(1114), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88917,11 +87531,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20164] = 3, + [21302] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1728), 7, + ACTIONS(1132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88929,7 +87543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1730), 38, + ACTIONS(1134), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -88968,11 +87582,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20218] = 3, + [21356] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1978), 7, + ACTIONS(1136), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -88980,7 +87594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1980), 38, + ACTIONS(1138), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89019,11 +87633,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20272] = 3, + [21410] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1962), 7, + ACTIONS(1270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89031,7 +87645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1964), 38, + ACTIONS(1272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89070,11 +87684,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20326] = 3, + [21464] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1958), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89082,7 +87696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1960), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89121,11 +87735,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20380] = 3, + [21518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 15, + ACTIONS(490), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89141,7 +87755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2788), 30, + ACTIONS(488), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89172,11 +87786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20434] = 3, + [21572] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1940), 7, + ACTIONS(1160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89184,7 +87798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1162), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89223,11 +87837,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20488] = 3, + [21626] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1932), 7, + ACTIONS(1164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89235,7 +87849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1166), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89274,62 +87888,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20542] = 3, + [21680] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2792), 30, + ACTIONS(1238), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20596] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1240), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21734] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 15, + ACTIONS(486), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89345,7 +87959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2796), 30, + ACTIONS(484), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89376,11 +87990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20650] = 3, + [21788] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 15, + ACTIONS(464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89396,7 +88010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2800), 30, + ACTIONS(462), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89427,113 +88041,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20704] = 3, + [21842] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2806), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2804), 30, + ACTIONS(1262), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20758] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1264), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21896] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(448), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(446), 30, + ACTIONS(1266), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20812] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1268), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21950] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(464), 15, + ACTIONS(472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89549,7 +88163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(462), 30, + ACTIONS(470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89580,11 +88194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20866] = 3, + [22004] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2810), 15, + ACTIONS(456), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89600,7 +88214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2808), 30, + ACTIONS(454), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89631,11 +88245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20920] = 3, + [22058] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2814), 15, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89651,7 +88265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2812), 30, + ACTIONS(2606), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -89682,11 +88296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20974] = 3, + [22112] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1892), 7, + ACTIONS(1342), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89694,7 +88308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1894), 38, + ACTIONS(1344), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89733,11 +88347,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21028] = 3, + [22166] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1884), 7, + ACTIONS(1350), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89745,7 +88359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1886), 38, + ACTIONS(1352), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89784,11 +88398,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21082] = 3, + [22220] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1868), 7, + ACTIONS(1354), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -89796,7 +88410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1870), 38, + ACTIONS(1356), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89835,160 +88449,109 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21136] = 3, + [22274] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1864), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(2832), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1866), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21190] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1760), 7, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2830), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1762), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21244] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1744), 7, + ACTIONS(2836), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2834), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1746), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21298] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22382] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -90039,11 +88602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21352] = 3, + [22436] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1672), 7, + ACTIONS(1358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90051,7 +88614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1674), 38, + ACTIONS(1360), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90090,11 +88653,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21406] = 3, + [22490] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1582), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90102,7 +88665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1584), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90141,62 +88704,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21460] = 3, + [22544] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1574), 7, + ACTIONS(606), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(604), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22598] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(480), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1576), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21514] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(478), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22652] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(486), 15, + ACTIONS(2840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90212,7 +88826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(484), 30, + ACTIONS(2838), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90243,113 +88857,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21568] = 3, + [22706] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1492), 7, + ACTIONS(412), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(410), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(494), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1494), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21622] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(492), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22814] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1416), 7, + ACTIONS(2844), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2842), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2848), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1418), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21676] = 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2846), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2393), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2395), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22976] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2852), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2850), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23030] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1408), 7, + ACTIONS(1426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90357,7 +89175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1410), 38, + ACTIONS(1428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90396,11 +89214,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21730] = 3, + [23084] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1380), 7, + ACTIONS(1430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90408,7 +89226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1382), 38, + ACTIONS(1432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90447,62 +89265,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21784] = 3, + [23138] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1372), 7, + ACTIONS(2856), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2854), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1374), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21838] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23192] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1368), 7, + ACTIONS(1438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90510,7 +89328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1370), 38, + ACTIONS(1440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90549,62 +89367,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21892] = 3, + [23246] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1364), 7, + ACTIONS(322), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(320), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1366), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21946] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23300] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, + ACTIONS(2409), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90620,7 +89438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 30, + ACTIONS(2411), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -90651,11 +89469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22000] = 3, + [23354] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1356), 7, + ACTIONS(1442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90663,7 +89481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1358), 38, + ACTIONS(1444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90702,11 +89520,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22054] = 3, + [23408] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1348), 7, + ACTIONS(1076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90714,7 +89532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1350), 38, + ACTIONS(1078), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90753,11 +89571,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22108] = 3, + [23462] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1634), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90765,7 +89583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1636), 38, + ACTIONS(1964), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90804,11 +89622,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22162] = 3, + [23516] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1614), 7, + ACTIONS(1454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90816,7 +89634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1616), 38, + ACTIONS(1456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90855,11 +89673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22216] = 3, + [23570] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1340), 7, + ACTIONS(1458), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -90867,7 +89685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1342), 38, + ACTIONS(1460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90906,62 +89724,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22270] = 3, + [23624] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1328), 7, + ACTIONS(2860), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2858), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1330), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22324] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23678] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2818), 15, + ACTIONS(2864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90977,7 +89795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2816), 30, + ACTIONS(2862), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -91008,11 +89826,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22378] = 3, + [23732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1482), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1484), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23786] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1316), 7, + ACTIONS(1498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91020,7 +89889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1318), 38, + ACTIONS(1500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91059,11 +89928,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22432] = 3, + [23840] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1288), 7, + ACTIONS(1502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91071,7 +89940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1290), 38, + ACTIONS(1504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91110,11 +89979,215 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22486] = 3, + [23894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(468), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(466), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2868), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2866), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2872), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2870), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24056] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2874), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24110] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1280), 7, + ACTIONS(1538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91122,7 +90195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1282), 38, + ACTIONS(1540), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91161,11 +90234,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22540] = 3, + [24164] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1276), 7, + ACTIONS(1654), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91173,7 +90246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1278), 38, + ACTIONS(1656), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91212,11 +90285,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22594] = 3, + [24218] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1260), 7, + ACTIONS(1658), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91224,7 +90297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1262), 38, + ACTIONS(1660), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91263,11 +90336,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22648] = 3, + [24272] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1244), 7, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91275,7 +90348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1246), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91314,62 +90387,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22702] = 3, + [24326] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2822), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2820), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22756] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1748), 7, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91377,7 +90399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1750), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91416,11 +90438,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22810] = 3, + [24380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1752), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91428,7 +90450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1754), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91467,11 +90489,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22864] = 3, + [24434] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1164), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91479,7 +90501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1166), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91518,11 +90540,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22918] = 3, + [24488] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1160), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91530,7 +90552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1162), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91569,11 +90591,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22972] = 3, + [24542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1156), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91581,7 +90603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1158), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91620,11 +90642,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23026] = 3, + [24596] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1152), 7, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91632,7 +90654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1154), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91671,11 +90693,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23080] = 3, + [24650] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1100), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91683,7 +90705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1102), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91722,11 +90744,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23134] = 3, + [24704] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1512), 7, + ACTIONS(1310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91734,7 +90756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1514), 38, + ACTIONS(1312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91773,11 +90795,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23188] = 3, + [24758] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1768), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91785,7 +90807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1770), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91824,62 +90846,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23242] = 3, + [24812] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(478), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(476), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23296] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1088), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91887,7 +90858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1090), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91926,11 +90897,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23350] = 3, + [24866] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1504), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91938,7 +90909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1506), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91977,11 +90948,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23404] = 3, + [24920] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(600), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -91989,7 +90960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(602), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92028,11 +90999,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23458] = 3, + [24974] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1776), 7, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92040,7 +91011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1778), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92079,11 +91050,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23512] = 3, + [25028] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1808), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92091,7 +91062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1810), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92130,11 +91101,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23566] = 3, + [25082] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1432), 7, + ACTIONS(406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92142,7 +91113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1434), 38, + ACTIONS(408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92181,62 +91152,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23620] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2826), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2824), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23674] = 3, + [25136] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1460), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92244,7 +91164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1462), 38, + ACTIONS(1932), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92283,62 +91203,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23728] = 3, + [25190] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2830), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2828), 30, + ACTIONS(1974), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23782] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1976), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25244] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1828), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92346,7 +91266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1830), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92385,11 +91305,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23836] = 3, + [25298] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1080), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92397,7 +91317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1082), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92436,11 +91356,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23890] = 3, + [25352] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1638), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92448,7 +91368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1640), 38, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92487,11 +91407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23944] = 3, + [25406] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1076), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92499,7 +91419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1078), 38, + ACTIONS(1956), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92538,11 +91458,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23998] = 3, + [25460] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1456), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92550,7 +91470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1458), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92589,11 +91509,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24052] = 3, + [25514] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(596), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92601,7 +91521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(598), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92640,113 +91560,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24106] = 3, + [25568] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2832), 30, + ACTIONS(1922), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24160] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1924), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25622] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2834), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2832), 30, + ACTIONS(1918), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24214] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1920), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25676] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1072), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92754,7 +91674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1074), 38, + ACTIONS(1908), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92793,11 +91713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24268] = 3, + [25730] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1068), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92805,7 +91725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1070), 38, + ACTIONS(1892), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92844,11 +91764,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24322] = 3, + [25784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2838), 15, + ACTIONS(460), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -92864,7 +91784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2836), 30, + ACTIONS(458), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -92895,11 +91815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24376] = 3, + [25838] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1452), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92907,7 +91827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1454), 38, + ACTIONS(1816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92946,11 +91866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24430] = 3, + [25892] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1832), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -92958,7 +91878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1834), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -92997,11 +91917,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24484] = 3, + [25946] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1836), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93009,7 +91929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1838), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93048,11 +91968,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24538] = 3, + [26000] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1448), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93060,7 +91980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1450), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93099,11 +92019,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24592] = 3, + [26054] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1896), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93111,7 +92031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1898), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93150,113 +92070,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24646] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2842), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2840), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24700] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2846), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2844), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24754] = 3, + [26108] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93264,7 +92082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1910), 38, + ACTIONS(1574), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93303,11 +92121,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24808] = 3, + [26162] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1912), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93315,7 +92133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1914), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93354,11 +92172,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24862] = 3, + [26216] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1444), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93366,7 +92184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1446), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93405,62 +92223,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24916] = 3, + [26270] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2850), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2848), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24970] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1440), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93468,7 +92235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1442), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93507,62 +92274,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25024] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2854), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2852), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25078] = 3, + [26324] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2858), 15, + ACTIONS(2880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93578,7 +92294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2856), 30, + ACTIONS(2878), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93609,11 +92325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25132] = 3, + [26378] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2862), 15, + ACTIONS(2884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -93629,7 +92345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2860), 30, + ACTIONS(2882), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -93660,164 +92376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25186] = 3, + [26432] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2866), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2864), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25240] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(482), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(480), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25294] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2870), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2868), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25348] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1436), 7, + ACTIONS(1120), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93825,7 +92388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1438), 38, + ACTIONS(1122), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93864,11 +92427,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25402] = 3, + [26486] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1060), 7, + ACTIONS(1116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93876,7 +92439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1062), 38, + ACTIONS(1118), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -93915,62 +92478,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25456] = 3, + [26540] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1392), 7, + ACTIONS(2888), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2886), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1394), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25510] = 3, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26594] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1488), 7, + ACTIONS(1100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -93978,7 +92541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1490), 38, + ACTIONS(1102), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94017,11 +92580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25564] = 3, + [26648] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1428), 7, + ACTIONS(1096), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94029,7 +92592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1430), 38, + ACTIONS(1098), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94068,11 +92631,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25618] = 3, + [26702] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1420), 7, + ACTIONS(1088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94080,7 +92643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1422), 38, + ACTIONS(1090), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94119,11 +92682,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25672] = 3, + [26756] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1412), 7, + ACTIONS(1084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94131,7 +92694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1414), 38, + ACTIONS(1086), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94170,11 +92733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25726] = 3, + [26810] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(610), 15, + ACTIONS(2892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94190,7 +92753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(608), 30, + ACTIONS(2890), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94221,11 +92784,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25780] = 3, + [26864] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1388), 7, + ACTIONS(2896), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2894), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26918] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94233,7 +92847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1390), 38, + ACTIONS(1300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94272,11 +92886,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25834] = 3, + [26972] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1656), 7, + ACTIONS(1192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94284,7 +92898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1658), 38, + ACTIONS(1194), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94323,11 +92937,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25888] = 3, + [27026] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1660), 7, + ACTIONS(1334), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94335,7 +92949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1662), 38, + ACTIONS(1336), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94374,11 +92988,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25942] = 3, + [27080] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1788), 7, + ACTIONS(1530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94386,7 +93000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1790), 38, + ACTIONS(1532), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94425,62 +93039,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25996] = 3, + [27134] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(440), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(438), 30, + ACTIONS(1124), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26050] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1126), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27188] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(412), 15, + ACTIONS(434), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94496,7 +93110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(410), 30, + ACTIONS(432), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94527,11 +93141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26104] = 3, + [27242] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1872), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94539,7 +93153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1874), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94578,11 +93192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26158] = 3, + [27296] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1900), 7, + ACTIONS(1406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94590,7 +93204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1902), 38, + ACTIONS(1408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94629,11 +93243,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26212] = 3, + [27350] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1948), 7, + ACTIONS(1402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94641,7 +93255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1950), 38, + ACTIONS(1404), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94680,11 +93294,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26266] = 3, + [27404] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1944), 7, + ACTIONS(1394), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94692,7 +93306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1396), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94731,11 +93345,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26320] = 3, + [27458] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1860), 7, + ACTIONS(414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94743,7 +93357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1862), 38, + ACTIONS(416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94782,62 +93396,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26374] = 3, + [27512] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(596), 30, + ACTIONS(1366), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26428] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1368), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(474), 15, + ACTIONS(2900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -94853,7 +93467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(472), 30, + ACTIONS(2898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -94884,11 +93498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26482] = 3, + [27620] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1716), 7, + ACTIONS(1346), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94896,7 +93510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1718), 38, + ACTIONS(1348), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94935,11 +93549,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26536] = 3, + [27674] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1642), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94947,7 +93561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1644), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -94986,11 +93600,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26590] = 3, + [27728] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1626), 7, + ACTIONS(2904), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2902), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [27782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1330), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -94998,7 +93663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1628), 38, + ACTIONS(1332), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95037,11 +93702,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26644] = 3, + [27836] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1610), 7, + ACTIONS(1326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95049,7 +93714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1612), 38, + ACTIONS(1328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95088,11 +93753,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26698] = 3, + [27890] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2874), 15, + ACTIONS(2908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95108,7 +93773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2872), 30, + ACTIONS(2906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95139,11 +93804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26752] = 3, + [27944] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1590), 7, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95151,7 +93816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1592), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95190,62 +93855,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26806] = 3, + [27998] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1308), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1310), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [26860] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1578), 7, + ACTIONS(410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95253,7 +93867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1580), 38, + ACTIONS(412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95292,11 +93906,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26914] = 3, + [28052] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1554), 7, + ACTIONS(1494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95304,7 +93918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1556), 38, + ACTIONS(1496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95343,11 +93957,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26968] = 3, + [28106] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1550), 7, + ACTIONS(1184), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95355,7 +93969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1552), 38, + ACTIONS(1186), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95394,62 +94008,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27022] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(424), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(422), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27076] = 3, + [28160] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1304), 7, + ACTIONS(1148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95457,7 +94020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1306), 38, + ACTIONS(1150), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95496,11 +94059,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27130] = 3, + [28214] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2878), 15, + ACTIONS(2912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95516,7 +94079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2876), 30, + ACTIONS(2910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -95547,11 +94110,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27184] = 3, + [28268] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1508), 7, + ACTIONS(1398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95559,7 +94122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1510), 38, + ACTIONS(1400), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95598,62 +94161,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27238] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2367), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2369), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27292] = 3, + [28322] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1300), 7, + ACTIONS(1128), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95661,7 +94173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1302), 38, + ACTIONS(1130), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95700,11 +94212,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27346] = 3, + [28376] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95712,7 +94224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1066), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95751,11 +94263,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27400] = 3, + [28430] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2678), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2674), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28484] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1520), 7, + ACTIONS(1072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95763,7 +94326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1522), 38, + ACTIONS(1074), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95802,11 +94365,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27454] = 3, + [28538] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1292), 7, + ACTIONS(1104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95814,7 +94377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1294), 38, + ACTIONS(1106), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95853,11 +94416,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27508] = 3, + [28592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(476), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(474), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28646] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1284), 7, + ACTIONS(1630), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95865,7 +94479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1286), 38, + ACTIONS(1632), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95904,11 +94518,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27562] = 3, + [28700] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1272), 7, + ACTIONS(1642), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95916,7 +94530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1274), 38, + ACTIONS(1644), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -95955,11 +94569,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27616] = 3, + [28754] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1264), 7, + ACTIONS(2916), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2914), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2920), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2918), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28862] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -95967,7 +94683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1266), 38, + ACTIONS(422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96006,11 +94722,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27670] = 3, + [28916] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1472), 7, + ACTIONS(2924), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2922), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [28970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2928), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2926), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96018,7 +94836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1474), 38, + ACTIONS(1304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96057,11 +94875,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27724] = 3, + [29078] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1464), 7, + ACTIONS(1156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96069,7 +94887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1466), 38, + ACTIONS(1158), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96108,11 +94926,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27778] = 3, + [29132] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1256), 7, + ACTIONS(450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96120,7 +94938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1258), 38, + ACTIONS(452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96159,11 +94977,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27832] = 3, + [29186] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1248), 7, + ACTIONS(496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96171,7 +94989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1250), 38, + ACTIONS(498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96210,11 +95028,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27886] = 3, + [29240] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1240), 7, + ACTIONS(1414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96222,7 +95040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1242), 38, + ACTIONS(1416), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96261,11 +95079,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27940] = 3, + [29294] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96281,7 +95099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 30, + ACTIONS(2930), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96312,11 +95130,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27994] = 3, + [29348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1418), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1420), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29402] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1928), 7, + ACTIONS(1422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96324,7 +95193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(1424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96363,11 +95232,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28048] = 3, + [29456] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1236), 7, + ACTIONS(1434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96375,7 +95244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1238), 38, + ACTIONS(1436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96414,11 +95283,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28102] = 3, + [29510] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2882), 15, + ACTIONS(2936), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2934), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [29564] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96434,7 +95354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2880), 30, + ACTIONS(2938), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96465,11 +95385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28156] = 3, + [29618] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1228), 7, + ACTIONS(1450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96477,7 +95397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1230), 38, + ACTIONS(1452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96516,11 +95436,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28210] = 3, + [29672] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1224), 7, + ACTIONS(1140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96528,7 +95448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1226), 38, + ACTIONS(1142), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96567,11 +95487,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28264] = 3, + [29726] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1220), 7, + ACTIONS(1462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96579,7 +95499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1222), 38, + ACTIONS(1464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96618,62 +95538,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28318] = 3, + [29780] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2886), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2884), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28372] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1216), 7, + ACTIONS(1152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96681,7 +95550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1218), 38, + ACTIONS(1154), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96720,62 +95589,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28426] = 3, + [29834] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2890), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2888), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28480] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2596), 15, + ACTIONS(2944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -96791,7 +95609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2594), 30, + ACTIONS(2942), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -96822,11 +95640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28534] = 3, + [29888] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1212), 7, + ACTIONS(1180), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96834,7 +95652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1214), 38, + ACTIONS(1182), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96873,11 +95691,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28588] = 3, + [29942] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1208), 7, + ACTIONS(1196), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96885,7 +95703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1210), 38, + ACTIONS(1198), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96924,62 +95742,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28642] = 3, + [29996] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2894), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2892), 30, + ACTIONS(1204), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28696] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1206), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30050] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1200), 7, + ACTIONS(1212), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -96987,7 +95805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1202), 38, + ACTIONS(1214), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97026,62 +95844,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28750] = 3, + [30104] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2898), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2896), 30, + ACTIONS(1286), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28804] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1288), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [30158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1196), 7, + ACTIONS(1318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97089,7 +95907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1198), 38, + ACTIONS(1320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97128,11 +95946,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28858] = 3, + [30212] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1188), 7, + ACTIONS(1382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97140,7 +95958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1190), 38, + ACTIONS(1384), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97179,11 +95997,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28912] = 3, + [30266] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1176), 7, + ACTIONS(1446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97191,7 +96009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1178), 38, + ACTIONS(1448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97230,11 +96048,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28966] = 3, + [30320] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1172), 7, + ACTIONS(1510), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97242,7 +96060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1174), 38, + ACTIONS(1512), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97281,11 +96099,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29020] = 3, + [30374] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1180), 7, + ACTIONS(1522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97293,7 +96111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1182), 38, + ACTIONS(1524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97332,164 +96150,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29074] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(602), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(600), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29128] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(606), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(604), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29182] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(408), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(406), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29236] = 3, + [30428] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1990), 7, + ACTIONS(1542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97497,7 +96162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1992), 38, + ACTIONS(1544), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97536,11 +96201,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29290] = 3, + [30482] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1974), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97548,7 +96213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1976), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97587,113 +96252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29344] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2427), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2429), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29398] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2902), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2900), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29452] = 3, + [30536] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1148), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97701,7 +96264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1150), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97740,63 +96303,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29506] = 4, - ACTIONS(2904), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(460), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(458), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29562] = 3, + [30590] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1192), 7, + ACTIONS(1622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97804,7 +96315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1194), 38, + ACTIONS(1624), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97843,11 +96354,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29616] = 3, + [30644] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1204), 7, + ACTIONS(1634), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97855,7 +96366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1206), 38, + ACTIONS(1636), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97894,11 +96405,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29670] = 3, + [30698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1144), 7, + ACTIONS(1646), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97906,7 +96417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1146), 38, + ACTIONS(1648), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97945,11 +96456,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29724] = 3, + [30752] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1136), 7, + ACTIONS(1650), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -97957,7 +96468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1138), 38, + ACTIONS(1652), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97996,11 +96507,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29778] = 3, + [30806] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1128), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98008,7 +96519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1130), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98047,11 +96558,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29832] = 3, + [30860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1108), 7, + ACTIONS(2948), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2946), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1678), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98059,7 +96621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1110), 38, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98098,11 +96660,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29886] = 3, + [30968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(428), 15, + ACTIONS(452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98118,7 +96680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(426), 30, + ACTIONS(450), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98149,11 +96711,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29940] = 3, + [31022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1682), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1684), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1690), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1692), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1694), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1696), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31184] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(436), 15, + ACTIONS(2952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98169,7 +96884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(434), 30, + ACTIONS(2950), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98200,11 +96915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29994] = 3, + [31238] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(2956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98220,7 +96935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 30, + ACTIONS(2954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98251,11 +96966,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30048] = 3, + [31292] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1092), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98263,7 +96978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1094), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98302,11 +97017,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30102] = 3, + [31346] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2908), 15, + ACTIONS(2429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -98322,7 +97037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2906), 30, + ACTIONS(2431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98353,11 +97068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30156] = 3, + [31400] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1064), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98365,7 +97080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1066), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98404,11 +97119,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30210] = 3, + [31454] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1970), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98416,7 +97131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1972), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98455,164 +97170,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30264] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(452), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(450), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30318] = 3, + [31508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2912), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2910), 30, + ACTIONS(1726), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30372] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(490), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(488), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30426] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1728), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31562] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1680), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98620,7 +97233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1682), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98659,62 +97272,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30480] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(414), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30534] = 3, + [31616] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + ACTIONS(1060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98722,7 +97284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1062), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98761,113 +97323,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30588] = 3, + [31670] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2916), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2914), 30, + ACTIONS(1822), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30642] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2920), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2918), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30696] = 3, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1824), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31724] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1966), 7, + ACTIONS(1466), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98875,7 +97386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1968), 38, + ACTIONS(1468), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98914,62 +97425,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30750] = 3, + [31778] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2654), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2650), 30, + ACTIONS(1826), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [30804] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1828), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31832] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1084), 7, + ACTIONS(1470), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -98977,7 +97488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1086), 38, + ACTIONS(1472), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99016,11 +97527,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30858] = 3, + [31886] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1116), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99028,7 +97539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1118), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99067,11 +97578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30912] = 3, + [31940] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1120), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99079,7 +97590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1122), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99118,11 +97629,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30966] = 3, + [31994] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1606), 7, + ACTIONS(2960), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2958), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [32048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99130,7 +97692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1608), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99169,11 +97731,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31020] = 3, + [32102] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1124), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99181,7 +97743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1126), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99220,11 +97782,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31074] = 3, + [32156] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2924), 15, + ACTIONS(2964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99240,7 +97802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2922), 30, + ACTIONS(2962), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99271,11 +97833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31128] = 3, + [32210] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2928), 15, + ACTIONS(2968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -99291,7 +97853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2926), 30, + ACTIONS(2966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99322,62 +97884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31182] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1132), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1134), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31236] = 3, + [32264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1562), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99385,7 +97896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1564), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99424,11 +97935,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31290] = 3, + [32318] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1500), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99436,7 +97947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1502), 38, + ACTIONS(1888), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99475,11 +97986,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31344] = 3, + [32372] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1916), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99487,7 +97998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1918), 38, + ACTIONS(1896), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99526,11 +98037,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31398] = 3, + [32426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1140), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99538,7 +98049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1142), 38, + ACTIONS(1900), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99577,62 +98088,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31452] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2932), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2930), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31506] = 3, + [32480] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1586), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99640,7 +98100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1588), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99679,164 +98139,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31560] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2936), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2934), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31614] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2940), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2938), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31668] = 3, + [32534] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2944), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2942), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31722] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1496), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99844,7 +98151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1498), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99883,62 +98190,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31776] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2948), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2946), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [31830] = 3, + [32588] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1360), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99946,7 +98202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1362), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99985,11 +98241,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31884] = 3, + [32642] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1168), 7, + ACTIONS(1474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -99997,7 +98253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1170), 38, + ACTIONS(1476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100036,11 +98292,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31938] = 3, + [32696] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1184), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100048,7 +98304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1186), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100087,11 +98343,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31992] = 3, + [32750] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1252), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100099,7 +98355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1254), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100138,11 +98394,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32046] = 3, + [32804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1268), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100150,7 +98406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1270), 38, + ACTIONS(1960), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100189,62 +98445,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32100] = 3, + [32858] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2952), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2950), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32154] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1344), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100252,7 +98457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1346), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100291,164 +98496,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32208] = 3, + [32912] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2956), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2954), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32262] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2960), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2958), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32316] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2964), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2962), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32370] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1312), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100456,7 +98508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1314), 38, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100495,11 +98547,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32424] = 3, + [32966] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1876), 7, + ACTIONS(1478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100507,7 +98559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1878), 38, + ACTIONS(1480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100546,11 +98598,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32478] = 3, + [33020] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1320), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100558,7 +98610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1322), 38, + ACTIONS(1992), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100597,62 +98649,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32532] = 3, + [33074] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2968), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2966), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32586] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1324), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100660,7 +98661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1326), 38, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100699,11 +98700,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32640] = 3, + [33128] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1332), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100711,7 +98712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1334), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100750,11 +98751,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32694] = 3, + [33182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1844), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100762,7 +98763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1846), 38, + ACTIONS(1916), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100801,11 +98802,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32748] = 3, + [33236] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1336), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100813,7 +98814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1338), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100852,11 +98853,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32802] = 3, + [33290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(440), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33344] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1384), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100864,7 +98916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1386), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100903,11 +98955,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32856] = 3, + [33398] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1396), 7, + ACTIONS(1626), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100915,7 +98967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1398), 38, + ACTIONS(1628), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -100954,11 +99006,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32910] = 3, + [33452] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1400), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -100966,7 +99018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1402), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101005,11 +99057,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32964] = 3, + [33506] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1404), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101017,7 +99069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1406), 38, + ACTIONS(1848), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101056,11 +99108,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33018] = 3, + [33560] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1424), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101068,7 +99120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1426), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101107,11 +99159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33072] = 3, + [33614] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1468), 7, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101119,7 +99171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1470), 38, + ACTIONS(1836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101158,11 +99210,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33126] = 3, + [33668] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1476), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101170,7 +99222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1478), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101209,11 +99261,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33180] = 3, + [33722] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 7, + ACTIONS(462), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101221,7 +99273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(412), 38, + ACTIONS(464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101260,11 +99312,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33234] = 3, + [33776] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1480), 7, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101272,7 +99324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1482), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101311,11 +99363,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33288] = 3, + [33830] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1484), 7, + ACTIONS(1490), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101323,7 +99375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1486), 38, + ACTIONS(1492), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101362,11 +99414,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33342] = 3, + [33884] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 7, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101374,7 +99426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(408), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101413,11 +99465,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33396] = 3, + [33938] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1516), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101425,7 +99477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1518), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101464,11 +99516,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33450] = 3, + [33992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1546), 7, + ACTIONS(1674), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101476,7 +99528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1548), 38, + ACTIONS(1676), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101515,11 +99567,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33504] = 3, + [34046] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1800), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101527,7 +99579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1802), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101566,11 +99618,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33558] = 3, + [34100] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1566), 7, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101578,7 +99630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1568), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101617,11 +99669,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33612] = 3, + [34154] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(414), 7, + ACTIONS(1618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101629,7 +99681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(416), 38, + ACTIONS(1620), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101668,11 +99720,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33666] = 3, + [34208] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1570), 7, + ACTIONS(1614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101680,7 +99732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1572), 38, + ACTIONS(1616), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101719,11 +99771,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33720] = 3, + [34262] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1796), 7, + ACTIONS(1606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101731,7 +99783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1798), 38, + ACTIONS(1608), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101770,11 +99822,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33774] = 3, + [34316] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1104), 7, + ACTIONS(1602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101782,7 +99834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1106), 38, + ACTIONS(1604), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101821,11 +99873,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33828] = 3, + [34370] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(312), 15, + ACTIONS(2972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -101841,7 +99893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(310), 30, + ACTIONS(2970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -101872,11 +99924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33882] = 3, + [34424] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1594), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101884,7 +99936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1596), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101923,11 +99975,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33936] = 3, + [34478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1598), 7, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101935,7 +99987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1600), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -101974,11 +100026,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33990] = 3, + [34532] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -101986,7 +100038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(616), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102025,11 +100077,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34044] = 3, + [34586] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1602), 7, + ACTIONS(1534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102037,7 +100089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1604), 38, + ACTIONS(1536), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102076,11 +100128,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34098] = 3, + [34640] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1622), 7, + ACTIONS(1056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102088,7 +100140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1624), 38, + ACTIONS(1058), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102127,11 +100179,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34152] = 3, + [34694] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1764), 7, + ACTIONS(1506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -102139,7 +100191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1766), 38, + ACTIONS(1508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102178,99 +100230,61 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [34206] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2397), 15, - anon_sym_PLUS, - anon_sym_STAR, + [34748] = 18, + ACTIONS(288), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(2399), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34260] = 4, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2986), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2978), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2620), 29, + ACTIONS(2998), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(282), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102281,69 +100295,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34316] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1652), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1654), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34370] = 3, + [34831] = 7, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2988), 1, + anon_sym_DOT_DOT, + ACTIONS(3002), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2972), 15, + ACTIONS(2986), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3006), 13, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, @@ -102351,22 +100322,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2970), 30, + ACTIONS(3004), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -102383,121 +100349,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34424] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1664), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, + [34892] = 4, + ACTIONS(3012), 1, anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1666), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34478] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1668), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1670), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34532] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(438), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3010), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_POUND, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(440), 38, + ACTIONS(3008), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102515,40 +100388,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [34586] = 3, + [34947] = 7, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2988), 1, + anon_sym_DOT_DOT, + ACTIONS(3002), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1676), 7, + ACTIONS(2986), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3016), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3014), 26, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3020), 12, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, sym_metavariable, - ACTIONS(1678), 38, + ACTIONS(3018), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102569,37 +100492,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34640] = 3, + [35061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1720), 7, + ACTIONS(3024), 12, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, + anon_sym_AMP, sym_metavariable, - ACTIONS(1722), 38, + ACTIONS(3022), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -102620,59 +100542,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [34694] = 3, + [35114] = 9, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2988), 1, + anon_sym_DOT_DOT, + ACTIONS(3002), 1, + anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(444), 15, - anon_sym_PLUS, + ACTIONS(2986), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 10, + anon_sym_PLUS, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(442), 30, + ACTIONS(3026), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -102689,42 +100610,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34748] = 14, - ACTIONS(2976), 1, + [35179] = 8, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2980), 3, + ACTIONS(3028), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2984), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2974), 25, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102750,39 +100665,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34823] = 11, - ACTIONS(2976), 1, + [35242] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2990), 1, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, + ACTIONS(3032), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2974), 25, + ACTIONS(2998), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3030), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102792,12 +100720,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102808,34 +100730,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34892] = 7, - ACTIONS(2976), 1, + [35325] = 14, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2990), 1, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3002), 13, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2986), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2978), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3000), 26, + ACTIONS(3028), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3026), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102843,7 +100773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, anon_sym_else, anon_sym_AMP_AMP, @@ -102862,120 +100791,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34953] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(870), 1, - anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - sym_identifier, - ACTIONS(3008), 1, - anon_sym_LPAREN, - ACTIONS(3010), 1, - anon_sym_STAR, - ACTIONS(3016), 1, - anon_sym_for, - ACTIONS(3018), 1, - anon_sym_AMP, - ACTIONS(3020), 1, - sym_metavariable, - STATE(1788), 1, - sym_scoped_type_identifier, - STATE(1887), 1, - sym_generic_type, - STATE(1953), 1, - sym_where_predicate, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2404), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3006), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3014), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(2296), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3012), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [35042] = 18, - ACTIONS(2976), 1, + [35400] = 11, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3024), 1, - anon_sym_EQ, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3022), 19, + ACTIONS(3028), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3026), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -102985,6 +100833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -102995,220 +100849,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35125] = 21, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(870), 1, - anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - sym_identifier, - ACTIONS(3008), 1, - anon_sym_LPAREN, - ACTIONS(3010), 1, - anon_sym_STAR, - ACTIONS(3016), 1, - anon_sym_for, - ACTIONS(3018), 1, - anon_sym_AMP, - ACTIONS(3020), 1, - sym_metavariable, - STATE(1788), 1, - sym_scoped_type_identifier, - STATE(1887), 1, - sym_generic_type, - STATE(1953), 1, - sym_where_predicate, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2404), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3014), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3034), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(2296), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3012), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [35214] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3038), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3036), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35267] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3042), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3040), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35320] = 18, - ACTIONS(2976), 1, + [35469] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3046), 1, + ACTIONS(3036), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3044), 19, + ACTIONS(3034), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103228,103 +100914,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35403] = 4, - ACTIONS(3052), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3050), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3048), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [35458] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2976), 1, + [35552] = 7, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3040), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2980), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3032), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(282), 19, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103332,8 +100949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103344,11 +100968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35541] = 3, + [35613] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3056), 12, + ACTIONS(3044), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103361,7 +100985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3054), 32, + ACTIONS(3042), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103394,38 +101018,52 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35594] = 10, - ACTIONS(2976), 1, + [35666] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2990), 1, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, + ACTIONS(3048), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 8, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2974), 25, + ACTIONS(2998), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3046), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103435,12 +101073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103451,11 +101083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35661] = 3, + [35749] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3060), 12, + ACTIONS(3052), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -103468,7 +101100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3058), 32, + ACTIONS(3050), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -103501,34 +101133,50 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [35714] = 7, - ACTIONS(2976), 1, + [35802] = 17, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2990), 1, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, + ACTIONS(3028), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3064), 13, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2986), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2978), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3062), 26, + ACTIONS(2998), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3026), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103536,15 +101184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103555,40 +101197,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35775] = 12, - ACTIONS(2976), 1, + [35883] = 13, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 5, + ACTIONS(3028), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2974), 25, + ACTIONS(3026), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103614,41 +101257,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35846] = 13, - ACTIONS(2976), 1, + [35956] = 12, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 4, + ACTIONS(3028), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - ACTIONS(2974), 25, + anon_sym_CARET, + ACTIONS(3026), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103674,117 +101316,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35919] = 20, - ACTIONS(2976), 1, + [36027] = 10, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3066), 8, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3072), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36006] = 17, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, + ACTIONS(3028), 8, anon_sym_EQ, - ACTIONS(2986), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, anon_sym_PIPE, - ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3032), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2974), 20, + ACTIONS(3026), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103794,70 +101357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36087] = 16, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2984), 1, - anon_sym_EQ, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3032), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2974), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -103868,52 +101373,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36166] = 18, - ACTIONS(2976), 1, + [36094] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3076), 1, + ACTIONS(3056), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3074), 19, + ACTIONS(3054), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -103933,112 +101438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36249] = 4, - ACTIONS(3082), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3080), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3078), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36304] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3086), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(3084), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36357] = 3, + [36177] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3090), 12, + ACTIONS(3060), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -104051,7 +101455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3088), 32, + ACTIONS(3058), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104084,52 +101488,48 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [36410] = 18, - ACTIONS(2976), 1, + [36230] = 16, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2992), 1, - anon_sym_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3094), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3092), 19, + ACTIONS(3026), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104139,6 +101539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104149,26 +101551,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36493] = 5, - ACTIONS(3096), 1, - anon_sym_POUND, + [36309] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2457), 9, + ACTIONS(3064), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2455), 32, + ACTIONS(3062), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104192,61 +101592,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_pub, anon_sym_union, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [36550] = 18, - ACTIONS(2976), 1, + [36362] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3101), 1, + ACTIONS(3068), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 19, + ACTIONS(3066), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104266,108 +101666,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36633] = 7, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2998), 1, - anon_sym_DOT, + [36445] = 4, + ACTIONS(3074), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3072), 14, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3103), 26, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3070), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36500] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(862), 1, + anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3076), 1, + sym_identifier, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + anon_sym_STAR, + ACTIONS(3088), 1, + anon_sym_for, + ACTIONS(3090), 1, + anon_sym_AMP, + ACTIONS(3092), 1, + sym_metavariable, + STATE(1820), 1, + sym_scoped_type_identifier, + STATE(1889), 1, + sym_where_predicate, + STATE(1902), 1, + sym_generic_type, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3078), 2, anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3086), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + STATE(2179), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3084), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [36589] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(862), 1, + anon_sym_COLON_COLON, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3076), 1, + sym_identifier, + ACTIONS(3080), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36694] = 20, - ACTIONS(2976), 1, + ACTIONS(3082), 1, + anon_sym_STAR, + ACTIONS(3088), 1, + anon_sym_for, + ACTIONS(3090), 1, + anon_sym_AMP, + ACTIONS(3092), 1, + sym_metavariable, + STATE(1820), 1, + sym_scoped_type_identifier, + STATE(1889), 1, + sym_where_predicate, + STATE(1902), 1, + sym_generic_type, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3086), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3094), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + STATE(2179), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3084), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [36678] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_DOT_DOT, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2988), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2986), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2996), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3107), 8, + ACTIONS(3096), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104376,7 +101909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_COMMA, anon_sym_else, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104387,107 +101920,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36781] = 8, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2990), 1, - anon_sym_DOT_DOT, - ACTIONS(2998), 1, - anon_sym_DOT, + [36765] = 5, + ACTIONS(3104), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 13, - anon_sym_PLUS, + STATE(1157), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2493), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, anon_sym_LT, - anon_sym_GT, + anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2974), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36844] = 9, - ACTIONS(2976), 1, + sym_metavariable, + ACTIONS(2491), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [36822] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2990), 1, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2988), 1, anon_sym_DOT_DOT, - ACTIONS(2998), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2988), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2984), 10, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2986), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 25, + ACTIONS(2978), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2998), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3107), 8, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_COMMA, anon_sym_else, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104502,56 +102043,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3050), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3048), 29, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36961] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3080), 14, + ACTIONS(3010), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -104566,7 +102058,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3078), 29, + ACTIONS(3008), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104596,19 +102088,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [37013] = 7, - ACTIONS(2590), 1, + [36961] = 7, + ACTIONS(2570), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2572), 1, anon_sym_COLON_COLON, ACTIONS(3109), 1, anon_sym_BANG, - STATE(1121), 1, + STATE(922), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -104624,7 +102116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 24, + ACTIONS(428), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -104649,87 +102141,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37073] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(870), 1, - anon_sym_COLON_COLON, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3004), 1, - sym_identifier, - ACTIONS(3008), 1, - anon_sym_LPAREN, - ACTIONS(3010), 1, - anon_sym_STAR, - ACTIONS(3016), 1, - anon_sym_for, - ACTIONS(3018), 1, - anon_sym_AMP, - ACTIONS(3020), 1, - sym_metavariable, - STATE(1788), 1, - sym_scoped_type_identifier, - STATE(1790), 1, - sym_where_predicate, - STATE(1887), 1, - sym_generic_type, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2404), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3014), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(876), 3, - sym_self, - sym_super, - sym_crate, - STATE(2296), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3012), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [37158] = 3, + [37021] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1344), 10, + ACTIONS(3072), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, anon_sym_POUND, - anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1346), 32, + ACTIONS(3070), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104747,31 +102178,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [37209] = 21, + [37073] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(672), 1, anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(2478), 1, + ACTIONS(2471), 1, anon_sym_fn, - ACTIONS(2486), 1, + ACTIONS(2479), 1, anon_sym_COLON_COLON, ACTIONS(3111), 1, sym_identifier, @@ -104779,33 +102207,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, ACTIONS(3117), 1, sym_metavariable, - STATE(757), 1, + STATE(760), 1, sym_scoped_type_identifier, - STATE(786), 1, + STATE(805), 1, sym_generic_type, - STATE(1002), 1, + STATE(830), 1, sym_function_type, - STATE(1195), 1, + STATE(1197), 1, sym_for_lifetimes, - STATE(2386), 1, + STATE(2396), 1, sym_function_modifiers, - STATE(2411), 1, + STATE(2421), 1, sym_scoped_identifier, - STATE(2491), 1, + STATE(2501), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2502), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(2487), 3, sym_self, sym_super, sym_crate, @@ -104828,54 +102256,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37296] = 21, + [37160] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(2478), 1, - anon_sym_fn, - ACTIONS(2486), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(3115), 1, - anon_sym_default, - ACTIONS(3117), 1, - sym_metavariable, - ACTIONS(3119), 1, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3076), 1, sym_identifier, - STATE(759), 1, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + anon_sym_STAR, + ACTIONS(3088), 1, + anon_sym_for, + ACTIONS(3090), 1, + anon_sym_AMP, + ACTIONS(3092), 1, + sym_metavariable, + STATE(1796), 1, + sym_where_predicate, + STATE(1820), 1, sym_scoped_type_identifier, - STATE(805), 1, + STATE(1902), 1, sym_generic_type, - STATE(1012), 1, - sym_function_type, - STATE(1195), 1, - sym_for_lifetimes, - STATE(2386), 1, - sym_function_modifiers, - STATE(2411), 1, - sym_scoped_identifier, - STATE(2491), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2492), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(2494), 3, + ACTIONS(3086), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - ACTIONS(3113), 18, + STATE(2179), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3084), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -104893,106 +102321,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_union, - [37383] = 6, - ACTIONS(2626), 1, - anon_sym_BANG, - ACTIONS(2628), 1, - anon_sym_COLON_COLON, - ACTIONS(3121), 1, - sym_identifier, + [37245] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2620), 23, - anon_sym_SEMI, + ACTIONS(1156), 10, anon_sym_LPAREN, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37440] = 21, - ACTIONS(77), 1, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, anon_sym_LT, - ACTIONS(670), 1, - anon_sym_fn, - ACTIONS(672), 1, - anon_sym_for, - ACTIONS(684), 1, - anon_sym_extern, - ACTIONS(870), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + anon_sym_AMP, sym_metavariable, - ACTIONS(3123), 1, - sym_identifier, - ACTIONS(3125), 1, - anon_sym_default, - STATE(1196), 1, - sym_for_lifetimes, - STATE(1327), 1, - sym_scoped_type_identifier, - STATE(1355), 1, - sym_generic_type, - STATE(1384), 1, - sym_function_type, - STATE(2378), 1, - sym_bracketed_type, - STATE(2379), 1, - sym_generic_type_with_turbofish, - STATE(2404), 1, - sym_scoped_identifier, - STATE(2472), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1526), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(664), 3, + ACTIONS(1158), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, anon_sym_unsafe, - ACTIONS(876), 3, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, sym_self, sym_super, sym_crate, - ACTIONS(3014), 18, + [37296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2782), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(2784), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105010,55 +102402,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [37527] = 20, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [37347] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3004), 1, + ACTIONS(3076), 1, sym_identifier, - ACTIONS(3008), 1, + ACTIONS(3080), 1, anon_sym_LPAREN, - ACTIONS(3010), 1, + ACTIONS(3082), 1, anon_sym_STAR, - ACTIONS(3016), 1, + ACTIONS(3088), 1, anon_sym_for, - ACTIONS(3018), 1, + ACTIONS(3090), 1, anon_sym_AMP, - ACTIONS(3020), 1, + ACTIONS(3092), 1, sym_metavariable, - STATE(1788), 1, + STATE(1820), 1, sym_scoped_type_identifier, - STATE(1887), 1, - sym_generic_type, - STATE(1953), 1, + STATE(1889), 1, sym_where_predicate, - STATE(2378), 1, + STATE(1902), 1, + sym_generic_type, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, STATE(2404), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3014), 2, + ACTIONS(3086), 2, anon_sym_default, anon_sym_union, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - STATE(2296), 5, + STATE(2179), 5, sym_higher_ranked_trait_bound, sym_lifetime, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3012), 17, + ACTIONS(3084), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105076,7 +102482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37612] = 21, + [37432] = 21, ACTIONS(77), 1, anon_sym_LT, ACTIONS(670), 1, @@ -105085,45 +102491,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + ACTIONS(3092), 1, sym_metavariable, - ACTIONS(3125), 1, - anon_sym_default, - ACTIONS(3127), 1, + ACTIONS(3119), 1, sym_identifier, + ACTIONS(3121), 1, + anon_sym_default, STATE(1196), 1, sym_for_lifetimes, - STATE(1329), 1, + STATE(1328), 1, sym_scoped_type_identifier, - STATE(1362), 1, + STATE(1365), 1, sym_generic_type, - STATE(1401), 1, + STATE(1398), 1, sym_function_type, - STATE(2378), 1, + STATE(2322), 1, + sym_function_modifiers, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, STATE(2404), 1, sym_scoped_identifier, - STATE(2472), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - ACTIONS(3014), 18, + ACTIONS(3086), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105142,22 +102548,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [37699] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2892), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [37519] = 21, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(670), 1, + anon_sym_fn, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(862), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3092), 1, sym_metavariable, - ACTIONS(2894), 32, + ACTIONS(3121), 1, + anon_sym_default, + ACTIONS(3123), 1, + sym_identifier, + STATE(1196), 1, + sym_for_lifetimes, + STATE(1330), 1, + sym_scoped_type_identifier, + STATE(1360), 1, + sym_generic_type, + STATE(1399), 1, + sym_function_type, + STATE(2322), 1, + sym_function_modifiers, + STATE(2388), 1, + sym_bracketed_type, + STATE(2389), 1, + sym_generic_type_with_turbofish, + STATE(2404), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1561), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(868), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3086), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105175,34 +102613,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_mutable_specifier, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [37750] = 6, - ACTIONS(2556), 1, + [37606] = 6, + ACTIONS(2636), 1, anon_sym_BANG, - ACTIONS(3129), 1, + ACTIONS(2638), 1, anon_sym_COLON_COLON, - STATE(1121), 1, - sym_field_initializer_list, + ACTIONS(3125), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2632), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -105216,12 +102641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 23, + ACTIONS(2630), 23, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -105240,15 +102665,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37806] = 5, - ACTIONS(2696), 1, + [37663] = 21, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(672), 1, + anon_sym_for, + ACTIONS(684), 1, + anon_sym_extern, + ACTIONS(2471), 1, + anon_sym_fn, + ACTIONS(2479), 1, + anon_sym_COLON_COLON, + ACTIONS(3115), 1, + anon_sym_default, + ACTIONS(3117), 1, + sym_metavariable, + ACTIONS(3127), 1, + sym_identifier, + STATE(756), 1, + sym_scoped_type_identifier, + STATE(778), 1, + sym_generic_type, + STATE(812), 1, + sym_function_type, + STATE(1197), 1, + sym_for_lifetimes, + STATE(2396), 1, + sym_function_modifiers, + STATE(2421), 1, + sym_scoped_identifier, + STATE(2501), 1, + sym_bracketed_type, + STATE(2502), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1561), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(664), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(2487), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3113), 18, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_union, + [37750] = 5, + ACTIONS(2668), 1, anon_sym_COLON_COLON, ACTIONS(3109), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105264,7 +102755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 24, + ACTIONS(428), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RBRACE, @@ -105289,38 +102780,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37860] = 16, + [37804] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_DASH, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3131), 1, + ACTIONS(3129), 1, sym_identifier, - ACTIONS(3137), 1, + ACTIONS(3135), 1, sym_metavariable, - STATE(1410), 1, + STATE(1414), 1, sym_scoped_identifier, - STATE(1425), 1, + STATE(1461), 1, sym__literal_pattern, - STATE(2369), 1, - sym_bracketed_type, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, + STATE(2379), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(708), 2, anon_sym_true, anon_sym_false, - ACTIONS(3135), 3, + ACTIONS(3133), 3, sym_self, sym_super, sym_crate, - STATE(1397), 3, + STATE(1391), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -105329,7 +102820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3133), 19, + ACTIONS(3131), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105349,38 +102840,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [37936] = 16, + [37880] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(702), 1, anon_sym_DASH, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, - ACTIONS(3139), 1, + ACTIONS(3137), 1, sym_identifier, - ACTIONS(3145), 1, + ACTIONS(3143), 1, sym_metavariable, - STATE(1413), 1, + STATE(1411), 1, sym_scoped_identifier, - STATE(1447), 1, + STATE(1419), 1, sym__literal_pattern, - STATE(2369), 1, - sym_bracketed_type, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, + STATE(2379), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(708), 2, anon_sym_true, anon_sym_false, - ACTIONS(3143), 3, + ACTIONS(3141), 3, sym_self, sym_super, sym_crate, - STATE(1397), 3, + STATE(1391), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, @@ -105389,7 +102880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3141), 19, + ACTIONS(3139), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105409,129 +102900,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [38012] = 23, - ACTIONS(624), 1, - anon_sym_RBRACK, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3147), 1, - anon_sym_SEMI, - ACTIONS(3149), 1, - anon_sym_COMMA, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - STATE(1868), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3032), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3072), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38101] = 5, + [37956] = 6, ACTIONS(2556), 1, anon_sym_BANG, - ACTIONS(3155), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(460), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(458), 23, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38154] = 5, - ACTIONS(2664), 1, - anon_sym_BANG, - ACTIONS(3157), 1, + ACTIONS(3145), 1, anon_sym_COLON_COLON, + STATE(922), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -105547,7 +102926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 23, + ACTIONS(428), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -105571,22 +102950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38207] = 4, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, + [38012] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 8, + ACTIONS(3149), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3159), 31, + ACTIONS(3147), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105618,11 +102996,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38258] = 3, + [38061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3060), 9, + ACTIONS(3020), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -105632,7 +103010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3058), 31, + ACTIONS(3018), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105664,11 +103042,153 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38307] = 3, + [38110] = 5, + ACTIONS(2666), 1, + anon_sym_BANG, + ACTIONS(3151), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2632), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2630), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2590), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2592), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38212] = 5, + ACTIONS(2556), 1, + anon_sym_BANG, + ACTIONS(3153), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(430), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(428), 23, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38265] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3167), 9, + ACTIONS(3157), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -105678,7 +103198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3165), 31, + ACTIONS(3155), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105710,11 +103230,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38356] = 3, + [38314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2614), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2616), 24, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38363] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 16, + ACTIONS(2582), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -105731,7 +103297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2608), 24, + ACTIONS(2584), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -105756,62 +103322,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38405] = 23, - ACTIONS(374), 1, + [38412] = 23, + ACTIONS(378), 1, anon_sym_RBRACK, - ACTIONS(2976), 1, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3169), 1, + ACTIONS(3159), 1, anon_sym_SEMI, - ACTIONS(3171), 1, + ACTIONS(3161), 1, anon_sym_COMMA, - STATE(1974), 1, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + STATE(1949), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -105822,22 +103388,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38494] = 4, - ACTIONS(3173), 1, - anon_sym_LPAREN, + [38501] = 4, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 8, + ACTIONS(3169), 8, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3159), 31, + ACTIONS(3167), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105869,12 +103435,79 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38545] = 3, + [38552] = 23, + ACTIONS(626), 1, + anon_sym_RBRACK, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3173), 1, + anon_sym_SEMI, + ACTIONS(3175), 1, + anon_sym_COMMA, + STATE(2094), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3177), 9, + ACTIONS(2976), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2998), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3102), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38641] = 4, + ACTIONS(3177), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3169), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -105883,7 +103516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3175), 31, + ACTIONS(3167), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -105915,7 +103548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38594] = 3, + [38692] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -105961,57 +103594,11 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38643] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2614), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2616), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38692] = 3, + [38741] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 16, + ACTIONS(2598), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -106028,7 +103615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2584), 24, + ACTIONS(2600), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106053,11 +103640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38741] = 3, + [38790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3042), 9, + ACTIONS(3052), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -106067,7 +103654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3040), 31, + ACTIONS(3050), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106099,42 +103686,60 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [38790] = 3, + [38839] = 22, + ACTIONS(396), 1, + anon_sym_RPAREN, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3183), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 16, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2576), 24, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COLON_COLON, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2978), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106145,13 +103750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38839] = 4, - ACTIONS(2700), 1, + [38925] = 4, + ACTIONS(2696), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, + ACTIONS(2678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106167,7 +103772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 23, + ACTIONS(2674), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106191,13 +103796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38889] = 4, - ACTIONS(2712), 1, + [38975] = 4, + ACTIONS(3151), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2702), 15, + ACTIONS(2632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106213,7 +103818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2698), 23, + ACTIONS(2630), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106237,13 +103842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38939] = 4, - ACTIONS(3183), 1, + [39025] = 4, + ACTIONS(2676), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(460), 15, + ACTIONS(2678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106259,7 +103864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(458), 23, + ACTIONS(2674), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106283,60 +103888,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38989] = 22, - ACTIONS(396), 1, - anon_sym_RPAREN, - ACTIONS(2976), 1, + [39075] = 22, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3185), 1, + anon_sym_RPAREN, + ACTIONS(3187), 1, anon_sym_COMMA, - STATE(1976), 1, + STATE(2012), 1, aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106347,13 +103952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39075] = 4, - ACTIONS(3157), 1, + [39161] = 4, + ACTIONS(3189), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2622), 15, + ACTIONS(430), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -106369,7 +103974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2620), 23, + ACTIONS(428), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -106393,48 +103998,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39125] = 18, + [39211] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + ACTIONS(3092), 1, sym_metavariable, - ACTIONS(3125), 1, + ACTIONS(3121), 1, anon_sym_default, - ACTIONS(3187), 1, + ACTIONS(3191), 1, sym_identifier, - ACTIONS(3189), 1, + ACTIONS(3193), 1, anon_sym_fn, - STATE(1818), 1, + STATE(1771), 1, sym_scoped_type_identifier, - STATE(2378), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, + STATE(2402), 1, + sym_generic_type, STATE(2404), 1, sym_scoped_identifier, - STATE(2413), 1, + STATE(2425), 1, sym_function_modifiers, - STATE(2488), 1, - sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - ACTIONS(3014), 18, + ACTIONS(3086), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106453,48 +104058,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39203] = 18, + [39289] = 18, ACTIONS(77), 1, anon_sym_LT, ACTIONS(684), 1, anon_sym_extern, - ACTIONS(870), 1, + ACTIONS(862), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + ACTIONS(3092), 1, sym_metavariable, - ACTIONS(3125), 1, + ACTIONS(3121), 1, anon_sym_default, - ACTIONS(3191), 1, + ACTIONS(3195), 1, sym_identifier, - ACTIONS(3193), 1, + ACTIONS(3197), 1, anon_sym_fn, - STATE(1792), 1, + STATE(1797), 1, sym_scoped_type_identifier, - STATE(2378), 1, + STATE(2388), 1, sym_bracketed_type, - STATE(2379), 1, + STATE(2389), 1, sym_generic_type_with_turbofish, - STATE(2394), 1, - sym_function_modifiers, + STATE(2402), 1, + sym_generic_type, STATE(2404), 1, sym_scoped_identifier, - STATE(2488), 1, - sym_generic_type, + STATE(2423), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1526), 2, + STATE(1561), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(664), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(876), 3, + ACTIONS(868), 3, sym_self, sym_super, sym_crate, - ACTIONS(3014), 18, + ACTIONS(3086), 18, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -106513,60 +104118,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, anon_sym_union, - [39281] = 22, - ACTIONS(2976), 1, + [39367] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3195), 1, - anon_sym_RPAREN, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(2096), 1, - aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3199), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106577,55 +104179,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39367] = 18, - ACTIONS(2976), 1, + [39448] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3046), 1, - anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3201), 1, + anon_sym_RPAREN, + ACTIONS(3203), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3044), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106636,58 +104241,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39444] = 21, - ACTIONS(2976), 1, + [39531] = 21, + ACTIONS(482), 1, + anon_sym_RPAREN, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3223), 1, - anon_sym_SEMI, - ACTIONS(3225), 1, - anon_sym_else, + ACTIONS(3205), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106698,44 +104303,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39527] = 7, - ACTIONS(2976), 1, + [39614] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2998), 1, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3105), 13, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3207), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2978), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3103), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106746,58 +104364,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39582] = 21, - ACTIONS(284), 1, + [39695] = 21, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2976), 1, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3213), 1, + anon_sym_EQ, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, - anon_sym_DOT_DOT, - STATE(1127), 1, + STATE(75), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106808,58 +104426,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39665] = 21, - ACTIONS(2976), 1, + [39778] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3235), 1, - anon_sym_SEMI, ACTIONS(3237), 1, + anon_sym_SEMI, + ACTIONS(3239), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106870,107 +104488,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39748] = 8, - ACTIONS(2976), 1, + [39861] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2984), 13, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2984), 1, anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2974), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39805] = 21, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3239), 1, - anon_sym_SEMI, ACTIONS(3241), 1, - anon_sym_else, + anon_sym_SEMI, + ACTIONS(3243), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -106981,52 +104550,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39888] = 18, - ACTIONS(2976), 1, + [39944] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3101), 1, + ACTIONS(3068), 1, anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3099), 13, + ACTIONS(3066), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -107040,58 +104609,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39965] = 21, - ACTIONS(2976), 1, + [40021] = 10, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3245), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3028), 8, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107102,94 +104660,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40048] = 15, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3247), 1, - sym_identifier, - ACTIONS(3249), 1, - anon_sym_LBRACE, - ACTIONS(3251), 1, - anon_sym_RBRACE, - ACTIONS(3253), 1, - anon_sym_STAR, - ACTIONS(3257), 1, - anon_sym_COMMA, - ACTIONS(3259), 1, - anon_sym_COLON_COLON, - ACTIONS(3263), 1, - sym_metavariable, - STATE(1749), 1, - sym_scoped_identifier, - STATE(2457), 1, - sym_generic_type_with_turbofish, - STATE(2527), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3261), 3, - sym_self, - sym_super, - sym_crate, - STATE(1951), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3255), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [40119] = 7, - ACTIONS(2976), 1, + [40082] = 12, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2998), 1, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, + ACTIONS(3209), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3002), 13, - anon_sym_PLUS, + ACTIONS(3211), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3028), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3000), 20, + ACTIONS(3026), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -107206,58 +104713,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40174] = 21, - ACTIONS(2976), 1, + [40147] = 13, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3265), 1, - anon_sym_SEMI, - ACTIONS(3267), 1, - anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3028), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(3026), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107268,58 +104767,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40257] = 21, - ACTIONS(2976), 1, + [40214] = 17, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3028), 1, + anon_sym_EQ, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3269), 1, - anon_sym_LBRACE, - STATE(60), 1, - sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3026), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107330,58 +104825,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40340] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [40289] = 16, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3028), 1, + anon_sym_EQ, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3211), 1, - anon_sym_AMP_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - STATE(69), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3026), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107392,57 +104882,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40423] = 20, - ACTIONS(2976), 1, + [40362] = 11, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3271), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3028), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3026), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107453,58 +104934,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40504] = 21, - ACTIONS(270), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [40425] = 14, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(2992), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(2994), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3028), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3026), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107515,58 +104989,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40587] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [40494] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3032), 1, + anon_sym_EQ, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - STATE(229), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3030), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107577,58 +105048,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40670] = 21, - ACTIONS(2976), 1, + [40571] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3273), 1, + ACTIONS(3249), 1, anon_sym_RBRACE, - ACTIONS(3275), 1, + ACTIONS(3251), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107639,58 +105110,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40753] = 21, - ACTIONS(272), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [40654] = 9, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3028), 10, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3026), 19, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107701,58 +105160,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40836] = 21, - ACTIONS(2976), 1, + [40713] = 21, + ACTIONS(107), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3277), 1, - anon_sym_LBRACE, - STATE(985), 1, - sym_match_block, + ACTIONS(3241), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107763,57 +105222,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40919] = 20, - ACTIONS(2976), 1, + [40796] = 7, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3245), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3006), 13, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, anon_sym_DASH, - ACTIONS(2996), 2, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3279), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3004), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107824,58 +105270,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41000] = 21, - ACTIONS(2976), 1, + [40851] = 18, + ACTIONS(288), 1, + anon_sym_EQ, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3281), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(282), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107886,58 +105329,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41083] = 21, - ACTIONS(2976), 1, + [40928] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3283), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3096), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -107948,55 +105390,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41166] = 18, - ACTIONS(2976), 1, + [41009] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3076), 1, - anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3253), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3074), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108007,58 +105451,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41243] = 21, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [41090] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3213), 1, + anon_sym_EQ, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, - anon_sym_DOT_DOT, - STATE(224), 1, - sym_block, + ACTIONS(3255), 1, + anon_sym_LBRACE, + STATE(1014), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108069,57 +105513,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41326] = 20, - ACTIONS(2976), 1, + [41173] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3036), 1, + anon_sym_EQ, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3285), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3034), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108130,41 +105572,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41407] = 10, - ACTIONS(2976), 1, + [41250] = 7, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3207), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3040), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2984), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 19, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3038), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -108181,57 +105620,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41468] = 20, - ACTIONS(2976), 1, + [41305] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3048), 1, + anon_sym_EQ, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3287), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3046), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108242,58 +105679,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41549] = 21, - ACTIONS(2976), 1, + [41382] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3289), 1, - anon_sym_RPAREN, - ACTIONS(3291), 1, - anon_sym_COMMA, + ACTIONS(3241), 1, + anon_sym_SEMI, + ACTIONS(3257), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108304,57 +105741,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41632] = 20, - ACTIONS(2976), 1, + [41465] = 21, + ACTIONS(504), 1, + anon_sym_RPAREN, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3205), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3293), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108365,58 +105803,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41713] = 21, - ACTIONS(107), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [41548] = 18, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3056), 1, + anon_sym_EQ, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3054), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108427,58 +105862,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41796] = 21, - ACTIONS(2976), 1, + [41625] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3295), 1, - anon_sym_RBRACE, - ACTIONS(3297), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3107), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108489,120 +105923,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41879] = 21, - ACTIONS(274), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [41706] = 7, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3016), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3032), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3072), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41962] = 21, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2982), 1, - anon_sym_as, - ACTIONS(2986), 1, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2992), 1, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2994), 1, anon_sym_CARET, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3070), 1, - anon_sym_EQ, - ACTIONS(3153), 1, - anon_sym_DOT_DOT, - ACTIONS(3299), 1, - anon_sym_SEMI, - ACTIONS(3301), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2978), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2996), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3026), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3151), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3014), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108613,40 +105971,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42045] = 12, - ACTIONS(2976), 1, + [41761] = 8, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3205), 1, - anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3247), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3207), 2, + ACTIONS(3245), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3028), 13, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2984), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2974), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3026), 19, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, @@ -108666,58 +106020,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42110] = 21, - ACTIONS(2976), 1, + [41818] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3303), 1, + ACTIONS(3259), 1, anon_sym_SEMI, - ACTIONS(3305), 1, + ACTIONS(3261), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108728,58 +106082,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42193] = 21, - ACTIONS(594), 1, - anon_sym_RPAREN, - ACTIONS(2976), 1, + [41901] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_COMMA, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + STATE(903), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108790,50 +106144,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42276] = 13, - ACTIONS(2976), 1, + [41984] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3217), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3263), 1, + anon_sym_SEMI, + ACTIONS(3265), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - ACTIONS(2974), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108844,54 +106206,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42343] = 17, - ACTIONS(2976), 1, + [42067] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, ACTIONS(2984), 1, - anon_sym_EQ, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3205), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3215), 1, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3267), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2974), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108902,58 +106267,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42418] = 21, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [42148] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - STATE(870), 1, - sym_block, + ACTIONS(3269), 1, + anon_sym_SEMI, + ACTIONS(3271), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -108964,55 +106329,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42501] = 18, - ACTIONS(288), 1, - anon_sym_EQ, - ACTIONS(2976), 1, + [42231] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3273), 1, + anon_sym_SEMI, + ACTIONS(3275), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(282), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109023,58 +106391,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42578] = 21, - ACTIONS(2976), 1, + [42314] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3277), 1, anon_sym_SEMI, - ACTIONS(3309), 1, - anon_sym_RBRACE, + ACTIONS(3279), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109085,53 +106453,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42661] = 16, - ACTIONS(2976), 1, + [42397] = 21, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2984), 1, - anon_sym_EQ, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3213), 1, + anon_sym_EQ, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3215), 1, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, + STATE(1101), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2974), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109142,48 +106515,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42734] = 11, - ACTIONS(2976), 1, + [42480] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3281), 1, + anon_sym_SEMI, + ACTIONS(3283), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2984), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2974), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109194,58 +106577,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42797] = 21, - ACTIONS(2976), 1, + [42563] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3311), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3285), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109256,58 +106638,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42880] = 21, - ACTIONS(612), 1, - anon_sym_RPAREN, - ACTIONS(2976), 1, + [42644] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3287), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109318,51 +106699,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42963] = 14, - ACTIONS(2976), 1, + [42725] = 21, + ACTIONS(274), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3215), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2984), 3, - anon_sym_EQ, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3201), 3, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2974), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109373,58 +106761,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43032] = 21, - ACTIONS(2976), 1, + [42808] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_COMMA, - ACTIONS(3313), 1, - anon_sym_RPAREN, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3289), 1, + anon_sym_LBRACE, + STATE(225), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109435,58 +106823,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43115] = 21, - ACTIONS(2976), 1, + [42891] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3315), 1, + ACTIONS(3241), 1, anon_sym_SEMI, - ACTIONS(3317), 1, - anon_sym_else, + ACTIONS(3291), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109497,55 +106885,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43198] = 18, - ACTIONS(2976), 1, + [42974] = 15, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3293), 1, + sym_identifier, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3297), 1, + anon_sym_RBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3303), 1, + anon_sym_COMMA, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + sym_metavariable, + STATE(1725), 1, + sym_scoped_identifier, + STATE(2345), 1, + sym_generic_type_with_turbofish, + STATE(2474), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3307), 3, + sym_self, + sym_super, + sym_crate, + STATE(1933), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3301), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [43045] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3094), 1, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3209), 1, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, + STATE(228), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3233), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3092), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109556,58 +107003,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43275] = 21, - ACTIONS(2976), 1, + [43128] = 21, + ACTIONS(632), 1, + anon_sym_LBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(3213), 1, + anon_sym_EQ, + ACTIONS(3217), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(3221), 1, + anon_sym_DOT_DOT, + ACTIONS(3223), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(3225), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(3227), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(3229), 1, anon_sym_CARET, - ACTIONS(3227), 1, - anon_sym_EQ, - ACTIONS(3231), 1, - anon_sym_DOT_DOT, - ACTIONS(3319), 1, - anon_sym_LBRACE, - STATE(215), 1, - sym_match_block, + STATE(230), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109618,46 +107065,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43358] = 9, - ACTIONS(2976), 1, + [43211] = 21, + ACTIONS(258), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2984), 10, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2974), 19, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109668,57 +107127,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43417] = 20, - ACTIONS(2976), 1, + [43294] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, + ACTIONS(3311), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3321), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109729,58 +107189,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43498] = 21, - ACTIONS(2976), 1, + [43377] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3323), 1, - anon_sym_SEMI, - ACTIONS(3325), 1, - anon_sym_else, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3313), 1, + anon_sym_LBRACE, + STATE(74), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109791,57 +107251,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43581] = 20, - ACTIONS(2976), 1, + [43460] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3327), 2, - anon_sym_RBRACE, + ACTIONS(3315), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109852,44 +107312,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43662] = 7, - ACTIONS(2976), 1, + [43541] = 21, + ACTIONS(268), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2998), 1, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3209), 1, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3064), 13, + ACTIONS(2976), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3062), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109900,57 +107374,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43717] = 20, - ACTIONS(2976), 1, + [43624] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, + ACTIONS(3317), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3329), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -109961,57 +107436,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43798] = 20, - ACTIONS(2976), 1, + [43707] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3205), 1, + anon_sym_COMMA, + ACTIONS(3319), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3331), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110022,57 +107498,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43879] = 20, - ACTIONS(2976), 1, + [43790] = 21, + ACTIONS(276), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3066), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110083,58 +107560,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43960] = 21, - ACTIONS(2976), 1, + [43873] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, - ACTIONS(3333), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3321), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110145,57 +107621,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44043] = 20, - ACTIONS(2976), 1, + [43954] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3241), 1, + anon_sym_SEMI, + ACTIONS(3323), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3335), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110206,58 +107683,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44124] = 21, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2976), 1, + [44037] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - STATE(65), 1, - sym_block, + ACTIONS(3325), 1, + anon_sym_RBRACE, + ACTIONS(3327), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110268,58 +107745,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44207] = 21, - ACTIONS(109), 1, - anon_sym_RBRACE, - ACTIONS(2976), 1, + [44120] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3329), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110330,58 +107806,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44290] = 21, - ACTIONS(276), 1, + [44201] = 21, + ACTIONS(264), 1, anon_sym_RBRACE, - ACTIONS(2976), 1, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, + ACTIONS(3241), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110392,57 +107868,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44373] = 20, - ACTIONS(2976), 1, + [44284] = 21, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3331), 1, + anon_sym_SEMI, + ACTIONS(3333), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3107), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110453,55 +107930,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44454] = 18, - ACTIONS(2976), 1, + [44367] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3024), 1, - anon_sym_EQ, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3209), 1, - anon_sym_DOT_DOT, - ACTIONS(3211), 1, + ACTIONS(2990), 1, anon_sym_AMP_AMP, - ACTIONS(3213), 1, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3207), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3335), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3022), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110512,56 +107991,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44531] = 20, - ACTIONS(2976), 1, + [44448] = 21, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3337), 1, - anon_sym_RBRACK, + ACTIONS(3223), 1, + anon_sym_AMP_AMP, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + STATE(64), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110572,56 +108053,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44611] = 20, - ACTIONS(2976), 1, + [44531] = 19, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3339), 1, - anon_sym_RBRACK, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3337), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110632,56 +108112,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44691] = 20, - ACTIONS(2976), 1, + [44609] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3243), 1, - anon_sym_SEMI, + ACTIONS(3339), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110692,56 +108172,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44771] = 20, - ACTIONS(2976), 1, + [44689] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3341), 1, - anon_sym_SEMI, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110752,55 +108232,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44851] = 19, - ACTIONS(2976), 1, + [44769] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3213), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3343), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3201), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110811,56 +108292,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44929] = 20, - ACTIONS(2976), 1, + [44849] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3345), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110871,55 +108352,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45009] = 19, - ACTIONS(2976), 1, + [44929] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3213), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3347), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3347), 2, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - ACTIONS(3201), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110930,56 +108412,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45087] = 20, - ACTIONS(2976), 1, + [45009] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3349), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110990,56 +108472,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45167] = 20, - ACTIONS(2976), 1, + [45089] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2998), 1, - anon_sym_DOT, - ACTIONS(3068), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, + ACTIONS(2984), 1, anon_sym_AMP, - ACTIONS(3213), 1, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3215), 1, + ACTIONS(2994), 1, anon_sym_PIPE, - ACTIONS(3217), 1, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(3227), 1, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3231), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3351), 1, - anon_sym_LBRACE, - ACTIONS(3353), 1, - anon_sym_AMP_AMP, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3199), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3203), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3221), 2, + ACTIONS(3000), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 2, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3201), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3219), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3233), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111050,56 +108532,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45247] = 20, - ACTIONS(2976), 1, + [45169] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3355), 1, - anon_sym_COMMA, + ACTIONS(3353), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111110,56 +108592,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45327] = 20, - ACTIONS(2976), 1, + [45249] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3357), 1, + ACTIONS(3241), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111170,56 +108652,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45407] = 20, - ACTIONS(2976), 1, + [45329] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3359), 1, + ACTIONS(3355), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111230,56 +108712,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45487] = 20, - ACTIONS(2976), 1, + [45409] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3361), 1, - anon_sym_RBRACK, + ACTIONS(3357), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111290,56 +108772,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45567] = 20, - ACTIONS(2976), 1, + [45489] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3363), 1, - anon_sym_SEMI, + ACTIONS(3359), 1, + anon_sym_EQ_GT, + ACTIONS(3361), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111350,56 +108832,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45647] = 20, - ACTIONS(2976), 1, + [45569] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3365), 1, + ACTIONS(3363), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111410,56 +108892,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45727] = 20, - ACTIONS(2976), 1, + [45649] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3367), 1, - anon_sym_RBRACK, + ACTIONS(3365), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111470,55 +108952,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45807] = 19, - ACTIONS(2976), 1, + [45729] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3221), 1, anon_sym_DOT_DOT, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, + ACTIONS(3359), 1, + anon_sym_LBRACE, + ACTIONS(3367), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3347), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(2980), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111529,56 +109012,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45885] = 20, - ACTIONS(2976), 1, + [45809] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, ACTIONS(3369), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111589,56 +109072,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45965] = 20, - ACTIONS(2976), 1, + [45889] = 14, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(3293), 1, + sym_identifier, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3299), 1, + anon_sym_STAR, + ACTIONS(3305), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + sym_metavariable, + ACTIONS(3371), 1, + anon_sym_RBRACE, + STATE(1725), 1, + sym_scoped_identifier, + STATE(2345), 1, + sym_generic_type_with_turbofish, + STATE(2474), 1, + sym_bracketed_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3307), 3, + sym_self, + sym_super, + sym_crate, + STATE(2254), 5, + sym__use_clause, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(3301), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [45957] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3371), 1, + ACTIONS(3373), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111649,55 +109186,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46045] = 19, - ACTIONS(2976), 1, + [46037] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, + ACTIONS(3375), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3343), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111708,56 +109246,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46123] = 20, - ACTIONS(2976), 1, + [46117] = 19, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3373), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3377), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111768,56 +109305,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46203] = 20, - ACTIONS(2976), 1, + [46195] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3375), 1, + ACTIONS(3379), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111828,56 +109365,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46283] = 20, - ACTIONS(2976), 1, + [46275] = 19, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, - anon_sym_AMP, - ACTIONS(2992), 1, - anon_sym_PIPE, - ACTIONS(2994), 1, - anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3213), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3217), 1, + anon_sym_AMP, + ACTIONS(3221), 1, anon_sym_DOT_DOT, - ACTIONS(3377), 1, - anon_sym_COMMA, + ACTIONS(3225), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3227), 1, + anon_sym_PIPE, + ACTIONS(3229), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(3209), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(3215), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3219), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(3233), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3377), 2, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + ACTIONS(3211), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(3231), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3235), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111888,56 +109424,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46363] = 20, - ACTIONS(2976), 1, + [46353] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3351), 1, - anon_sym_EQ_GT, - ACTIONS(3379), 1, - anon_sym_AMP_AMP, + ACTIONS(3381), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -111948,56 +109484,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46443] = 20, - ACTIONS(2976), 1, + [46433] = 19, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, + ACTIONS(3098), 1, + anon_sym_QMARK, + ACTIONS(3100), 1, + anon_sym_EQ, + ACTIONS(3165), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2976), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2982), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3337), 2, + anon_sym_EQ_GT, anon_sym_AMP_AMP, - ACTIONS(3030), 1, + ACTIONS(2978), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2998), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3102), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46511] = 20, + ACTIONS(2974), 1, + anon_sym_LBRACK, + ACTIONS(2980), 1, + anon_sym_as, + ACTIONS(2984), 1, + anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, + ACTIONS(2992), 1, anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, + anon_sym_CARET, + ACTIONS(3002), 1, + anon_sym_DOT, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3381), 1, + ACTIONS(3383), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112008,41 +109603,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46523] = 14, + [46591] = 14, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3309), 1, sym_metavariable, - ACTIONS(3383), 1, + ACTIONS(3385), 1, anon_sym_RBRACE, - STATE(1749), 1, + STATE(1725), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2207), 5, + STATE(2254), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112062,56 +109657,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [46591] = 20, - ACTIONS(2976), 1, + [46659] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3385), 1, - anon_sym_RBRACK, + ACTIONS(3205), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112122,56 +109717,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46671] = 20, - ACTIONS(2976), 1, + [46739] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3307), 1, - anon_sym_COMMA, + ACTIONS(3387), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112182,56 +109777,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46751] = 20, - ACTIONS(2976), 1, + [46819] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3387), 1, - anon_sym_COMMA, + ACTIONS(3389), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112242,56 +109837,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46831] = 20, - ACTIONS(2976), 1, + [46899] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3389), 1, - anon_sym_RBRACK, + ACTIONS(3391), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112302,56 +109897,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46911] = 20, - ACTIONS(2976), 1, + [46979] = 20, + ACTIONS(2974), 1, anon_sym_LBRACK, - ACTIONS(2982), 1, + ACTIONS(2980), 1, anon_sym_as, - ACTIONS(2986), 1, + ACTIONS(2984), 1, anon_sym_AMP, + ACTIONS(2990), 1, + anon_sym_AMP_AMP, ACTIONS(2992), 1, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, ACTIONS(2994), 1, + anon_sym_PIPE, + ACTIONS(2996), 1, anon_sym_CARET, - ACTIONS(2998), 1, + ACTIONS(3002), 1, anon_sym_DOT, - ACTIONS(3028), 1, - anon_sym_AMP_AMP, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3068), 1, + ACTIONS(3098), 1, anon_sym_QMARK, - ACTIONS(3070), 1, + ACTIONS(3100), 1, anon_sym_EQ, - ACTIONS(3153), 1, + ACTIONS(3165), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, - anon_sym_SEMI, + ACTIONS(3393), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2978), 2, + ACTIONS(2976), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2996), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3026), 2, + ACTIONS(2982), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3151), 2, + ACTIONS(3000), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3163), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3032), 4, + ACTIONS(2998), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3072), 10, + ACTIONS(3102), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -112362,93 +109957,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46991] = 14, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(3247), 1, - sym_identifier, - ACTIONS(3249), 1, - anon_sym_LBRACE, - ACTIONS(3253), 1, - anon_sym_STAR, - ACTIONS(3259), 1, - anon_sym_COLON_COLON, - ACTIONS(3263), 1, - sym_metavariable, - ACTIONS(3393), 1, - anon_sym_RBRACE, - STATE(1749), 1, - sym_scoped_identifier, - STATE(2457), 1, - sym_generic_type_with_turbofish, - STATE(2527), 1, - sym_bracketed_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3261), 3, - sym_self, - sym_super, - sym_crate, - STATE(2207), 5, - sym__use_clause, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(3255), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, [47059] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1749), 1, + STATE(1725), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2207), 5, + STATE(2525), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112471,36 +110012,36 @@ static const uint16_t ts_small_parse_table[] = { [47124] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1749), 1, + STATE(1725), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2330), 5, + STATE(2430), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112523,36 +110064,36 @@ static const uint16_t ts_small_parse_table[] = { [47189] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1749), 1, + STATE(1725), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2475), 5, + STATE(2427), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112575,36 +110116,36 @@ static const uint16_t ts_small_parse_table[] = { [47254] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1749), 1, + STATE(1725), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2506), 5, + STATE(2531), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112627,36 +110168,36 @@ static const uint16_t ts_small_parse_table[] = { [47319] = 13, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(3247), 1, + ACTIONS(3293), 1, sym_identifier, - ACTIONS(3249), 1, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(3253), 1, + ACTIONS(3299), 1, anon_sym_STAR, - ACTIONS(3259), 1, + ACTIONS(3305), 1, anon_sym_COLON_COLON, - ACTIONS(3263), 1, + ACTIONS(3309), 1, sym_metavariable, - STATE(1749), 1, + STATE(1725), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3261), 3, + ACTIONS(3307), 3, sym_self, sym_super, sym_crate, - STATE(2458), 5, + STATE(2254), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(3255), 19, + ACTIONS(3301), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112790,19 +110331,19 @@ static const uint16_t ts_small_parse_table[] = { [47504] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3407), 1, sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(1599), 1, + STATE(1585), 1, sym_scoped_identifier, - STATE(2444), 1, - sym_attribute, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2392), 1, + sym_attribute, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -112834,20 +110375,20 @@ static const uint16_t ts_small_parse_table[] = { [47559] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3407), 1, sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(1599), 1, + STATE(1585), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2477), 1, - sym_attribute, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, + STATE(2486), 1, + sym_attribute, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -112878,19 +110419,19 @@ static const uint16_t ts_small_parse_table[] = { [47614] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3407), 1, sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(1599), 1, + STATE(1585), 1, sym_scoped_identifier, - STATE(2342), 1, - sym_attribute, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2349), 1, + sym_attribute, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -112922,19 +110463,19 @@ static const uint16_t ts_small_parse_table[] = { [47669] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3407), 1, sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(1599), 1, + STATE(1585), 1, sym_scoped_identifier, - STATE(2433), 1, - sym_attribute, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2366), 1, + sym_attribute, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -112966,19 +110507,19 @@ static const uint16_t ts_small_parse_table[] = { [47724] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3407), 1, sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(1599), 1, + STATE(1585), 1, sym_scoped_identifier, - STATE(2363), 1, + STATE(2332), 1, sym_attribute, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -113010,20 +110551,20 @@ static const uint16_t ts_small_parse_table[] = { [47779] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3407), 1, sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(1599), 1, + STATE(1585), 1, sym_scoped_identifier, - STATE(2322), 1, - sym_attribute, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, + STATE(2558), 1, + sym_attribute, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113054,20 +110595,20 @@ static const uint16_t ts_small_parse_table[] = { [47834] = 11, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3407), 1, sym_identifier, ACTIONS(3413), 1, sym_metavariable, - STATE(1599), 1, + STATE(1585), 1, sym_scoped_identifier, - STATE(2339), 1, - sym_attribute, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, + STATE(2520), 1, + sym_attribute, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -113098,17 +110639,17 @@ static const uint16_t ts_small_parse_table[] = { [47889] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3415), 1, sym_identifier, ACTIONS(3421), 1, sym_metavariable, - STATE(2212), 1, + STATE(2117), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -113140,17 +110681,17 @@ static const uint16_t ts_small_parse_table[] = { [47941] = 10, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(1042), 1, + ACTIONS(959), 1, anon_sym_COLON_COLON, ACTIONS(3423), 1, sym_identifier, ACTIONS(3429), 1, sym_metavariable, - STATE(2111), 1, + STATE(2308), 1, sym_scoped_identifier, - STATE(2457), 1, + STATE(2345), 1, sym_generic_type_with_turbofish, - STATE(2527), 1, + STATE(2474), 1, sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, @@ -113180,12 +110721,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_union, [47993] = 3, - ACTIONS(2367), 1, + ACTIONS(2409), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2369), 21, + ACTIONS(2411), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113208,12 +110749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_PIPE, [48024] = 3, - ACTIONS(2397), 1, + ACTIONS(2429), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2399), 21, + ACTIONS(2431), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113248,7 +110789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3447), 1, anon_sym_AT, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, @@ -113281,9 +110822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3451), 1, anon_sym_COLON_COLON, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -113302,7 +110843,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48142] = 4, + [48142] = 8, + ACTIONS(2564), 1, + anon_sym_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + STATE(1344), 1, + sym_type_arguments, + STATE(1367), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2562), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [48180] = 4, ACTIONS(2612), 1, anon_sym_COLON, ACTIONS(3), 2, @@ -113328,17 +110899,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48172] = 4, + [48210] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 2, + ACTIONS(2578), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2574), 2, + ACTIONS(2582), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2576), 15, + ACTIONS(2584), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113354,46 +110925,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48202] = 8, - ACTIONS(2564), 1, + [48240] = 4, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2562), 13, + ACTIONS(2584), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2578), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, + anon_sym_LT2, anon_sym_PIPE, - [48240] = 4, - ACTIONS(2580), 1, + [48270] = 4, + ACTIONS(2588), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 2, + ACTIONS(2592), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2578), 16, + ACTIONS(2586), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113410,16 +110977,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48270] = 4, - ACTIONS(2572), 1, + [48300] = 4, + ACTIONS(2596), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 2, + ACTIONS(2600), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2570), 16, + ACTIONS(2594), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113436,17 +111003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48300] = 4, + [48330] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 2, + ACTIONS(2586), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2614), 2, + ACTIONS(2590), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 15, + ACTIONS(2592), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113462,43 +111029,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48330] = 4, + [48360] = 8, + ACTIONS(2568), 1, + anon_sym_COLON, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + STATE(1344), 1, + sym_type_arguments, + STATE(1367), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2582), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2584), 15, + ACTIONS(2566), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48360] = 4, + [48398] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 2, + ACTIONS(2594), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2606), 2, + ACTIONS(2598), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2608), 15, + ACTIONS(2600), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113514,97 +111085,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48390] = 4, - ACTIONS(2604), 1, - anon_sym_COLON, + [48428] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2602), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2610), 2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, anon_sym_LT2, - anon_sym_PIPE, - [48420] = 8, - ACTIONS(2568), 1, + ACTIONS(2614), 2, anon_sym_COLON, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2566), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_PIPE, - [48458] = 6, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1347), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2594), 14, + ACTIONS(2616), 15, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [48491] = 3, + [48458] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2614), 2, + ACTIONS(2582), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2616), 16, + ACTIONS(2584), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113621,19 +111135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48518] = 6, + [48485] = 6, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - STATE(1347), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 14, + ACTIONS(2574), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113648,14 +111162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48551] = 3, + [48518] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 2, + ACTIONS(2598), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2576), 16, + ACTIONS(2600), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113672,19 +111186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48578] = 6, + [48545] = 6, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - STATE(1347), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 14, + ACTIONS(2602), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -113699,14 +111213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [48611] = 3, + [48578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2606), 2, + ACTIONS(2614), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2608), 16, + ACTIONS(2616), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113723,118 +111237,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [48638] = 3, - ACTIONS(598), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(596), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_if, - anon_sym_where, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [48664] = 17, - ACTIONS(3455), 1, - anon_sym_const, - ACTIONS(3457), 1, - anon_sym_enum, - ACTIONS(3459), 1, - anon_sym_fn, - ACTIONS(3461), 1, - anon_sym_mod, - ACTIONS(3463), 1, - anon_sym_static, - ACTIONS(3465), 1, - anon_sym_struct, - ACTIONS(3467), 1, - anon_sym_trait, - ACTIONS(3469), 1, - anon_sym_type, - ACTIONS(3471), 1, - anon_sym_union, - ACTIONS(3473), 1, - anon_sym_unsafe, - ACTIONS(3475), 1, - anon_sym_use, - ACTIONS(3477), 1, - anon_sym_extern, - STATE(1511), 1, - sym_extern_modifier, - STATE(1526), 1, - aux_sym_function_modifiers_repeat1, - STATE(2558), 1, - sym_function_modifiers, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3453), 2, - anon_sym_async, - anon_sym_default, - [48718] = 3, - ACTIONS(616), 1, - anon_sym_EQ, + [48605] = 6, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1341), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(614), 16, + ACTIONS(2606), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_if, anon_sym_where, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [48744] = 3, - ACTIONS(602), 1, anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(600), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_if, - anon_sym_where, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_in, anon_sym_PIPE, - [48770] = 7, + [48638] = 7, ACTIONS(3433), 1, anon_sym_LPAREN, ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3479), 1, + ACTIONS(3453), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -113856,30 +111291,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [48804] = 3, - ACTIONS(440), 1, - anon_sym_EQ, + [48672] = 17, + ACTIONS(3457), 1, + anon_sym_const, + ACTIONS(3459), 1, + anon_sym_enum, + ACTIONS(3461), 1, + anon_sym_fn, + ACTIONS(3463), 1, + anon_sym_mod, + ACTIONS(3465), 1, + anon_sym_static, + ACTIONS(3467), 1, + anon_sym_struct, + ACTIONS(3469), 1, + anon_sym_trait, + ACTIONS(3471), 1, + anon_sym_type, + ACTIONS(3473), 1, + anon_sym_union, + ACTIONS(3475), 1, + anon_sym_unsafe, + ACTIONS(3477), 1, + anon_sym_use, + ACTIONS(3479), 1, + anon_sym_extern, + STATE(1530), 1, + sym_extern_modifier, + STATE(1561), 1, + aux_sym_function_modifiers_repeat1, + STATE(2568), 1, + sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(438), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_if, - anon_sym_where, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [48830] = 17, + ACTIONS(3455), 2, + anon_sym_async, + anon_sym_default, + [48726] = 17, ACTIONS(3481), 1, anon_sym_const, ACTIONS(3483), 1, @@ -113904,23 +111353,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(3503), 1, anon_sym_extern, - STATE(1517), 1, - sym_extern_modifier, STATE(1526), 1, + sym_extern_modifier, + STATE(1561), 1, aux_sym_function_modifiers_repeat1, - STATE(2436), 1, + STATE(2469), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3453), 2, + ACTIONS(3455), 2, anon_sym_async, anon_sym_default, - [48884] = 2, + [48780] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 17, + ACTIONS(2586), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113938,100 +111387,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_LT2, anon_sym_PIPE, - [48908] = 3, - ACTIONS(3505), 1, - anon_sym_LPAREN, + [48804] = 3, + ACTIONS(498), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3159), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [48933] = 3, - ACTIONS(2716), 1, + ACTIONS(496), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_if, + anon_sym_where, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [48830] = 3, + ACTIONS(452), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, + ACTIONS(450), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [48958] = 2, + [48856] = 3, + ACTIONS(464), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2892), 16, + ACTIONS(462), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - sym_mutable_specifier, + anon_sym_in, anon_sym_PIPE, - sym_self, - [48981] = 3, - ACTIONS(2748), 1, - anon_sym_COLON, + [48882] = 3, + ACTIONS(422), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(420), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, - anon_sym_for, + anon_sym_if, anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [49006] = 3, - ACTIONS(2674), 1, + [48908] = 3, + ACTIONS(2752), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2672), 15, + ACTIONS(2750), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114047,13 +111501,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49031] = 3, - ACTIONS(2684), 1, + [48933] = 6, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3511), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3507), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3513), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3505), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [48964] = 3, + ACTIONS(2682), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 15, + ACTIONS(2680), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114069,13 +111548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49056] = 3, - ACTIONS(2726), 1, + [48989] = 3, + ACTIONS(2720), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2724), 15, + ACTIONS(2718), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114091,38 +111570,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_COLON_COLON, anon_sym_PIPE, - [49081] = 6, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3513), 1, - anon_sym_COLON_COLON, + [49014] = 3, + ACTIONS(2742), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3509), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 10, + ACTIONS(2740), 15, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_in, + anon_sym_COLON_COLON, anon_sym_PIPE, - [49112] = 3, - ACTIONS(3517), 1, - anon_sym_DASH_GT, + [49039] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 14, + ACTIONS(2782), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114136,34 +111610,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_else, + sym_mutable_specifier, anon_sym_PIPE, - [49136] = 2, + sym_self, + [49062] = 3, + ACTIONS(2706), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(2704), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, - anon_sym_PIPE, - [49158] = 3, - ACTIONS(2904), 1, anon_sym_COLON_COLON, + anon_sym_PIPE, + [49087] = 3, + ACTIONS(3515), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 14, + ACTIONS(3167), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114178,13 +111656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49182] = 3, - ACTIONS(3519), 1, + sym_identifier, + [49112] = 3, + ACTIONS(3517), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 14, + ACTIONS(2712), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114199,13 +111678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49206] = 3, - ACTIONS(3521), 1, + [49136] = 3, + ACTIONS(3519), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2666), 14, + ACTIONS(2732), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114220,11 +111699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49230] = 2, + [49160] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2646), 15, + ACTIONS(2722), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114240,15 +111719,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49252] = 4, - ACTIONS(2596), 1, - anon_sym_COLON, + [49182] = 13, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3447), 1, + anon_sym_AT, + ACTIONS(3521), 1, + anon_sym_LPAREN, ACTIONS(3523), 1, + anon_sym_RBRACK, + ACTIONS(3526), 1, + anon_sym_COLON_COLON, + STATE(1344), 1, + sym_type_arguments, + STATE(1367), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2550), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3431), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [49226] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3528), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 13, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114262,13 +111772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49278] = 3, - ACTIONS(3525), 1, + [49252] = 3, + ACTIONS(3530), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2676), 14, + ACTIONS(2644), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114283,19 +111793,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49302] = 3, - ACTIONS(3527), 1, - anon_sym_DASH_GT, + [49276] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 14, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -114304,54 +111815,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49326] = 3, - ACTIONS(2427), 1, - anon_sym_EQ, + [49302] = 5, + ACTIONS(3511), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2429), 14, + ACTIONS(3507), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3513), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3505), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [49350] = 4, - ACTIONS(2600), 1, + [49330] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3147), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [49352] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3155), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [49374] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2684), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3523), 1, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49396] = 4, + ACTIONS(2604), 1, + anon_sym_COLON, + ACTIONS(3528), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(2602), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49422] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2708), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49376] = 2, + [49444] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3165), 15, + ACTIONS(3179), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114367,13 +111960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [49398] = 3, - ACTIONS(3529), 1, + [49466] = 3, + ACTIONS(3534), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 14, + ACTIONS(2726), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114388,20 +111981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49422] = 4, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, + [49490] = 3, + ACTIONS(3536), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 13, + ACTIONS(2754), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -114410,19 +112002,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49448] = 3, - ACTIONS(3531), 1, - anon_sym_DASH_GT, + [49514] = 4, + ACTIONS(2576), 1, + anon_sym_COLON, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 14, + ACTIONS(2574), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -114431,34 +112024,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49472] = 5, - ACTIONS(3513), 1, + [49540] = 4, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(3171), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3509), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 10, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_in, anon_sym_PIPE, - [49500] = 2, + [49566] = 3, + ACTIONS(3538), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2708), 15, + ACTIONS(2650), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114470,17 +112064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49522] = 3, - ACTIONS(3533), 1, + [49590] = 3, + ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3161), 14, + ACTIONS(3169), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114495,11 +112088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [49546] = 2, + [49614] = 3, + ACTIONS(3542), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(2698), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114511,68 +112106,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49568] = 4, - ACTIONS(2600), 1, - anon_sym_COLON, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, + [49638] = 3, + ACTIONS(2371), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(2373), 14, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, anon_sym_GT, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [49662] = 13, + ACTIONS(3431), 1, anon_sym_PIPE, - [49594] = 13, ACTIONS(3435), 1, anon_sym_LBRACE, + ACTIONS(3437), 1, + anon_sym_COLON, ACTIONS(3439), 1, anon_sym_BANG, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3447), 1, anon_sym_AT, - ACTIONS(3535), 1, + ACTIONS(3544), 1, anon_sym_LPAREN, - ACTIONS(3537), 1, - anon_sym_RBRACK, - ACTIONS(3540), 1, + ACTIONS(3546), 1, anon_sym_COLON_COLON, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_SEMI, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2550), 3, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(3431), 2, anon_sym_COMMA, + [49706] = 14, + ACTIONS(2550), 1, + anon_sym_PLUS, + ACTIONS(3431), 1, anon_sym_PIPE, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(3437), 1, + anon_sym_COLON, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3447), 1, + anon_sym_AT, + ACTIONS(3548), 1, + anon_sym_LPAREN, + ACTIONS(3550), 1, + anon_sym_COLON_COLON, + STATE(1344), 1, + sym_type_arguments, + STATE(1367), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49638] = 2, + ACTIONS(3523), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [49752] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 15, + ACTIONS(2670), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114588,31 +112213,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49660] = 2, + [49774] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3175), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [49682] = 2, + ACTIONS(2744), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49796] = 3, + ACTIONS(2768), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3179), 15, + ACTIONS(3169), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -114627,53 +112254,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [49704] = 14, - ACTIONS(2550), 1, - anon_sym_PLUS, - ACTIONS(3431), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, - anon_sym_LBRACE, + [49820] = 4, ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3447), 1, - anon_sym_AT, - ACTIONS(3542), 1, - anon_sym_LPAREN, - ACTIONS(3544), 1, - anon_sym_COLON_COLON, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3537), 2, + ACTIONS(3431), 11, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - [49750] = 4, - ACTIONS(2600), 1, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + anon_sym_PIPE, + [49845] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 13, + ACTIONS(2882), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, @@ -114682,42 +112294,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49776] = 13, - ACTIONS(3431), 1, - anon_sym_PIPE, - ACTIONS(3435), 1, + [49866] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2842), 14, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(3437), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3447), 1, - anon_sym_AT, - ACTIONS(3548), 1, - anon_sym_LPAREN, - ACTIONS(3550), 1, - anon_sym_COLON_COLON, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49887] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2550), 3, + ACTIONS(2830), 14, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [49820] = 2, + anon_sym_GT, + anon_sym_else, + anon_sym_PIPE, + [49908] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2860), 14, + ACTIONS(2886), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114732,11 +112351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49841] = 2, + [49929] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2906), 14, + ACTIONS(2846), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114751,11 +112370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49862] = 2, + [49950] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2804), 14, + ACTIONS(2878), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114770,11 +112389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49883] = 2, + [49971] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2800), 14, + ACTIONS(2850), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114789,61 +112408,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49904] = 14, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, - anon_sym_COLON, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_GT, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, - STATE(1968), 1, - sym_trait_bounds, - STATE(1969), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_as, - [49949] = 2, + [49992] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 14, + ACTIONS(2590), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2592), 12, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [49970] = 2, + [50015] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2832), 14, + ACTIONS(2794), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114858,11 +112447,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [49991] = 2, + [50036] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2792), 14, + ACTIONS(2798), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114877,11 +112466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50012] = 2, + [50057] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2594), 14, + ACTIONS(2790), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114896,11 +112485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50033] = 2, + [50078] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2848), 14, + ACTIONS(2778), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114915,11 +112504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50054] = 2, + [50099] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2856), 14, + ACTIONS(2854), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114934,11 +112523,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50075] = 2, + [50120] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2788), 14, + ACTIONS(2890), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -114953,51 +112542,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50096] = 2, + [50141] = 3, + ACTIONS(3554), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 14, + ACTIONS(3552), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50117] = 4, - ACTIONS(3562), 1, - anon_sym_pat, - STATE(579), 1, - sym_fragment_specifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3560), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [50142] = 2, + [50164] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 14, + ACTIONS(2862), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115012,31 +112581,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50163] = 3, + [50185] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2582), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2584), 12, + ACTIONS(2606), 14, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, - anon_sym_COLON_COLON, - anon_sym_in, anon_sym_PIPE, - [50186] = 2, + [50206] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2836), 14, + ACTIONS(2894), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115051,31 +112619,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50207] = 3, - ACTIONS(3566), 1, - anon_sym_EQ, + [50227] = 4, + ACTIONS(3558), 1, + anon_sym_pat, + STATE(562), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3564), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50230] = 2, + ACTIONS(3556), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [50252] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2962), 14, + ACTIONS(2786), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115090,76 +112659,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50251] = 7, - ACTIONS(3509), 1, - anon_sym_COLON, - ACTIONS(3511), 1, + [50273] = 14, + ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3568), 1, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [50282] = 4, - ACTIONS(3437), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3431), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, + ACTIONS(3560), 1, anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [50307] = 3, - ACTIONS(3572), 1, + ACTIONS(3562), 1, anon_sym_EQ, + ACTIONS(3564), 1, + anon_sym_COMMA, + ACTIONS(3566), 1, + anon_sym_GT, + STATE(1344), 1, + sym_type_arguments, + STATE(1367), 1, + sym_parameters, + STATE(1884), 1, + sym_trait_bounds, + STATE(1885), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50330] = 2, + ACTIONS(2550), 2, + anon_sym_PLUS, + anon_sym_as, + [50318] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2840), 14, + ACTIONS(2574), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115174,11 +112709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50351] = 2, + [50339] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2880), 14, + ACTIONS(2602), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115193,11 +112728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50372] = 2, + [50360] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2864), 14, + ACTIONS(2950), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115212,30 +112747,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50393] = 2, + [50381] = 3, + ACTIONS(3570), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2586), 14, + ACTIONS(3568), 13, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, + anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [50414] = 2, + [50404] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2868), 14, + ACTIONS(2806), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115250,11 +112786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50435] = 2, + [50425] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2824), 14, + ACTIONS(2818), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115269,11 +112805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50456] = 2, + [50446] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2820), 14, + ACTIONS(2818), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -115288,25 +112824,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_else, anon_sym_PIPE, - [50477] = 2, + [50467] = 7, + ACTIONS(3507), 1, + anon_sym_COLON, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 14, - anon_sym_SEMI, + ACTIONS(3513), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3505), 3, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - anon_sym_else, anon_sym_PIPE, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, [50498] = 4, ACTIONS(3578), 1, anon_sym_COLON_COLON, @@ -115347,89 +112888,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE, [50544] = 6, - ACTIONS(3511), 1, + ACTIONS(3509), 1, anon_sym_BANG, ACTIONS(3580), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 2, + ACTIONS(3513), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 3, + ACTIONS(3505), 3, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(2624), 6, + ACTIONS(2634), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [50572] = 4, - ACTIONS(3586), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3584), 2, - anon_sym_COLON, + [50572] = 3, + ACTIONS(408), 1, anon_sym_EQ, - ACTIONS(3582), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [50596] = 4, - ACTIONS(3592), 1, - anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3588), 10, + ACTIONS(406), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, - [50620] = 4, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3596), 2, anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3594), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50644] = 4, - ACTIONS(3533), 1, + [50594] = 4, + ACTIONS(3586), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -115448,16 +112948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50668] = 4, - ACTIONS(3592), 1, + [50618] = 4, + ACTIONS(3588), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3584), 2, + ACTIONS(3576), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3582), 10, + ACTIONS(3574), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115468,54 +112968,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50692] = 3, - ACTIONS(412), 1, - anon_sym_EQ, + [50642] = 4, + ACTIONS(3540), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(410), 12, + ACTIONS(3576), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3574), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50714] = 3, - ACTIONS(408), 1, - anon_sym_EQ, + [50666] = 4, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(406), 12, + ACTIONS(3592), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3590), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50736] = 4, - ACTIONS(3586), 1, + [50690] = 4, + ACTIONS(3588), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, + ACTIONS(3596), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3588), 10, + ACTIONS(3594), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115526,16 +113028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50760] = 4, - ACTIONS(3533), 1, + [50714] = 4, + ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3590), 2, + ACTIONS(3596), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3588), 10, + ACTIONS(3594), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115546,13 +113048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50784] = 3, - ACTIONS(3600), 1, + [50738] = 3, + ACTIONS(412), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 11, + ACTIONS(410), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115561,35 +113063,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50805] = 4, + [50760] = 4, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3602), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2610), 4, + ACTIONS(3596), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3594), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2616), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [50828] = 3, - ACTIONS(3607), 1, + [50784] = 3, + ACTIONS(3600), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3605), 11, + ACTIONS(3598), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115601,13 +113105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50849] = 3, - ACTIONS(3611), 1, + [50805] = 3, + ACTIONS(3576), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3609), 11, + ACTIONS(3574), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115619,13 +113123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50870] = 3, - ACTIONS(3437), 1, + [50826] = 3, + ACTIONS(3604), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 11, + ACTIONS(3602), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115637,52 +113141,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50891] = 5, - ACTIONS(2582), 1, - anon_sym_COLON, - ACTIONS(3613), 1, - anon_sym_LPAREN, + [50847] = 3, + ACTIONS(3608), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 5, + ACTIONS(3606), 11, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2584), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [50916] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3616), 2, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_RBRACK, - ACTIONS(2602), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2608), 6, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [50939] = 3, - ACTIONS(3590), 1, + [50868] = 3, + ACTIONS(3612), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3588), 11, + ACTIONS(3610), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115694,13 +113177,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50960] = 3, - ACTIONS(3621), 1, + [50889] = 3, + ACTIONS(3616), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3619), 11, + ACTIONS(3614), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115712,13 +113195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [50981] = 3, - ACTIONS(3625), 1, + [50910] = 3, + ACTIONS(3620), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3623), 11, + ACTIONS(3618), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115730,13 +113213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51002] = 3, - ACTIONS(3629), 1, + [50931] = 3, + ACTIONS(3624), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3627), 11, + ACTIONS(3622), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115748,13 +113231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51023] = 3, - ACTIONS(3633), 1, + [50952] = 3, + ACTIONS(616), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3631), 11, + ACTIONS(614), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115766,52 +113249,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51044] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3613), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2578), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2584), 6, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + [50973] = 7, + ACTIONS(3505), 1, anon_sym_PIPE, - [51067] = 5, - ACTIONS(2614), 1, + ACTIONS(3507), 1, anon_sym_COLON, - ACTIONS(3602), 1, - anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3626), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2616), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, + ACTIONS(3513), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51092] = 3, - ACTIONS(3637), 1, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [51002] = 3, + ACTIONS(3437), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3635), 11, + ACTIONS(3431), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115823,33 +113289,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51113] = 5, - ACTIONS(2574), 1, - anon_sym_COLON, - ACTIONS(3639), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2570), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2576), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [51138] = 3, - ACTIONS(3644), 1, + [51023] = 3, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3642), 11, + ACTIONS(3628), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115861,32 +113307,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51159] = 4, + [51044] = 3, + ACTIONS(3634), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3639), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2570), 4, + ACTIONS(3632), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(2576), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, - [51182] = 3, - ACTIONS(3648), 1, + [51065] = 3, + ACTIONS(3638), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3646), 11, + ACTIONS(3636), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115898,13 +113343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51203] = 3, - ACTIONS(3652), 1, + [51086] = 3, + ACTIONS(3642), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3650), 11, + ACTIONS(3640), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115916,13 +113361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51224] = 3, - ACTIONS(3656), 1, + [51107] = 3, + ACTIONS(3646), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3654), 11, + ACTIONS(3644), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115934,35 +113379,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51245] = 7, - ACTIONS(3507), 1, - anon_sym_PIPE, - ACTIONS(3509), 1, - anon_sym_COLON, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [51274] = 3, - ACTIONS(3662), 1, + [51128] = 3, + ACTIONS(3650), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3660), 11, + ACTIONS(3648), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115974,13 +113397,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51295] = 3, - ACTIONS(3666), 1, + [51149] = 3, + ACTIONS(3654), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3664), 11, + ACTIONS(3652), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -115992,13 +113415,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51316] = 3, - ACTIONS(3670), 1, + [51170] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, + ACTIONS(3656), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2616), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51195] = 3, + ACTIONS(3661), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3668), 11, + ACTIONS(3659), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116010,13 +113453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51337] = 3, - ACTIONS(3674), 1, + [51216] = 3, + ACTIONS(3665), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3672), 11, + ACTIONS(3663), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116028,13 +113471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51358] = 3, - ACTIONS(3678), 1, + [51237] = 3, + ACTIONS(3669), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3676), 11, + ACTIONS(3667), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116046,27 +113489,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51379] = 5, - ACTIONS(2606), 1, + [51258] = 5, + ACTIONS(2598), 1, + anon_sym_COLON, + ACTIONS(3671), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2594), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2600), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51283] = 5, + ACTIONS(2590), 1, anon_sym_COLON, + ACTIONS(3674), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 3, + ACTIONS(2586), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3616), 3, + ACTIONS(2592), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51308] = 5, + ACTIONS(2582), 1, + anon_sym_COLON, + ACTIONS(3677), 1, anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 5, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(2608), 5, + anon_sym_LT2, + ACTIONS(2584), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51404] = 3, + [51333] = 3, ACTIONS(3682), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116084,13 +113567,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51425] = 3, - ACTIONS(3584), 1, + [51354] = 5, + ACTIONS(2614), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2610), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3656), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2616), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51379] = 3, + ACTIONS(3686), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3582), 11, + ACTIONS(3684), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116102,13 +113605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51446] = 3, - ACTIONS(3686), 1, + [51400] = 3, + ACTIONS(3690), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3684), 11, + ACTIONS(3688), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116120,45 +113623,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51467] = 5, - ACTIONS(2606), 1, + [51421] = 5, + ACTIONS(2598), 1, anon_sym_COLON, - ACTIONS(3616), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2602), 5, - anon_sym_RPAREN, + ACTIONS(2594), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2608), 5, + ACTIONS(3671), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2600), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51492] = 3, - ACTIONS(3690), 1, - anon_sym_EQ, + [51446] = 5, + ACTIONS(2590), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3688), 11, - anon_sym_SEMI, + ACTIONS(2586), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3674), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + ACTIONS(2592), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51513] = 3, + [51471] = 3, ACTIONS(3694), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116176,7 +113681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51534] = 3, + [51492] = 3, ACTIONS(3698), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116194,7 +113699,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51555] = 3, + [51513] = 5, + ACTIONS(2582), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2578), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3677), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2584), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51538] = 3, ACTIONS(3702), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116212,7 +113737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51576] = 3, + [51559] = 3, ACTIONS(3706), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116230,13 +113755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51597] = 3, - ACTIONS(452), 1, + [51580] = 3, + ACTIONS(3710), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(450), 11, + ACTIONS(3708), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116248,13 +113773,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51618] = 3, - ACTIONS(3710), 1, + [51601] = 3, + ACTIONS(3714), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3708), 11, + ACTIONS(3712), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -116266,65 +113791,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51639] = 5, - ACTIONS(2574), 1, - anon_sym_COLON, + [51622] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2570), 3, + ACTIONS(3656), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2610), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3639), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2576), 5, + ACTIONS(2616), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51664] = 3, - ACTIONS(3714), 1, - anon_sym_EQ, + [51645] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3712), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3671), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, + ACTIONS(2594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2600), 6, + anon_sym_BANG, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51685] = 5, - ACTIONS(2582), 1, - anon_sym_COLON, + [51668] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2578), 3, + ACTIONS(3674), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2586), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3613), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2592), 6, + anon_sym_BANG, anon_sym_COMMA, - ACTIONS(2584), 5, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [51691] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3677), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + ACTIONS(2578), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(2584), 6, anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [51710] = 3, + [51714] = 3, ACTIONS(3718), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -116342,25 +113885,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_in, anon_sym_PIPE, - [51731] = 5, - ACTIONS(2614), 1, - anon_sym_COLON, + [51735] = 3, + ACTIONS(3596), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2610), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3602), 3, - anon_sym_LPAREN, + ACTIONS(3594), 11, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, anon_sym_COMMA, - ACTIONS(2616), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_else, + anon_sym_in, anon_sym_PIPE, [51756] = 9, ACTIONS(3439), 1, @@ -116373,9 +113914,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3720), 1, anon_sym_for, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116396,9 +113937,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3722), 1, anon_sym_for, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116413,7 +113954,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(3726), 1, sym_crate, - STATE(1530), 1, + STATE(1553), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, @@ -116438,9 +113979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3728), 1, anon_sym_for, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116461,9 +114002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3730), 1, anon_sym_for, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116478,7 +114019,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, ACTIONS(3732), 1, sym_crate, - STATE(1530), 1, + STATE(1553), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, @@ -116503,9 +114044,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3734), 1, anon_sym_for, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116526,32 +114067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3736), 1, anon_sym_for, - STATE(1342), 1, - sym_type_arguments, - STATE(1361), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [51996] = 9, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - ACTIONS(3738), 1, - anon_sym_for, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116561,31 +114079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52028] = 5, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - ACTIONS(3740), 1, - sym_crate, - STATE(1530), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3724), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52052] = 5, + [51996] = 5, ACTIONS(706), 1, aux_sym_string_literal_token1, - ACTIONS(3742), 1, + ACTIONS(3738), 1, sym_crate, - STATE(1530), 1, + STATE(1553), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, @@ -116599,7 +114098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52076] = 9, + [52020] = 9, ACTIONS(3439), 1, anon_sym_BANG, ACTIONS(3445), 1, @@ -116608,11 +114107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3744), 1, + ACTIONS(3740), 1, anon_sym_for, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(1361), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -116622,652 +114121,551 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52108] = 7, + [52052] = 9, + ACTIONS(3439), 1, + anon_sym_BANG, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3746), 1, - anon_sym_LBRACE, - STATE(1347), 1, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + ACTIONS(3742), 1, + anon_sym_for, + STATE(1344), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1367), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 5, + ACTIONS(2550), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [52135] = 8, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_identifier, - ACTIONS(3750), 1, - anon_sym_RBRACE, - ACTIONS(3752), 1, - anon_sym_COMMA, - ACTIONS(3754), 1, - anon_sym_DOT_DOT, + anon_sym_where, + [52084] = 5, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + ACTIONS(3744), 1, + sym_crate, + STATE(1553), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1838), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1897), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [52164] = 6, - ACTIONS(15), 1, + ACTIONS(3724), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3493), 1, - anon_sym_trait, - ACTIONS(3756), 1, - anon_sym_impl, - STATE(61), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 6, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52189] = 9, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - ACTIONS(3758), 1, - anon_sym_EQ, - STATE(1361), 1, - sym_parameters, - STATE(1747), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [52220] = 10, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52108] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3762), 1, + ACTIONS(3748), 1, anon_sym_RBRACE, - ACTIONS(3764), 1, + ACTIONS(3750), 1, anon_sym_COMMA, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - STATE(2106), 1, - sym_field_declaration, - STATE(2410), 1, + STATE(2083), 1, + sym_enum_variant, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1562), 2, + STATE(1568), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52253] = 10, + [52141] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3768), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3756), 1, anon_sym_RBRACE, - ACTIONS(3770), 1, + ACTIONS(3758), 1, anon_sym_COMMA, - STATE(2008), 1, + STATE(1919), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1527), 2, + STATE(1537), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52286] = 10, + [52174] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3772), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3774), 1, + ACTIONS(3760), 1, anon_sym_RBRACE, - ACTIONS(3776), 1, + ACTIONS(3762), 1, anon_sym_COMMA, - STATE(1880), 1, - sym_enum_variant, - STATE(2335), 1, + STATE(2112), 1, + sym_field_declaration, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1560), 2, + STATE(1536), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52319] = 10, + [52207] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3493), 1, + anon_sym_trait, + ACTIONS(3764), 1, + anon_sym_impl, + STATE(73), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [52232] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3778), 1, + ACTIONS(3752), 1, + sym_crate, + ACTIONS(3766), 1, anon_sym_RBRACE, - ACTIONS(3780), 1, + ACTIONS(3768), 1, anon_sym_COMMA, - STATE(2073), 1, + STATE(2101), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1559), 2, + STATE(1571), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52352] = 7, + [52265] = 9, + ACTIONS(3439), 1, + anon_sym_BANG, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3782), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1349), 1, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + ACTIONS(3770), 1, + anon_sym_EQ, + STATE(1367), 1, sym_parameters, + STATE(1743), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(2550), 3, anon_sym_PLUS, - anon_sym_where, - [52378] = 7, + anon_sym_COMMA, + anon_sym_GT, + [52296] = 8, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3774), 1, + anon_sym_RBRACE, + ACTIONS(3776), 1, + anon_sym_COMMA, + ACTIONS(3778), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1803), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2030), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52325] = 7, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3784), 1, - anon_sym_for, - STATE(1347), 1, + ACTIONS(3780), 1, + anon_sym_LBRACE, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 5, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_where, - [52404] = 5, - ACTIONS(3786), 1, - anon_sym_SEMI, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(280), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [52426] = 9, + anon_sym_COMMA, + [52352] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_const, - ACTIONS(3794), 1, + ACTIONS(3786), 1, anon_sym_GT, - ACTIONS(3796), 1, + ACTIONS(3788), 1, sym_metavariable, - STATE(1773), 1, + STATE(1780), 1, sym_lifetime, - STATE(2041), 1, + STATE(2088), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2130), 2, sym_const_parameter, sym_optional_type_parameter, - [52456] = 10, - ACTIONS(3798), 1, - anon_sym_SEMI, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(886), 1, - sym_field_declaration_list, - STATE(1571), 1, - sym_type_parameters, - STATE(2098), 1, - sym_ordered_field_declaration_list, - STATE(2130), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52488] = 9, - ACTIONS(53), 1, - anon_sym_pub, + [52382] = 7, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3772), 1, sym_identifier, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3808), 1, + ACTIONS(3778), 1, + anon_sym_DOT_DOT, + ACTIONS(3790), 1, anon_sym_RBRACE, - STATE(2274), 1, - sym_field_declaration, - STATE(2410), 1, - sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1803), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52518] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_const, - ACTIONS(3796), 1, - sym_metavariable, - ACTIONS(3810), 1, - anon_sym_GT, - STATE(1832), 1, - sym_lifetime, - STATE(2041), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2164), 2, - sym_const_parameter, - sym_optional_type_parameter, - [52548] = 9, + STATE(2278), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [52408] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3812), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3792), 1, anon_sym_RBRACE, - STATE(2274), 1, + STATE(2223), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52578] = 9, + [52438] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3772), 1, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3814), 1, + ACTIONS(3794), 1, anon_sym_RBRACE, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, + STATE(2223), 1, + sym_field_declaration, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52608] = 7, + [52468] = 7, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3816), 1, + ACTIONS(3796), 1, anon_sym_for, - STATE(1347), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52634] = 10, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3818), 1, - anon_sym_SEMI, - STATE(980), 1, - sym_field_declaration_list, - STATE(1611), 1, - sym_type_parameters, - STATE(2036), 1, - sym_ordered_field_declaration_list, - STATE(2168), 1, - sym_where_clause, + [52494] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3784), 1, + anon_sym_const, + ACTIONS(3788), 1, + sym_metavariable, + ACTIONS(3798), 1, + anon_sym_GT, + STATE(1780), 1, + sym_lifetime, + STATE(2088), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [52666] = 7, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3820), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, + STATE(2130), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52524] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3784), 1, + anon_sym_const, + ACTIONS(3788), 1, + sym_metavariable, + ACTIONS(3800), 1, + anon_sym_GT, + STATE(1780), 1, + sym_lifetime, + STATE(2088), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, + STATE(2130), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52554] = 5, + ACTIONS(3802), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [52692] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3805), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1489), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3807), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [52576] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3822), 1, - anon_sym_RBRACE, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, - sym_visibility_modifier, + ACTIONS(3784), 1, + anon_sym_const, + ACTIONS(3788), 1, + sym_metavariable, + ACTIONS(3810), 1, + anon_sym_GT, + STATE(1780), 1, + sym_lifetime, + STATE(2088), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52722] = 9, + STATE(2130), 2, + sym_const_parameter, + sym_optional_type_parameter, + [52606] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3824), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3812), 1, anon_sym_RBRACE, - STATE(2274), 1, + STATE(2223), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52752] = 10, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_SEMI, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(335), 1, - sym_field_declaration_list, - STATE(1609), 1, - sym_type_parameters, - STATE(2101), 1, - sym_ordered_field_declaration_list, - STATE(2116), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [52784] = 7, + [52636] = 7, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3830), 1, + ACTIONS(3814), 1, anon_sym_for, - STATE(1347), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52810] = 9, + [52662] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3832), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3816), 1, anon_sym_RBRACE, - STATE(2274), 1, + STATE(2223), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [52840] = 7, + [52692] = 7, ACTIONS(3445), 1, anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3834), 1, + ACTIONS(3818), 1, anon_sym_for, - STATE(1347), 1, + STATE(1341), 1, sym_type_arguments, - STATE(1349), 1, + STATE(1369), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [52866] = 9, + [52718] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3788), 1, sym_metavariable, - ACTIONS(3836), 1, + ACTIONS(3820), 1, anon_sym_GT, - STATE(1773), 1, + STATE(1780), 1, sym_lifetime, - STATE(2041), 1, + STATE(2088), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2130), 2, sym_const_parameter, sym_optional_type_parameter, - [52896] = 5, - ACTIONS(3838), 1, - anon_sym_SEMI, - ACTIONS(3840), 1, + [52748] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1032), 1, - sym_declaration_list, + ACTIONS(3822), 1, + anon_sym_move, + STATE(85), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2634), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [52918] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3842), 1, - anon_sym_RBRACE, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1558), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52948] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, - sym_identifier, - ACTIONS(3844), 1, - anon_sym_RBRACE, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1558), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [52978] = 7, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_identifier, - ACTIONS(3754), 1, - anon_sym_DOT_DOT, - ACTIONS(3846), 1, - anon_sym_RBRACE, + [52770] = 10, + ACTIONS(3824), 1, + anon_sym_SEMI, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LT, + STATE(259), 1, + sym_field_declaration_list, + STATE(1613), 1, + sym_type_parameters, + STATE(1995), 1, + sym_ordered_field_declaration_list, + STATE(2232), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1838), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2209), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [53004] = 7, + [52802] = 7, ACTIONS(3433), 1, anon_sym_LPAREN, ACTIONS(3437), 1, anon_sym_COLON, ACTIONS(3439), 1, anon_sym_BANG, - ACTIONS(3848), 1, + ACTIONS(3834), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -117279,1229 +114677,1413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [53030] = 7, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3850), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53056] = 7, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3852), 1, - anon_sym_for, - STATE(1347), 1, - sym_type_arguments, - STATE(1349), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [53082] = 9, + [52828] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3854), 1, + ACTIONS(3836), 1, anon_sym_RBRACE, - STATE(2274), 1, - sym_field_declaration, - STATE(2410), 1, + STATE(2300), 1, + sym_enum_variant, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1559), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53112] = 9, + [52858] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3788), 1, sym_metavariable, - ACTIONS(3856), 1, + ACTIONS(3838), 1, anon_sym_GT, - STATE(1773), 1, + STATE(1817), 1, sym_lifetime, - STATE(2041), 1, + STATE(2088), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2130), 2, sym_const_parameter, sym_optional_type_parameter, - [53142] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3858), 1, + [52888] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3746), 1, sym_identifier, - STATE(67), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3860), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53164] = 5, + ACTIONS(3752), 1, + sym_crate, ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(3862), 1, - anon_sym_SEMI, - STATE(970), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53186] = 9, + anon_sym_RBRACE, + STATE(2300), 1, + sym_enum_variant, + STATE(2571), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [52918] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3864), 1, + ACTIONS(3752), 1, + sym_crate, + ACTIONS(3842), 1, anon_sym_RBRACE, - STATE(2248), 1, + STATE(2300), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1559), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53216] = 9, + [52948] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3844), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [52974] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3866), 1, + ACTIONS(3752), 1, + sym_crate, + ACTIONS(3846), 1, anon_sym_RBRACE, - STATE(2248), 1, + STATE(2300), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, + STATE(1559), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53246] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_const, - ACTIONS(3796), 1, - sym_metavariable, - ACTIONS(3868), 1, - anon_sym_GT, - STATE(1773), 1, - sym_lifetime, - STATE(2041), 1, - sym_constrained_type_parameter, + [53004] = 10, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(3848), 1, + anon_sym_SEMI, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(878), 1, + sym_field_declaration_list, + STATE(1601), 1, + sym_type_parameters, + STATE(2082), 1, + sym_ordered_field_declaration_list, + STATE(2140), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53276] = 9, + [53036] = 5, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3854), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1489), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3856), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53058] = 5, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3858), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1489), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3856), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53080] = 5, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3860), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1531), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3862), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53102] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3788), 1, sym_metavariable, - ACTIONS(3870), 1, + ACTIONS(3864), 1, anon_sym_GT, - STATE(1773), 1, + STATE(1780), 1, sym_lifetime, - STATE(2041), 1, + STATE(2088), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2130), 2, sym_const_parameter, sym_optional_type_parameter, - [53306] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, + [53132] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3752), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_const, - ACTIONS(3796), 1, - sym_metavariable, - ACTIONS(3872), 1, - anon_sym_GT, - STATE(1773), 1, - sym_lifetime, - STATE(2041), 1, - sym_constrained_type_parameter, + ACTIONS(3866), 1, + anon_sym_RBRACE, + STATE(2223), 1, + sym_field_declaration, + STATE(2325), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53336] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, + STATE(1562), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53162] = 5, + ACTIONS(3868), 1, anon_sym_SEMI, - STATE(467), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(297), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2634), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53358] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3876), 1, - anon_sym_RBRACE, - STATE(2274), 1, - sym_field_declaration, - STATE(2410), 1, - sym_visibility_modifier, + [53184] = 5, + ACTIONS(3872), 1, + anon_sym_SEMI, + ACTIONS(3874), 1, + anon_sym_LBRACE, + STATE(881), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [53388] = 9, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53206] = 9, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3790), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_const, - ACTIONS(3796), 1, + ACTIONS(3788), 1, sym_metavariable, - ACTIONS(3878), 1, + ACTIONS(3876), 1, anon_sym_GT, - STATE(1773), 1, + STATE(1780), 1, sym_lifetime, - STATE(2041), 1, + STATE(2088), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, + STATE(2130), 2, sym_const_parameter, sym_optional_type_parameter, - [53418] = 10, - ACTIONS(3800), 1, + [53236] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(3878), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3828), 1, + [53262] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, ACTIONS(3880), 1, - anon_sym_SEMI, - STATE(377), 1, - sym_field_declaration_list, - STATE(1588), 1, - sym_type_parameters, - STATE(1987), 1, - sym_ordered_field_declaration_list, - STATE(2228), 1, - sym_where_clause, + sym_identifier, + STATE(88), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53450] = 9, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3882), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3796), 1, - sym_metavariable, - ACTIONS(3882), 1, - anon_sym_GT, - STATE(1773), 1, - sym_lifetime, - STATE(2041), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53284] = 5, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3884), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2164), 2, - sym_const_parameter, - sym_optional_type_parameter, - [53480] = 7, + STATE(1507), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3886), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53306] = 5, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3888), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1506), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3890), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53328] = 9, + ACTIONS(53), 1, + anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3748), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3754), 1, + ACTIONS(3752), 1, + sym_crate, + ACTIONS(3892), 1, + anon_sym_RBRACE, + STATE(2300), 1, + sym_enum_variant, + STATE(2571), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1559), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53358] = 7, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3778), 1, anon_sym_DOT_DOT, - ACTIONS(3884), 1, + ACTIONS(3894), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1838), 2, + STATE(1803), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2209), 3, + STATE(2278), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [53506] = 5, - ACTIONS(15), 1, + [53384] = 10, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3886), 1, - anon_sym_move, - STATE(76), 1, - sym_block, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(3896), 1, + anon_sym_SEMI, + STATE(378), 1, + sym_field_declaration_list, + STATE(1610), 1, + sym_type_parameters, + STATE(1863), 1, + sym_ordered_field_declaration_list, + STATE(2228), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53528] = 8, + [53416] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - STATE(2304), 1, + ACTIONS(3754), 1, + sym_identifier, + ACTIONS(3898), 1, + anon_sym_RBRACE, + STATE(2223), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1562), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53555] = 5, - ACTIONS(3891), 1, - anon_sym_fn, - ACTIONS(3893), 1, - anon_sym_extern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1525), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3888), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53576] = 5, - ACTIONS(3898), 1, - anon_sym_fn, - ACTIONS(3900), 1, - anon_sym_extern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1525), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3896), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [53597] = 8, + [53446] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - STATE(2012), 1, - sym_field_declaration, - STATE(2410), 1, + ACTIONS(3900), 1, + anon_sym_RBRACE, + STATE(2300), 1, + sym_enum_variant, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1559), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53624] = 6, - ACTIONS(3433), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_BANG, + [53476] = 5, + ACTIONS(3852), 1, + anon_sym_LBRACE, ACTIONS(3902), 1, - anon_sym_COLON_COLON, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3431), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [53647] = 8, - ACTIONS(798), 1, - anon_sym_DOT_DOT, + STATE(1489), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3856), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53498] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, ACTIONS(3904), 1, - sym_identifier, - ACTIONS(3906), 1, - anon_sym_RBRACE, - ACTIONS(3908), 1, - anon_sym_COMMA, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1931), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53674] = 2, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [53524] = 10, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(3906), 1, + anon_sym_SEMI, + STATE(854), 1, + sym_field_declaration_list, + STATE(1588), 1, + sym_type_parameters, + STATE(2046), 1, + sym_ordered_field_declaration_list, + STATE(2168), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3914), 8, - anon_sym_SEMI, + [53556] = 5, + ACTIONS(3870), 1, anon_sym_LBRACE, + ACTIONS(3908), 1, + anon_sym_SEMI, + STATE(472), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [53689] = 9, + [53578] = 9, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3782), 1, + sym_identifier, + ACTIONS(3784), 1, + anon_sym_const, ACTIONS(3788), 1, + sym_metavariable, + ACTIONS(3910), 1, + anon_sym_GT, + STATE(1780), 1, + sym_lifetime, + STATE(2088), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2130), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53608] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3912), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3804), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - STATE(382), 1, - sym_declaration_list, - STATE(1697), 1, - sym_type_parameters, - STATE(1830), 1, - sym_trait_bounds, - STATE(2233), 1, - sym_where_clause, + [53634] = 5, + ACTIONS(3852), 1, + anon_sym_LBRACE, + ACTIONS(3914), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53718] = 9, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, + STATE(1523), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3916), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53656] = 5, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, ACTIONS(3918), 1, - anon_sym_LT, - STATE(896), 1, + anon_sym_SEMI, + STATE(810), 1, sym_declaration_list, - STATE(1661), 1, - sym_type_parameters, - STATE(1765), 1, - sym_trait_bounds, - STATE(2122), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53747] = 9, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53678] = 5, + ACTIONS(3852), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - STATE(978), 1, - sym_declaration_list, - STATE(1618), 1, - sym_type_parameters, - STATE(1814), 1, - sym_trait_bounds, - STATE(2166), 1, - sym_where_clause, + ACTIONS(3920), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53776] = 9, - ACTIONS(3788), 1, + STATE(1489), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_literal_repeat1, + ACTIONS(3856), 4, + sym__string_content, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [53700] = 7, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3922), 1, + anon_sym_for, + STATE(1341), 1, + sym_type_arguments, + STATE(1369), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3804), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - STATE(402), 1, - sym_declaration_list, - STATE(1620), 1, - sym_type_parameters, - STATE(1815), 1, - sym_trait_bounds, - STATE(2225), 1, - sym_where_clause, + [53726] = 8, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(3784), 1, + anon_sym_const, + ACTIONS(3924), 1, + sym_identifier, + ACTIONS(3926), 1, + sym_metavariable, + STATE(1671), 1, + sym_lifetime, + STATE(1847), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1883), 2, + sym_const_parameter, + sym_optional_type_parameter, + [53753] = 4, + ACTIONS(2642), 1, + anon_sym_COLON_COLON, + ACTIONS(3928), 1, + anon_sym_BANG, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [53772] = 8, + ACTIONS(786), 1, + anon_sym_DOT_DOT, + ACTIONS(3930), 1, + sym_identifier, + ACTIONS(3932), 1, + anon_sym_RBRACE, + ACTIONS(3934), 1, + anon_sym_COMMA, + ACTIONS(3936), 1, + anon_sym_ref, + ACTIONS(3938), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [53805] = 8, + STATE(1872), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [53799] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, - sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - STATE(2274), 1, + ACTIONS(3754), 1, + sym_identifier, + STATE(2029), 1, sym_field_declaration, - STATE(2410), 1, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1524), 2, + STATE(1157), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [53832] = 8, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3904), 1, + [53826] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3752), 1, + sym_crate, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, - ACTIONS(3920), 1, - anon_sym_RBRACE, - ACTIONS(3922), 1, - anon_sym_COMMA, + STATE(2009), 1, + sym_field_declaration, + STATE(2325), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1954), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [53859] = 4, - ACTIONS(3926), 1, - anon_sym_PLUS, - STATE(1550), 1, - aux_sym_trait_bounds_repeat1, + STATE(1157), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [53853] = 9, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(273), 1, + sym_declaration_list, + STATE(1643), 1, + sym_type_parameters, + STATE(1829), 1, + sym_trait_bounds, + STATE(2287), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3924), 6, - anon_sym_SEMI, + [53882] = 8, + ACTIONS(3944), 1, + anon_sym_LPAREN, + ACTIONS(3949), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [53878] = 4, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, - ACTIONS(3928), 1, - anon_sym_BANG, + ACTIONS(3952), 1, + anon_sym_LBRACK, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2351), 1, + sym_macro_rule, + STATE(2545), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [53897] = 4, - ACTIONS(3932), 1, + ACTIONS(3947), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [53909] = 4, + ACTIONS(3957), 1, anon_sym_PLUS, - STATE(1539), 1, + STATE(1564), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 6, + ACTIONS(3955), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [53916] = 4, - ACTIONS(3935), 1, + [53928] = 4, + ACTIONS(3959), 1, anon_sym_PLUS, - STATE(1550), 1, + STATE(1564), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3924), 6, + ACTIONS(3955), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [53935] = 4, - ACTIONS(3937), 1, + [53947] = 6, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(3961), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3431), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [53970] = 4, + ACTIONS(3963), 1, anon_sym_PLUS, - STATE(1550), 1, + STATE(1564), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3924), 6, + ACTIONS(3955), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [53954] = 8, + [53989] = 6, + ACTIONS(3507), 1, + anon_sym_COLON, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3572), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3513), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3505), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [54012] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3752), 1, + sym_crate, + ACTIONS(3754), 1, + sym_identifier, + STATE(2223), 1, + sym_field_declaration, + STATE(2325), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1562), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54039] = 9, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(457), 1, + sym_declaration_list, + STATE(1686), 1, + sym_type_parameters, + STATE(1804), 1, + sym_trait_bounds, + STATE(2315), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54068] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_const, - ACTIONS(3939), 1, + ACTIONS(3965), 1, sym_identifier, - ACTIONS(3941), 1, + ACTIONS(3967), 1, sym_metavariable, - STATE(1711), 1, + STATE(1765), 1, sym_lifetime, - STATE(1758), 1, + STATE(1800), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2006), 2, + STATE(2033), 2, sym_const_parameter, sym_optional_type_parameter, - [53981] = 8, + [54095] = 9, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(820), 1, + sym_declaration_list, + STATE(1654), 1, + sym_type_parameters, + STATE(1795), 1, + sym_trait_bounds, + STATE(2166), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54124] = 6, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3772), 1, + sym_identifier, + ACTIONS(3778), 1, + anon_sym_DOT_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1803), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2278), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [54147] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3792), 1, - anon_sym_const, - ACTIONS(3943), 1, + ACTIONS(3782), 1, sym_identifier, - ACTIONS(3945), 1, + ACTIONS(3784), 1, + anon_sym_const, + ACTIONS(3788), 1, sym_metavariable, - STATE(1715), 1, + STATE(1780), 1, sym_lifetime, - STATE(1822), 1, + STATE(2088), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2023), 2, + STATE(2130), 2, sym_const_parameter, sym_optional_type_parameter, - [54008] = 8, - ACTIONS(3947), 1, - anon_sym_LPAREN, - ACTIONS(3952), 1, - anon_sym_LBRACE, - ACTIONS(3955), 1, - anon_sym_LBRACK, - STATE(1544), 1, - aux_sym_macro_definition_repeat1, - STATE(2315), 1, - sym_token_tree_pattern, - STATE(2522), 1, - sym_macro_rule, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3950), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [54035] = 6, + [54174] = 6, ACTIONS(3580), 1, anon_sym_COLON_COLON, - ACTIONS(3958), 1, + ACTIONS(3969), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + ACTIONS(2606), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3507), 2, + ACTIONS(3505), 2, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3515), 2, + ACTIONS(3513), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54058] = 7, - ACTIONS(2598), 1, - anon_sym_PLUS, - ACTIONS(3507), 1, - anon_sym_PIPE, - ACTIONS(3509), 1, + [54197] = 9, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(3568), 1, - anon_sym_COLON_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(383), 1, + sym_declaration_list, + STATE(1709), 1, + sym_type_parameters, + STATE(1846), 1, + sym_trait_bounds, + STATE(2220), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3958), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54083] = 4, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3961), 1, - anon_sym_BANG, + [54226] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3972), 8, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54102] = 6, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3748), 1, - sym_identifier, - ACTIONS(3754), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1838), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2209), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [54125] = 4, - ACTIONS(858), 1, + [54241] = 4, + ACTIONS(850), 1, anon_sym_LBRACE, - STATE(1455), 1, + STATE(1426), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(2634), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54144] = 4, - ACTIONS(3926), 1, - anon_sym_PLUS, - STATE(1539), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3963), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54163] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, - sym_identifier, - STATE(2248), 1, - sym_enum_variant, - STATE(2335), 1, - sym_visibility_modifier, + [54260] = 5, + ACTIONS(3977), 1, + anon_sym_fn, + ACTIONS(3979), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1558), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54190] = 6, - ACTIONS(3507), 1, + STATE(1555), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3974), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54281] = 6, + ACTIONS(3505), 1, anon_sym_PIPE, - ACTIONS(3509), 1, + ACTIONS(3507), 1, anon_sym_COLON, - ACTIONS(3658), 1, + ACTIONS(3626), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3515), 2, + ACTIONS(3513), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, + ACTIONS(2606), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [54213] = 4, - ACTIONS(3467), 1, - anon_sym_trait, - ACTIONS(3965), 1, - anon_sym_impl, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54232] = 8, + [54304] = 8, ACTIONS(2313), 1, anon_sym_SQUOTE, - ACTIONS(3792), 1, + ACTIONS(3784), 1, anon_sym_const, - ACTIONS(3939), 1, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3941), 1, + ACTIONS(3926), 1, sym_metavariable, - STATE(1690), 1, + STATE(1724), 1, sym_lifetime, - STATE(1758), 1, + STATE(1847), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2006), 2, + STATE(1883), 2, sym_const_parameter, sym_optional_type_parameter, - [54259] = 9, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - STATE(820), 1, - sym_declaration_list, - STATE(1644), 1, - sym_type_parameters, - STATE(1807), 1, - sym_trait_bounds, - STATE(2194), 1, - sym_where_clause, + [54331] = 4, + ACTIONS(706), 1, + aux_sym_string_literal_token1, + STATE(1553), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54288] = 8, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3724), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3796), 1, - sym_metavariable, - STATE(1773), 1, - sym_lifetime, - STATE(2041), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2164), 2, - sym_const_parameter, - sym_optional_type_parameter, - [54315] = 6, - ACTIONS(3509), 1, - anon_sym_COLON, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3568), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [54338] = 8, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54350] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + ACTIONS(3746), 1, sym_identifier, - STATE(2286), 1, + ACTIONS(3752), 1, + sym_crate, + STATE(2227), 1, sym_enum_variant, - STATE(2335), 1, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1157), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54365] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(3766), 1, - sym_crate, - ACTIONS(3772), 1, + [54377] = 8, + ACTIONS(786), 1, + anon_sym_DOT_DOT, + ACTIONS(3930), 1, sym_identifier, - STATE(2082), 1, - sym_enum_variant, - STATE(2335), 1, - sym_visibility_modifier, + ACTIONS(3936), 1, + anon_sym_ref, + ACTIONS(3938), 1, + sym_mutable_specifier, + ACTIONS(3982), 1, + anon_sym_RBRACE, + ACTIONS(3984), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [54392] = 8, + STATE(1878), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [54404] = 5, + ACTIONS(3988), 1, + anon_sym_fn, + ACTIONS(3990), 1, + anon_sym_extern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1555), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3986), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [54425] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - ACTIONS(3772), 1, + ACTIONS(3754), 1, sym_identifier, - STATE(2075), 1, - sym_enum_variant, - STATE(2335), 1, + STATE(2309), 1, + sym_field_declaration, + STATE(2325), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1157), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54419] = 4, - ACTIONS(706), 1, - aux_sym_string_literal_token1, - STATE(1530), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54438] = 8, + [54452] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2317), 1, anon_sym_POUND, - ACTIONS(3760), 1, + ACTIONS(3746), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3752), 1, sym_crate, - STATE(2028), 1, - sym_field_declaration, - STATE(2410), 1, + STATE(2300), 1, + sym_enum_variant, + STATE(2571), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, + STATE(1559), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [54465] = 9, - ACTIONS(3788), 1, + [54479] = 4, + ACTIONS(3957), 1, + anon_sym_PLUS, + STATE(1573), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3992), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3804), 1, anon_sym_where, - ACTIONS(3916), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54498] = 9, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(3918), 1, + ACTIONS(3942), 1, anon_sym_LT, - STATE(317), 1, + STATE(871), 1, sym_declaration_list, - STATE(1680), 1, + STATE(1694), 1, sym_type_parameters, - STATE(1778), 1, + STATE(1774), 1, sym_trait_bounds, - STATE(2167), 1, + STATE(2132), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54494] = 4, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, + [54527] = 9, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + STATE(960), 1, + sym_declaration_list, + STATE(1648), 1, + sym_type_parameters, + STATE(1808), 1, + sym_trait_bounds, + STATE(2204), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54513] = 7, - ACTIONS(3431), 1, + [54556] = 7, + ACTIONS(2606), 1, + anon_sym_PLUS, + ACTIONS(3505), 1, anon_sym_PIPE, - ACTIONS(3433), 1, - anon_sym_LPAREN, - ACTIONS(3437), 1, + ACTIONS(3507), 1, anon_sym_COLON, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3967), 1, + ACTIONS(3572), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, + ACTIONS(3513), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54537] = 6, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3971), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(3969), 2, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2079), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [54559] = 3, - ACTIONS(3973), 1, + [54581] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3746), 1, sym_identifier, + ACTIONS(3752), 1, + sym_crate, + STATE(2069), 1, + sym_enum_variant, + STATE(2571), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1157), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54608] = 4, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [54627] = 4, + ACTIONS(3469), 1, + anon_sym_trait, + ACTIONS(3994), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3860), 6, + ACTIONS(2634), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54575] = 2, + [54646] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(3746), 1, + sym_identifier, + ACTIONS(3752), 1, + sym_crate, + STATE(2051), 1, + sym_enum_variant, + STATE(2571), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54589] = 3, - ACTIONS(3975), 1, - sym_identifier, + STATE(1157), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [54673] = 4, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, + ACTIONS(3996), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3860), 6, + ACTIONS(2634), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54605] = 2, + [54692] = 4, + ACTIONS(4000), 1, + anon_sym_PLUS, + STATE(1573), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, + ACTIONS(3998), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54619] = 8, - ACTIONS(3800), 1, + [54711] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3977), 1, - anon_sym_SEMI, - STATE(823), 1, - sym_field_declaration_list, - STATE(2015), 1, - sym_ordered_field_declaration_list, - STATE(2191), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54645] = 2, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4009), 1, + anon_sym_RBRACK, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + STATE(2390), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3979), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [54659] = 3, - ACTIONS(3981), 1, - anon_sym_trait, + [54737] = 3, + ACTIONS(4015), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54675] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3904), 1, - sym_identifier, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, - ACTIONS(3983), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2263), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [54699] = 2, + [54753] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, + ACTIONS(3998), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118509,320 +116091,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [54713] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(3989), 1, - anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - STATE(1544), 1, - aux_sym_macro_definition_repeat1, - STATE(2121), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [54739] = 3, - ACTIONS(3993), 1, - sym_identifier, + [54767] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3860), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54755] = 8, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3998), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4001), 1, - anon_sym_RBRACK, - ACTIONS(4003), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, - STATE(2431), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, + anon_sym_COMMA, + anon_sym_GT, [54781] = 8, - ACTIONS(3985), 1, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4005), 1, + ACTIONS(4021), 1, anon_sym_RBRACE, - STATE(1544), 1, + ACTIONS(4023), 1, + anon_sym_LBRACK, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2143), 1, + STATE(2183), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54807] = 8, - ACTIONS(3985), 1, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4007), 1, + ACTIONS(4025), 1, anon_sym_RBRACE, - STATE(1544), 1, + STATE(1578), 1, aux_sym_macro_definition_repeat1, STATE(2141), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, [54833] = 8, - ACTIONS(3985), 1, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, - anon_sym_RBRACE, - STATE(1544), 1, + ACTIONS(4027), 1, + anon_sym_RPAREN, + STATE(1606), 1, aux_sym_macro_definition_repeat1, - STATE(2148), 1, + STATE(2121), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54859] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3989), 1, - anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4011), 1, - anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_macro_definition_repeat1, - STATE(2147), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, + [54859] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54885] = 3, - ACTIONS(4013), 1, + ACTIONS(3998), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [54873] = 3, + ACTIONS(4029), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3860), 6, + ACTIONS(3882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54901] = 8, - ACTIONS(3985), 1, + [54889] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4015), 1, + ACTIONS(4031), 1, anon_sym_RPAREN, - STATE(1544), 1, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2120), 1, + STATE(2184), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54927] = 3, + [54915] = 8, ACTIONS(4017), 1, - anon_sym_trait, + anon_sym_LPAREN, + ACTIONS(4019), 1, + anon_sym_LBRACE, + ACTIONS(4023), 1, + anon_sym_LBRACK, + ACTIONS(4033), 1, + anon_sym_RBRACE, + STATE(1608), 1, + aux_sym_macro_definition_repeat1, + STATE(2261), 1, + sym_macro_rule, + STATE(2545), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [54943] = 3, - ACTIONS(3546), 1, + [54941] = 8, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4009), 1, + anon_sym_RBRACK, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4035), 1, anon_sym_COLON_COLON, + STATE(2390), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [54967] = 3, + ACTIONS(4037), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [54959] = 8, - ACTIONS(3985), 1, + [54983] = 8, + ACTIONS(4003), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4005), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4007), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_macro_definition_repeat1, - STATE(2154), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, + ACTIONS(4009), 1, + anon_sym_RBRACK, + ACTIONS(4011), 1, + anon_sym_EQ, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + STATE(2390), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [54985] = 8, - ACTIONS(3800), 1, + [55009] = 8, + ACTIONS(3826), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3828), 1, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4021), 1, + ACTIONS(4041), 1, anon_sym_SEMI, - STATE(272), 1, + STATE(860), 1, sym_field_declaration_list, - STATE(2010), 1, + STATE(2113), 1, sym_ordered_field_declaration_list, - STATE(2196), 1, + STATE(2123), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55011] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3904), 1, - sym_identifier, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, - ACTIONS(4023), 1, - anon_sym_RBRACE, + [55035] = 6, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, + anon_sym_LBRACE, + ACTIONS(4045), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55035] = 8, - ACTIONS(3985), 1, + ACTIONS(4043), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2045), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55057] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_RBRACE, - STATE(1579), 1, + ACTIONS(4047), 1, + anon_sym_RPAREN, + STATE(1583), 1, aux_sym_macro_definition_repeat1, - STATE(2151), 1, + STATE(2143), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55061] = 2, + [55083] = 8, + ACTIONS(4017), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, + anon_sym_LBRACE, + ACTIONS(4023), 1, + anon_sym_LBRACK, + ACTIONS(4049), 1, + anon_sym_RPAREN, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2206), 1, + sym_macro_rule, + STATE(2545), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, - anon_sym_SEMI, + [55109] = 6, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + ACTIONS(4053), 1, anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4051), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [55075] = 8, - ACTIONS(3985), 1, + STATE(1893), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [55131] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, - anon_sym_RBRACE, - STATE(1544), 1, + ACTIONS(4055), 1, + anon_sym_RPAREN, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2145), 1, + STATE(2207), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55101] = 2, + [55157] = 7, + ACTIONS(3431), 1, + anon_sym_PIPE, + ACTIONS(3433), 1, + anon_sym_LPAREN, + ACTIONS(3437), 1, + anon_sym_COLON, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3930), 7, - anon_sym_SEMI, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [55181] = 8, + ACTIONS(4017), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [55115] = 8, - ACTIONS(3985), 1, + ACTIONS(4023), 1, + anon_sym_LBRACK, + ACTIONS(4059), 1, + anon_sym_RBRACE, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2153), 1, + sym_macro_rule, + STATE(2545), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55207] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4029), 1, + ACTIONS(4061), 1, anon_sym_RBRACE, - STATE(1580), 1, + STATE(1598), 1, aux_sym_macro_definition_repeat1, - STATE(2156), 1, + STATE(2149), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55141] = 2, + [55233] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4031), 7, + ACTIONS(3998), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -118830,998 +116436,1244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [55155] = 5, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3580), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3507), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [55175] = 8, - ACTIONS(3985), 1, + [55247] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4033), 1, - anon_sym_RPAREN, - STATE(1601), 1, + ACTIONS(4063), 1, + anon_sym_RBRACE, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2311), 1, + STATE(2151), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55201] = 8, - ACTIONS(3985), 1, + [55273] = 3, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55289] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4035), 1, - anon_sym_RBRACE, - STATE(1592), 1, + ACTIONS(4065), 1, + anon_sym_RPAREN, + STATE(1593), 1, aux_sym_macro_definition_repeat1, - STATE(2310), 1, + STATE(2239), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55227] = 8, - ACTIONS(3995), 1, + [55315] = 8, + ACTIONS(3826), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4037), 1, - anon_sym_RBRACK, - ACTIONS(4039), 1, - anon_sym_EQ, - ACTIONS(4041), 1, - anon_sym_COLON_COLON, - STATE(2432), 1, - sym_delim_token_tree, + ACTIONS(4067), 1, + anon_sym_SEMI, + STATE(957), 1, + sym_field_declaration_list, + STATE(2017), 1, + sym_ordered_field_declaration_list, + STATE(2201), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55253] = 3, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, + [55341] = 3, + ACTIONS(4069), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 6, + ACTIONS(3882), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55269] = 8, - ACTIONS(3985), 1, + [55357] = 7, + ACTIONS(786), 1, + anon_sym_DOT_DOT, + ACTIONS(3930), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_ref, + ACTIONS(3938), 1, + sym_mutable_specifier, + ACTIONS(4071), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2298), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55381] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4043), 1, + ACTIONS(4073), 1, anon_sym_RPAREN, - STATE(1544), 1, + STATE(1591), 1, aux_sym_macro_definition_repeat1, - STATE(2144), 1, + STATE(2233), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55295] = 8, - ACTIONS(3985), 1, + [55407] = 8, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + ACTIONS(4075), 1, + anon_sym_RBRACK, + ACTIONS(4077), 1, + anon_sym_EQ, + STATE(2387), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55433] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4079), 1, anon_sym_RPAREN, - STATE(1584), 1, + STATE(1539), 1, aux_sym_macro_definition_repeat1, - STATE(2169), 1, + STATE(2176), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55321] = 8, - ACTIONS(3995), 1, + [55459] = 7, + ACTIONS(786), 1, + anon_sym_DOT_DOT, + ACTIONS(3930), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_ref, + ACTIONS(3938), 1, + sym_mutable_specifier, + ACTIONS(4081), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2298), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55483] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3999), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4037), 1, - anon_sym_RBRACK, - ACTIONS(4039), 1, - anon_sym_EQ, - ACTIONS(4047), 1, + ACTIONS(4083), 1, + anon_sym_RBRACE, + STATE(1539), 1, + aux_sym_macro_definition_repeat1, + STATE(2173), 1, + sym_macro_rule, + STATE(2545), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55509] = 7, + ACTIONS(786), 1, + anon_sym_DOT_DOT, + ACTIONS(3930), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_ref, + ACTIONS(3938), 1, + sym_mutable_specifier, + ACTIONS(4085), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2298), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55533] = 8, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4087), 1, + anon_sym_SEMI, + STATE(298), 1, + sym_field_declaration_list, + STATE(1922), 1, + sym_ordered_field_declaration_list, + STATE(2317), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55559] = 3, + ACTIONS(2642), 1, anon_sym_COLON_COLON, - STATE(2432), 1, - sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55347] = 7, - ACTIONS(798), 1, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55575] = 3, + ACTIONS(4089), 1, + anon_sym_trait, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55591] = 8, + ACTIONS(3826), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4091), 1, + anon_sym_SEMI, + STATE(467), 1, + sym_field_declaration_list, + STATE(1927), 1, + sym_ordered_field_declaration_list, + STATE(2305), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55617] = 7, + ACTIONS(786), 1, anon_sym_DOT_DOT, - ACTIONS(3904), 1, + ACTIONS(3930), 1, sym_identifier, - ACTIONS(3910), 1, + ACTIONS(3936), 1, anon_sym_ref, - ACTIONS(3912), 1, + ACTIONS(3938), 1, sym_mutable_specifier, - ACTIONS(4049), 1, + ACTIONS(4093), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, + STATE(2298), 2, sym_field_pattern, sym_remaining_field_pattern, - [55371] = 8, - ACTIONS(3985), 1, + [55641] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3998), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55655] = 8, + ACTIONS(4017), 1, anon_sym_LPAREN, - ACTIONS(3989), 1, + ACTIONS(4019), 1, anon_sym_LBRACE, - ACTIONS(3991), 1, + ACTIONS(4023), 1, anon_sym_LBRACK, - ACTIONS(4051), 1, - anon_sym_RPAREN, - STATE(1582), 1, + ACTIONS(4095), 1, + anon_sym_RBRACE, + STATE(1595), 1, aux_sym_macro_definition_repeat1, - STATE(2309), 1, + STATE(2147), 1, sym_macro_rule, - STATE(2315), 1, + STATE(2545), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55397] = 6, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, + [55681] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4097), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4055), 1, + anon_sym_PLUS, + anon_sym_where, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55695] = 5, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3580), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4053), 2, - anon_sym_RBRACE, + ACTIONS(3513), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3505), 3, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1959), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [55419] = 7, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3904), 1, - sym_identifier, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, - ACTIONS(4057), 1, - anon_sym_RBRACE, + anon_sym_PIPE, + [55715] = 3, + ACTIONS(4099), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [55443] = 8, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - ACTIONS(4037), 1, - anon_sym_RBRACK, - ACTIONS(4039), 1, - anon_sym_EQ, - ACTIONS(4059), 1, - anon_sym_COLON_COLON, - STATE(2432), 1, - sym_delim_token_tree, + ACTIONS(2634), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [55731] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55469] = 8, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(4101), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3828), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [55745] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4061), 1, + ACTIONS(4103), 1, anon_sym_SEMI, - STATE(405), 1, - sym_field_declaration_list, - STATE(1925), 1, - sym_ordered_field_declaration_list, - STATE(2221), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + STATE(1004), 1, + sym_declaration_list, + STATE(2039), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55495] = 8, - ACTIONS(3985), 1, - anon_sym_LPAREN, - ACTIONS(3989), 1, - anon_sym_LBRACE, - ACTIONS(3991), 1, - anon_sym_LBRACK, - ACTIONS(4063), 1, - anon_sym_RBRACE, - STATE(1581), 1, - aux_sym_macro_definition_repeat1, - STATE(2308), 1, - sym_macro_rule, - STATE(2315), 1, - sym_token_tree_pattern, + [55768] = 5, + ACTIONS(4109), 1, + anon_sym_COLON, + ACTIONS(4111), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55521] = 8, - ACTIONS(3800), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4107), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55787] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4113), 1, + anon_sym_SEMI, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(4117), 1, + anon_sym_DASH_GT, + STATE(358), 1, + sym_block, + STATE(1921), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55810] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4065), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4119), 1, anon_sym_SEMI, - STATE(909), 1, - sym_field_declaration_list, - STATE(2105), 1, - sym_ordered_field_declaration_list, - STATE(2113), 1, + STATE(423), 1, + sym_declaration_list, + STATE(1989), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55547] = 7, - ACTIONS(3804), 1, + [55833] = 6, + ACTIONS(786), 1, + anon_sym_DOT_DOT, + ACTIONS(3930), 1, + sym_identifier, + ACTIONS(3936), 1, + anon_sym_ref, + ACTIONS(3938), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2298), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [55854] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2722), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(3692), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4121), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [55871] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4067), 1, + ACTIONS(4124), 1, anon_sym_SEMI, - ACTIONS(4069), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4071), 1, + ACTIONS(4128), 1, anon_sym_DASH_GT, - STATE(1041), 1, + STATE(1008), 1, sym_block, - STATE(1973), 1, + STATE(1984), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55570] = 7, - ACTIONS(3804), 1, + [55894] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4073), 1, + ACTIONS(4130), 1, anon_sym_SEMI, - ACTIONS(4075), 1, - anon_sym_PLUS, - STATE(863), 1, - sym_declaration_list, - STATE(2043), 1, + ACTIONS(4132), 1, + anon_sym_DASH_GT, + STATE(895), 1, + sym_block, + STATE(2049), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55593] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [55917] = 7, + ACTIONS(3562), 1, + anon_sym_EQ, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4134), 1, + anon_sym_COMMA, + ACTIONS(4136), 1, + anon_sym_GT, + STATE(1884), 1, + sym_trait_bounds, + STATE(2102), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [55940] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4077), 1, + ACTIONS(4138), 1, anon_sym_SEMI, - STATE(346), 1, + STATE(996), 1, sym_declaration_list, - STATE(1927), 1, + STATE(1994), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55616] = 3, + [55963] = 4, + ACTIONS(4121), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3623), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2646), 4, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(3692), 2, anon_sym_COMMA, - anon_sym_DASH_GT, - [55631] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4079), 1, + anon_sym_PIPE, + ACTIONS(2722), 3, anon_sym_SEMI, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4083), 1, + anon_sym_PLUS, anon_sym_DASH_GT, - STATE(397), 1, - sym_block, - STATE(1873), 1, - sym_where_clause, + [55980] = 4, + ACTIONS(4140), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55654] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3712), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2744), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [55997] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4085), 1, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4143), 1, anon_sym_SEMI, - STATE(334), 1, - sym_declaration_list, - STATE(1878), 1, + STATE(346), 1, + sym_block, + STATE(2047), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55677] = 7, - ACTIONS(3804), 1, + [56020] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(904), 1, - sym_declaration_list, - STATE(1771), 1, - sym_trait_bounds, - STATE(2115), 1, + ACTIONS(4145), 1, + anon_sym_SEMI, + STATE(370), 1, + sym_block, + STATE(1862), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55700] = 7, - ACTIONS(3804), 1, + [56043] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4087), 1, + ACTIONS(4147), 1, anon_sym_SEMI, - STATE(917), 1, - sym_block, - STATE(1991), 1, + STATE(942), 1, + sym_declaration_list, + STATE(1985), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55723] = 7, - ACTIONS(3788), 1, + [56066] = 7, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3916), 1, - anon_sym_COLON, + ACTIONS(3832), 1, + anon_sym_LT, STATE(264), 1, - sym_declaration_list, - STATE(1772), 1, - sym_trait_bounds, - STATE(2283), 1, + sym_field_declaration_list, + STATE(1770), 1, + sym_type_parameters, + STATE(2224), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55746] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [56089] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4089), 1, + ACTIONS(4149), 1, anon_sym_SEMI, - STATE(351), 1, + STATE(978), 1, sym_declaration_list, - STATE(1877), 1, + STATE(2000), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55769] = 7, - ACTIONS(3804), 1, + [56112] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4091), 1, + ACTIONS(4151), 1, anon_sym_SEMI, - STATE(894), 1, - sym_block, - STATE(1924), 1, + STATE(980), 1, + sym_declaration_list, + STATE(1999), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55792] = 7, - ACTIONS(3804), 1, + [56135] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4093), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - STATE(897), 1, - sym_declaration_list, - STATE(2100), 1, + ACTIONS(4155), 1, + anon_sym_DASH_GT, + STATE(462), 1, + sym_block, + STATE(1935), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55815] = 7, - ACTIONS(3804), 1, + [56158] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4095), 1, - anon_sym_SEMI, - STATE(460), 1, - sym_block, - STATE(1858), 1, + STATE(879), 1, + sym_field_declaration_list, + STATE(1782), 1, + sym_type_parameters, + STATE(2142), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55838] = 7, - ACTIONS(3788), 1, + [56181] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(4157), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + STATE(874), 1, + sym_enum_variant_list, + STATE(1781), 1, + sym_type_parameters, + STATE(2137), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56204] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4097), 1, + ACTIONS(4159), 1, anon_sym_SEMI, - STATE(465), 1, + STATE(353), 1, sym_declaration_list, - STATE(2035), 1, + STATE(1871), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55861] = 7, - ACTIONS(3804), 1, + [56227] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(390), 1, - sym_field_declaration_list, - STATE(1816), 1, - sym_type_parameters, - STATE(2242), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(433), 1, + sym_declaration_list, + STATE(1819), 1, + sym_trait_bounds, + STATE(2247), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55884] = 7, - ACTIONS(3804), 1, + [56250] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3712), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2744), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56265] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4161), 1, anon_sym_SEMI, - ACTIONS(4101), 1, + ACTIONS(4163), 1, anon_sym_DASH_GT, - STATE(255), 1, + STATE(1045), 1, sym_block, - STATE(1900), 1, + STATE(1980), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55907] = 4, - ACTIONS(4103), 1, - anon_sym_RBRACK, + [56288] = 5, + ACTIONS(4167), 1, + anon_sym_COLON, + ACTIONS(4169), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 2, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4165), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2750), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [55924] = 7, - ACTIONS(3249), 1, + [56307] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(4171), 1, anon_sym_LBRACE, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4106), 1, - sym_identifier, - ACTIONS(4108), 1, - anon_sym_STAR, - STATE(2060), 1, - sym_use_list, - STATE(2372), 1, - sym_type_arguments, + STATE(248), 1, + sym_enum_variant_list, + STATE(1815), 1, + sym_type_parameters, + STATE(2134), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55947] = 7, - ACTIONS(3249), 1, + [56330] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4106), 1, - sym_identifier, - ACTIONS(4108), 1, - anon_sym_STAR, - STATE(2060), 1, - sym_use_list, - STATE(2374), 1, - sym_type_arguments, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1043), 1, + sym_declaration_list, + STATE(1818), 1, + sym_trait_bounds, + STATE(2242), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56353] = 3, + ACTIONS(4173), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4175), 5, + sym__string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [56368] = 4, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3818), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55970] = 7, - ACTIONS(3804), 1, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4075), 1, + [56385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3692), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2722), 4, + anon_sym_RPAREN, anon_sym_PLUS, - ACTIONS(4081), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + [56400] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4110), 1, + ACTIONS(4177), 1, anon_sym_SEMI, - STATE(263), 1, + STATE(970), 1, sym_block, - STATE(1891), 1, + STATE(2001), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [55993] = 7, - ACTIONS(3804), 1, + [56423] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4112), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(890), 1, - sym_enum_variant_list, - STATE(1768), 1, - sym_type_parameters, - STATE(2127), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4179), 1, + anon_sym_SEMI, + STATE(344), 1, + sym_declaration_list, + STATE(2059), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56016] = 7, - ACTIONS(3788), 1, + [56446] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(863), 1, + sym_declaration_list, + STATE(1772), 1, + sym_trait_bounds, + STATE(2125), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56469] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4114), 1, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4181), 1, anon_sym_SEMI, - STATE(344), 1, - sym_declaration_list, - STATE(1926), 1, + ACTIONS(4183), 1, + anon_sym_DASH_GT, + STATE(341), 1, + sym_block, + STATE(1993), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56039] = 6, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, - ACTIONS(4116), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, + [56492] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4185), 1, + anon_sym_SEMI, + STATE(870), 1, + sym_declaration_list, + STATE(1943), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, + [56515] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4105), 1, anon_sym_PLUS, - anon_sym_as, - [56060] = 7, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - ACTIONS(4120), 1, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4187), 1, anon_sym_SEMI, - ACTIONS(4122), 1, - anon_sym_EQ, - STATE(1850), 1, - sym_type_parameters, - STATE(2318), 1, - sym_trait_bounds, + STATE(1052), 1, + sym_block, + STATE(1977), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56083] = 7, - ACTIONS(3804), 1, + [56538] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4124), 1, + ACTIONS(4189), 1, anon_sym_SEMI, - STATE(991), 1, - sym_block, - STATE(1944), 1, + STATE(921), 1, + sym_declaration_list, + STATE(2038), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56106] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3830), 1, - anon_sym_for, + [56561] = 7, + ACTIONS(3562), 1, + anon_sym_EQ, + ACTIONS(3564), 1, + anon_sym_COMMA, + ACTIONS(3566), 1, + anon_sym_GT, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1884), 1, + sym_trait_bounds, + STATE(1885), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56123] = 7, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(885), 1, - sym_field_declaration_list, - STATE(1761), 1, - sym_type_parameters, - STATE(2132), 1, - sym_where_clause, + [56584] = 6, + ACTIONS(3505), 1, + anon_sym_PIPE, + ACTIONS(3507), 1, + anon_sym_COLON, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3626), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56146] = 4, - ACTIONS(3523), 1, + ACTIONS(3513), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [56605] = 4, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - ACTIONS(3834), 1, + ACTIONS(3844), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56163] = 7, - ACTIONS(3804), 1, + [56622] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4126), 1, + ACTIONS(4191), 1, anon_sym_SEMI, - STATE(933), 1, + STATE(337), 1, sym_declaration_list, - STATE(2097), 1, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56186] = 7, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(3918), 1, - anon_sym_LT, - ACTIONS(4128), 1, - anon_sym_SEMI, - ACTIONS(4130), 1, - anon_sym_EQ, - STATE(1813), 1, - sym_type_parameters, - STATE(2479), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56209] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [56645] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4132), 1, + ACTIONS(4193), 1, anon_sym_SEMI, - STATE(250), 1, + STATE(252), 1, sym_declaration_list, - STATE(2020), 1, + STATE(2052), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56232] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3852), 1, - anon_sym_for, + [56668] = 7, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4195), 1, + sym_identifier, + ACTIONS(4197), 1, + anon_sym_STAR, + STATE(1951), 1, + sym_use_list, + STATE(2418), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56249] = 7, - ACTIONS(3804), 1, + [56691] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1036), 1, - sym_declaration_list, - STATE(1841), 1, - sym_trait_bounds, - STATE(2232), 1, + ACTIONS(4199), 1, + anon_sym_SEMI, + STATE(396), 1, + sym_block, + STATE(1998), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56272] = 7, - ACTIONS(3804), 1, + [56714] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4134), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4201), 1, anon_sym_SEMI, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - STATE(1008), 1, - sym_block, - STATE(1978), 1, + STATE(255), 1, + sym_declaration_list, + STATE(2055), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56295] = 7, - ACTIONS(3804), 1, + [56737] = 6, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, + ACTIONS(4203), 1, + anon_sym_COMMA, + ACTIONS(4205), 1, + anon_sym_GT, + STATE(1981), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 2, + anon_sym_PLUS, + anon_sym_as, + [56758] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4138), 1, + ACTIONS(4207), 1, anon_sym_SEMI, - ACTIONS(4140), 1, - anon_sym_DASH_GT, - STATE(829), 1, + STATE(389), 1, sym_block, - STATE(2019), 1, + STATE(1867), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56318] = 7, - ACTIONS(3804), 1, + [56781] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4142), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4209), 1, anon_sym_SEMI, - STATE(422), 1, - sym_block, - STATE(1865), 1, + STATE(316), 1, + sym_declaration_list, + STATE(2086), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56341] = 7, - ACTIONS(3802), 1, + [56804] = 7, + ACTIONS(3828), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3806), 1, + ACTIONS(3832), 1, anon_sym_LT, - STATE(976), 1, + STATE(391), 1, sym_field_declaration_list, - STATE(1812), 1, + STATE(1841), 1, sym_type_parameters, - STATE(2163), 1, + STATE(2217), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56364] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4144), 1, - anon_sym_SEMI, - ACTIONS(4146), 1, - anon_sym_DASH_GT, - STATE(414), 1, - sym_block, - STATE(1993), 1, - sym_where_clause, + [56827] = 7, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4211), 1, + anon_sym_COMMA, + ACTIONS(4213), 1, + anon_sym_GT, + STATE(1886), 1, + sym_trait_bounds, + STATE(1981), 1, + aux_sym_type_parameters_repeat1, + STATE(2108), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56387] = 4, - ACTIONS(3523), 1, + [56850] = 4, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - ACTIONS(3850), 1, + ACTIONS(3796), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56404] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3820), 1, - anon_sym_for, + [56867] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [56421] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(2744), 2, anon_sym_PLUS, - ACTIONS(4148), 1, - anon_sym_SEMI, - STATE(314), 1, - sym_declaration_list, - STATE(2034), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56444] = 6, - ACTIONS(3507), 1, - anon_sym_PIPE, - ACTIONS(3509), 1, + anon_sym_DASH_GT, + ACTIONS(3712), 2, anon_sym_COLON, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3658), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3515), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [56465] = 7, + anon_sym_PIPE, + ACTIONS(4140), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [56884] = 7, ACTIONS(2449), 1, anon_sym_PLUS, - ACTIONS(3916), 1, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(4116), 1, + ACTIONS(4203), 1, anon_sym_COMMA, - ACTIONS(4118), 1, + ACTIONS(4205), 1, anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, - STATE(1970), 1, + STATE(1886), 1, sym_trait_bounds, + STATE(1981), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56488] = 7, - ACTIONS(3804), 1, + [56907] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4150), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4215), 1, anon_sym_SEMI, - STATE(360), 1, - sym_block, - STATE(1941), 1, + STATE(1076), 1, + sym_declaration_list, + STATE(1972), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56511] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [56930] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4152), 1, + ACTIONS(4217), 1, anon_sym_SEMI, - STATE(352), 1, + STATE(307), 1, sym_declaration_list, - STATE(1997), 1, + STATE(2079), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56534] = 7, - ACTIONS(3804), 1, + [56953] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4154), 1, + ACTIONS(4219), 1, anon_sym_SEMI, - STATE(837), 1, + STATE(1079), 1, sym_declaration_list, - STATE(2026), 1, + STATE(1971), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56557] = 5, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4160), 1, + [56976] = 4, + ACTIONS(4111), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -119829,227 +117681,167 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4156), 2, + ACTIONS(2606), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [56576] = 4, - ACTIONS(3523), 1, + [56993] = 4, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - ACTIONS(3782), 1, + ACTIONS(3814), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56593] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4069), 1, + [57010] = 7, + ACTIONS(3295), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4162), 1, - anon_sym_SEMI, - STATE(914), 1, - sym_block, - STATE(1938), 1, - sym_where_clause, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4195), 1, + sym_identifier, + ACTIONS(4197), 1, + anon_sym_STAR, + STATE(1951), 1, + sym_use_list, + STATE(2424), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56616] = 7, - ACTIONS(3804), 1, + [57033] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(832), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4221), 1, + anon_sym_SEMI, + STATE(840), 1, sym_declaration_list, - STATE(1800), 1, - sym_trait_bounds, - STATE(2182), 1, + STATE(2107), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56639] = 7, - ACTIONS(3804), 1, + [57056] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4164), 1, + ACTIONS(4223), 1, anon_sym_SEMI, - ACTIONS(4166), 1, - anon_sym_DASH_GT, - STATE(287), 1, + STATE(1088), 1, sym_block, - STATE(1907), 1, + STATE(1967), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56662] = 7, - ACTIONS(3804), 1, + [57079] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4168), 1, + ACTIONS(4225), 1, anon_sym_SEMI, - STATE(857), 1, + STATE(443), 1, sym_declaration_list, - STATE(2037), 1, + STATE(1911), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56685] = 7, - ACTIONS(3804), 1, + [57102] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4170), 1, + ACTIONS(4227), 1, anon_sym_SEMI, - ACTIONS(4172), 1, + ACTIONS(4229), 1, anon_sym_DASH_GT, - STATE(1123), 1, + STATE(829), 1, sym_block, - STATE(1949), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56708] = 5, - ACTIONS(4176), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4174), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56727] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2646), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3623), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4180), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [56744] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4112), 1, - anon_sym_LBRACE, - STATE(1022), 1, - sym_enum_variant_list, - STATE(1828), 1, - sym_type_parameters, - STATE(2200), 1, + STATE(2093), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56767] = 7, - ACTIONS(3804), 1, + [57125] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4183), 1, + ACTIONS(4231), 1, anon_sym_SEMI, - STATE(997), 1, - sym_declaration_list, - STATE(2029), 1, + ACTIONS(4233), 1, + anon_sym_DASH_GT, + STATE(1098), 1, + sym_block, + STATE(1963), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56790] = 7, - ACTIONS(3804), 1, + [57148] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4185), 1, - anon_sym_SEMI, - STATE(999), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(309), 1, sym_declaration_list, - STATE(1979), 1, + STATE(1816), 1, + sym_trait_bounds, + STATE(2177), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56813] = 7, - ACTIONS(3804), 1, + [57171] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4187), 1, - anon_sym_SEMI, - STATE(939), 1, - sym_declaration_list, - STATE(1990), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56836] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4189), 1, + ACTIONS(4235), 1, anon_sym_SEMI, - STATE(993), 1, - sym_declaration_list, - STATE(1983), 1, + STATE(464), 1, + sym_block, + STATE(1923), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56859] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4081), 1, + [57194] = 3, + ACTIONS(4237), 1, anon_sym_LBRACE, - ACTIONS(4191), 1, - anon_sym_SEMI, - ACTIONS(4193), 1, - anon_sym_DASH_GT, - STATE(447), 1, - sym_block, - STATE(2062), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56882] = 4, - ACTIONS(4160), 1, + ACTIONS(4239), 5, + sym__string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [57209] = 5, + ACTIONS(4109), 1, + anon_sym_COLON, + ACTIONS(4241), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -120057,134 +117849,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, + ACTIONS(4107), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [56899] = 7, - ACTIONS(3804), 1, + [57228] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4195), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4243), 1, anon_sym_SEMI, - ACTIONS(4197), 1, - anon_sym_DASH_GT, - STATE(956), 1, - sym_block, - STATE(2083), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56922] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_field_declaration_list, - STATE(1776), 1, - sym_type_parameters, - STATE(2128), 1, + STATE(901), 1, + sym_declaration_list, + STATE(2026), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56945] = 7, - ACTIONS(3804), 1, + [57251] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3806), 1, + ACTIONS(3832), 1, anon_sym_LT, - ACTIONS(4199), 1, + ACTIONS(4157), 1, anon_sym_LBRACE, - STATE(323), 1, + STATE(849), 1, sym_enum_variant_list, - STATE(1764), 1, + STATE(1807), 1, sym_type_parameters, - STATE(2161), 1, + STATE(2197), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56968] = 7, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(4203), 1, - anon_sym_GT, - STATE(1968), 1, - sym_trait_bounds, - STATE(2092), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56991] = 7, - ACTIONS(3804), 1, + [57274] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4205), 1, + ACTIONS(4245), 1, anon_sym_SEMI, - STATE(1059), 1, - sym_block, - STATE(1967), 1, + STATE(324), 1, + sym_declaration_list, + STATE(1887), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57014] = 4, - ACTIONS(3523), 1, + [57297] = 4, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - ACTIONS(3816), 1, + ACTIONS(3904), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57031] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [57314] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3916), 1, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, anon_sym_COLON, - STATE(423), 1, + STATE(947), 1, sym_declaration_list, - STATE(1844), 1, + STATE(1805), 1, sym_trait_bounds, - STATE(2206), 1, + STATE(2192), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57054] = 4, - ACTIONS(4180), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3623), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2646), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [57071] = 4, - ACTIONS(4207), 1, + [57337] = 4, + ACTIONS(4247), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -120192,650 +117938,554 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, + ACTIONS(2606), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_PLUS, - [57088] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4209), 1, - anon_sym_SEMI, - STATE(372), 1, - sym_block, - STATE(1876), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57111] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4211), 1, - anon_sym_SEMI, - STATE(480), 1, - sym_declaration_list, - STATE(2033), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57134] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4213), 1, - anon_sym_SEMI, - STATE(433), 1, - sym_declaration_list, - STATE(2007), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57157] = 4, - ACTIONS(3523), 1, + [57354] = 4, + ACTIONS(3528), 1, anon_sym_COLON_COLON, - ACTIONS(3784), 1, + ACTIONS(3878), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 4, + ACTIONS(2606), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57174] = 7, - ACTIONS(3554), 1, - anon_sym_EQ, - ACTIONS(3556), 1, - anon_sym_COMMA, - ACTIONS(3558), 1, - anon_sym_GT, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1968), 1, - sym_trait_bounds, - STATE(1969), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57197] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [57371] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4215), 1, + ACTIONS(4249), 1, anon_sym_SEMI, - STATE(296), 1, + STATE(912), 1, sym_declaration_list, - STATE(1910), 1, + STATE(2040), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57220] = 7, - ACTIONS(3804), 1, + [57394] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4217), 1, + ACTIONS(4251), 1, anon_sym_SEMI, - STATE(1108), 1, + ACTIONS(4253), 1, + anon_sym_DASH_GT, + STATE(317), 1, sym_block, - STATE(1952), 1, + STATE(2074), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57243] = 7, - ACTIONS(3916), 1, + [57417] = 7, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(4219), 1, - anon_sym_COMMA, - ACTIONS(4221), 1, - anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, - STATE(1970), 1, + ACTIONS(3942), 1, + anon_sym_LT, + ACTIONS(4255), 1, + anon_sym_SEMI, + ACTIONS(4257), 1, + anon_sym_EQ, + STATE(1843), 1, + sym_type_parameters, + STATE(2506), 1, sym_trait_bounds, - STATE(2046), 1, - aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57266] = 3, + [57440] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4259), 1, + anon_sym_SEMI, + ACTIONS(4261), 1, + anon_sym_DASH_GT, + STATE(474), 1, + sym_block, + STATE(1865), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [57463] = 4, + ACTIONS(4241), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3704), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2750), 4, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2606), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH_GT, - [57281] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4075), 1, + [57480] = 4, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3922), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4081), 1, + anon_sym_where, + [57497] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4263), 1, anon_sym_SEMI, - STATE(388), 1, - sym_block, - STATE(1861), 1, + STATE(274), 1, + sym_declaration_list, + STATE(1936), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57304] = 7, - ACTIONS(3804), 1, + [57520] = 4, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3912), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2606), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [57537] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3806), 1, + ACTIONS(3832), 1, anon_sym_LT, - ACTIONS(4199), 1, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(277), 1, + STATE(278), 1, sym_enum_variant_list, - STATE(1783), 1, + STATE(1827), 1, sym_type_parameters, - STATE(2170), 1, + STATE(2283), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57327] = 7, - ACTIONS(3804), 1, + [57560] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4225), 1, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4265), 1, anon_sym_SEMI, - STATE(947), 1, - sym_declaration_list, - STATE(1989), 1, + STATE(1116), 1, + sym_block, + STATE(1960), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57350] = 6, - ACTIONS(798), 1, - anon_sym_DOT_DOT, - ACTIONS(3904), 1, - sym_identifier, - ACTIONS(3910), 1, - anon_sym_ref, - ACTIONS(3912), 1, - sym_mutable_specifier, + [57583] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_SEMI, + STATE(1126), 1, + sym_block, + STATE(1958), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2263), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [57371] = 4, - ACTIONS(4227), 1, - anon_sym_COLON_COLON, + [57606] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4269), 1, + anon_sym_SEMI, + STATE(449), 1, + sym_declaration_list, + STATE(1913), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2598), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57388] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [57629] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3916), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, anon_sym_COLON, - STATE(293), 1, + STATE(291), 1, sym_declaration_list, - STATE(1797), 1, + STATE(1833), 1, sym_trait_bounds, - STATE(2124), 1, + STATE(2299), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57411] = 7, - ACTIONS(3804), 1, + [57652] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4069), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4271), 1, anon_sym_SEMI, - ACTIONS(4231), 1, - anon_sym_DASH_GT, - STATE(875), 1, + STATE(1072), 1, sym_block, - STATE(2063), 1, + STATE(1955), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57434] = 5, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_COLON_COLON, + [57675] = 3, + ACTIONS(4273), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4156), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57453] = 4, + ACTIONS(4275), 5, + sym__string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + [57690] = 7, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4277), 1, + anon_sym_SEMI, + ACTIONS(4279), 1, + anon_sym_DASH_GT, + STATE(329), 1, + sym_block, + STATE(2060), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3704), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4103), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57470] = 7, - ACTIONS(3804), 1, + [57713] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4233), 1, - anon_sym_SEMI, - STATE(1095), 1, - sym_declaration_list, - STATE(1957), 1, + STATE(1016), 1, + sym_field_declaration_list, + STATE(1792), 1, + sym_type_parameters, + STATE(2164), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57493] = 7, - ACTIONS(3804), 1, + [57736] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4081), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4235), 1, + ACTIONS(4281), 1, anon_sym_SEMI, - ACTIONS(4237), 1, + ACTIONS(4283), 1, anon_sym_DASH_GT, - STATE(331), 1, + STATE(951), 1, sym_block, - STATE(1903), 1, + STATE(2019), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57516] = 7, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4239), 1, + [57759] = 7, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(3942), 1, + anon_sym_LT, + ACTIONS(4285), 1, anon_sym_SEMI, - STATE(1097), 1, - sym_declaration_list, - STATE(1956), 1, - sym_where_clause, + ACTIONS(4287), 1, + anon_sym_EQ, + STATE(1793), 1, + sym_type_parameters, + STATE(2516), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57539] = 7, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [57782] = 7, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4075), 1, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4241), 1, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4289), 1, anon_sym_SEMI, - STATE(305), 1, - sym_declaration_list, - STATE(1911), 1, + STATE(245), 1, + sym_block, + STATE(2021), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57562] = 2, + [57805] = 4, + ACTIONS(4241), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4243), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4165), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [57574] = 4, - ACTIONS(4247), 1, - anon_sym_as, - ACTIONS(4249), 1, - anon_sym_COLON_COLON, + [57821] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 3, + ACTIONS(4291), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [57590] = 5, - ACTIONS(4251), 1, - anon_sym_RPAREN, - ACTIONS(4253), 1, - anon_sym_COMMA, - STATE(2066), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, + [57833] = 6, + ACTIONS(3640), 1, anon_sym_PIPE, - [57608] = 5, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(4257), 1, - anon_sym_COMMA, - STATE(2070), 1, - aux_sym_parameters_repeat1, + ACTIONS(4293), 1, + anon_sym_SEMI, + ACTIONS(4295), 1, + anon_sym_COLON, + ACTIONS(4297), 1, + anon_sym_EQ, + ACTIONS(4299), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57626] = 2, + [57853] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3056), 5, + ACTIONS(4301), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, - [57638] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2598), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57652] = 6, - ACTIONS(3916), 1, - anon_sym_COLON, - ACTIONS(4116), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, - STATE(1970), 1, - sym_trait_bounds, + [57865] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57672] = 6, + ACTIONS(3947), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [57877] = 6, ACTIONS(3445), 1, anon_sym_LT2, + ACTIONS(3449), 1, + anon_sym_LPAREN, ACTIONS(3451), 1, anon_sym_COLON_COLON, - ACTIONS(3552), 1, - anon_sym_COLON, - STATE(1342), 1, + STATE(1344), 1, sym_type_arguments, - STATE(2071), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [57692] = 2, + STATE(1363), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4259), 5, + [57897] = 6, + ACTIONS(4303), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, + ACTIONS(4305), 1, + anon_sym_COLON, + ACTIONS(4307), 1, anon_sym_EQ, - anon_sym_COMMA, - [57704] = 2, + ACTIONS(4309), 1, + anon_sym_else, + ACTIONS(4311), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4261), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57716] = 6, - ACTIONS(3916), 1, + [57917] = 6, + ACTIONS(3940), 1, anon_sym_COLON, - ACTIONS(4263), 1, + ACTIONS(4203), 1, anon_sym_COMMA, - ACTIONS(4265), 1, + ACTIONS(4205), 1, anon_sym_GT, - STATE(1970), 1, + STATE(1886), 1, sym_trait_bounds, - STATE(2094), 1, + STATE(1981), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57736] = 3, + [57937] = 4, + ACTIONS(4315), 1, + anon_sym_as, + ACTIONS(4317), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3660), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2896), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57750] = 5, - ACTIONS(4267), 1, - anon_sym_RPAREN, - ACTIONS(4270), 1, + ACTIONS(4313), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_parameters_repeat1, + [57953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3431), 2, anon_sym_COLON, anon_sym_PIPE, - [57768] = 4, - ACTIONS(4160), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4273), 2, + ACTIONS(2606), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [57784] = 2, + [57967] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4275), 5, + ACTIONS(4319), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57796] = 4, - ACTIONS(4227), 1, - anon_sym_COLON_COLON, + [57979] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4174), 2, - anon_sym_RPAREN, + ACTIONS(4321), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [57812] = 4, - ACTIONS(4247), 1, - anon_sym_as, - ACTIONS(4277), 1, - anon_sym_COLON_COLON, + [57991] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 3, + ACTIONS(4323), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [57828] = 2, + [58003] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4279), 5, + ACTIONS(4325), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57840] = 5, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4281), 1, - anon_sym_COMMA, - STATE(1943), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, - anon_sym_PIPE, - [57858] = 2, + [58015] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4283), 5, + ACTIONS(4327), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57870] = 2, + [58027] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3042), 5, + ACTIONS(3052), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57882] = 2, + [58039] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3038), 5, + ACTIONS(3044), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_where, anon_sym_EQ, - [57894] = 2, + [58051] = 6, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + STATE(797), 1, + sym_parameters, + STATE(1344), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4285), 5, - anon_sym_SEMI, + [58071] = 5, + ACTIONS(4331), 1, anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57906] = 4, - ACTIONS(2598), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3431), 2, + ACTIONS(4333), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4287), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57922] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4290), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57934] = 4, - ACTIONS(4287), 1, - anon_sym_RBRACK, + STATE(2505), 1, + sym_format_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2598), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3431), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [57950] = 5, - ACTIONS(762), 1, + ACTIONS(4329), 2, + sym_integer_literal, + sym_identifier, + [58089] = 5, + ACTIONS(4335), 1, anon_sym_RPAREN, - ACTIONS(4292), 1, + ACTIONS(4337), 1, anon_sym_COMMA, - STATE(1995), 1, + STATE(1952), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -120843,219 +118493,214 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3431), 2, anon_sym_COLON, anon_sym_PIPE, - [57968] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4294), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [57980] = 2, + [58107] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4296), 5, + ACTIONS(4339), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [57992] = 2, + [58119] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4298), 5, + ACTIONS(4341), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58004] = 6, - ACTIONS(3598), 1, + [58131] = 6, + ACTIONS(3640), 1, anon_sym_PIPE, - ACTIONS(4300), 1, + ACTIONS(4343), 1, anon_sym_SEMI, - ACTIONS(4302), 1, + ACTIONS(4345), 1, anon_sym_COLON, - ACTIONS(4304), 1, + ACTIONS(4347), 1, anon_sym_EQ, - ACTIONS(4306), 1, + ACTIONS(4349), 1, anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58024] = 6, - ACTIONS(4308), 1, - anon_sym_SEMI, - ACTIONS(4310), 1, - anon_sym_COLON, - ACTIONS(4312), 1, - anon_sym_EQ, - ACTIONS(4314), 1, - anon_sym_else, - ACTIONS(4316), 1, - anon_sym_PIPE, + [58151] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58044] = 2, + ACTIONS(3060), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58163] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4318), 5, + ACTIONS(3064), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_where, anon_sym_EQ, + [58175] = 5, + ACTIONS(4351), 1, + anon_sym_RPAREN, + ACTIONS(4354), 1, anon_sym_COMMA, - [58056] = 4, - ACTIONS(2896), 1, - anon_sym_PLUS, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3660), 2, + ACTIONS(3431), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4320), 2, - anon_sym_RPAREN, + [58193] = 3, + ACTIONS(4357), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2718), 4, + anon_sym_PLUS, anon_sym_COMMA, - [58072] = 2, + anon_sym_GT, + anon_sym_COLON_COLON, + [58207] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4323), 5, + ACTIONS(4359), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58084] = 6, - ACTIONS(2552), 1, - anon_sym_LPAREN, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3451), 1, + [58219] = 4, + ACTIONS(4315), 1, + anon_sym_as, + ACTIONS(4361), 1, anon_sym_COLON_COLON, - STATE(781), 1, - sym_parameters, - STATE(1342), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58104] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3086), 5, + ACTIONS(4313), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58116] = 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [58235] = 4, + ACTIONS(2606), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3060), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3431), 2, anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58128] = 4, - ACTIONS(4227), 1, - anon_sym_COLON_COLON, + anon_sym_PIPE, + ACTIONS(4363), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58251] = 4, + ACTIONS(2794), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4273), 2, + ACTIONS(3659), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4366), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58144] = 6, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3451), 1, - anon_sym_COLON_COLON, - STATE(1342), 1, - sym_type_arguments, - STATE(1353), 1, - sym_parameters, + [58267] = 5, + ACTIONS(756), 1, + anon_sym_RPAREN, + ACTIONS(4369), 1, + anon_sym_COMMA, + STATE(2005), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3431), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58285] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58164] = 2, + ACTIONS(3659), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2794), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [58299] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4325), 5, + ACTIONS(4371), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [58176] = 6, - ACTIONS(3598), 1, - anon_sym_PIPE, - ACTIONS(4327), 1, - anon_sym_SEMI, - ACTIONS(4329), 1, - anon_sym_COLON, - ACTIONS(4331), 1, - anon_sym_EQ, - ACTIONS(4333), 1, - anon_sym_else, + [58311] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58196] = 3, - ACTIONS(4335), 1, + ACTIONS(4373), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, anon_sym_EQ, + anon_sym_COMMA, + [58323] = 6, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3451), 1, + anon_sym_COLON_COLON, + ACTIONS(3560), 1, + anon_sym_COLON, + STATE(1344), 1, + sym_type_arguments, + STATE(2057), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 4, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, - [58210] = 6, - ACTIONS(4316), 1, + [58343] = 6, + ACTIONS(4311), 1, anon_sym_PIPE, - ACTIONS(4337), 1, + ACTIONS(4375), 1, anon_sym_RPAREN, - ACTIONS(4339), 1, + ACTIONS(4377), 1, anon_sym_COLON, - ACTIONS(4341), 1, + ACTIONS(4379), 1, anon_sym_COMMA, - STATE(2061), 1, + STATE(2084), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58230] = 4, - ACTIONS(4247), 1, - anon_sym_as, - ACTIONS(4343), 1, - anon_sym_COLON_COLON, + [58363] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4245), 3, + ACTIONS(3024), 5, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58246] = 4, - ACTIONS(4160), 1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + anon_sym_EQ, + [58375] = 4, + ACTIONS(4111), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -121063,84 +118708,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4174), 2, + ACTIONS(4165), 2, anon_sym_RPAREN, anon_sym_COMMA, - [58262] = 6, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4345), 1, + [58391] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3020), 5, anon_sym_SEMI, - ACTIONS(4347), 1, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(4349), 1, + anon_sym_where, anon_sym_EQ, - ACTIONS(4351), 1, - anon_sym_else, + [58403] = 5, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4381), 1, + anon_sym_COMMA, + STATE(2042), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58282] = 2, + ACTIONS(3431), 2, + anon_sym_COLON, + anon_sym_PIPE, + [58421] = 4, + ACTIONS(4111), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3950), 5, - anon_sym_LPAREN, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4383), 2, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [58294] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3090), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - anon_sym_EQ, - [58306] = 4, - ACTIONS(4320), 1, + anon_sym_COMMA, + [58437] = 4, + ACTIONS(4363), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2896), 2, + ACTIONS(2606), 2, anon_sym_SEMI, anon_sym_PLUS, - ACTIONS(3660), 2, + ACTIONS(3431), 2, anon_sym_COMMA, anon_sym_PIPE, - [58322] = 5, - ACTIONS(3554), 1, + [58453] = 5, + ACTIONS(3562), 1, anon_sym_EQ, - ACTIONS(3916), 1, + ACTIONS(3940), 1, anon_sym_COLON, - STATE(1968), 1, + STATE(1884), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4353), 2, + ACTIONS(4385), 2, anon_sym_COMMA, anon_sym_GT, - [58340] = 4, - ACTIONS(4357), 1, - anon_sym_as, - ACTIONS(4359), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4355), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [58356] = 4, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4178), 1, + [58471] = 4, + ACTIONS(4241), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -121148,2637 +118780,2697 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58371] = 5, - ACTIONS(4116), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - ACTIONS(4361), 1, - anon_sym_EQ, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58388] = 5, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4337), 1, + ACTIONS(4383), 2, anon_sym_RPAREN, - ACTIONS(4341), 1, anon_sym_COMMA, - STATE(2061), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58405] = 5, - ACTIONS(4363), 1, - anon_sym_LPAREN, - ACTIONS(4365), 1, - anon_sym_LBRACE, - ACTIONS(4367), 1, - anon_sym_LBRACK, - STATE(1336), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58422] = 5, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(821), 1, - sym_field_declaration_list, - STATE(2193), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58439] = 4, - ACTIONS(4369), 1, - anon_sym_DQUOTE, - STATE(1774), 1, - aux_sym_string_literal_repeat1, + [58487] = 4, + ACTIONS(4366), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4371), 2, - sym__string_content, - sym_escape_sequence, - [58454] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(912), 1, - sym_line_comment, - ACTIONS(4373), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4375), 3, + ACTIONS(2794), 2, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [58469] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(411), 1, - sym_enum_variant_list, - STATE(2213), 1, - sym_where_clause, + ACTIONS(3659), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [58503] = 4, + ACTIONS(4389), 1, + anon_sym_as, + ACTIONS(4391), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58486] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(833), 1, - sym_declaration_list, - STATE(2181), 1, - sym_where_clause, + ACTIONS(4387), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [58519] = 6, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(4393), 1, + anon_sym_SEMI, + ACTIONS(4395), 1, + anon_sym_COLON, + ACTIONS(4397), 1, + anon_sym_EQ, + ACTIONS(4399), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58503] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [58539] = 6, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4401), 1, + anon_sym_COMMA, + ACTIONS(4403), 1, + anon_sym_GT, + STATE(1886), 1, + sym_trait_bounds, + STATE(2104), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4377), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [58516] = 5, - ACTIONS(762), 1, + [58559] = 5, + ACTIONS(4405), 1, anon_sym_RPAREN, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4292), 1, + ACTIONS(4407), 1, anon_sym_COMMA, - STATE(1995), 1, + STATE(2061), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58533] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4112), 1, - anon_sym_LBRACE, - STATE(827), 1, - sym_enum_variant_list, - STATE(2188), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58550] = 5, - ACTIONS(4379), 1, - anon_sym_LPAREN, - ACTIONS(4381), 1, - anon_sym_LBRACE, - ACTIONS(4383), 1, - anon_sym_LBRACK, - STATE(81), 1, - sym_delim_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58567] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, ACTIONS(3431), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4385), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58580] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(845), 1, - sym_declaration_list, - STATE(2176), 1, - sym_where_clause, + [58577] = 4, + ACTIONS(4315), 1, + anon_sym_as, + ACTIONS(4409), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58597] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(385), 1, - sym_declaration_list, - STATE(2306), 1, - sym_where_clause, + ACTIONS(4313), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [58593] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58614] = 4, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1970), 1, - sym_trait_bounds, + ACTIONS(4411), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + [58605] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, + ACTIONS(4413), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [58629] = 4, - ACTIONS(4389), 1, - anon_sym_DQUOTE, - STATE(1839), 1, - aux_sym_string_literal_repeat1, + [58617] = 5, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3830), 1, + anon_sym_where, + STATE(460), 1, + sym_field_declaration_list, + STATE(2314), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 2, - sym__string_content, - sym_escape_sequence, - [58644] = 5, + [58634] = 5, + ACTIONS(3445), 1, + anon_sym_LT2, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(1646), 1, + STATE(1341), 1, + sym_type_arguments, + STATE(1350), 1, sym_parameters, - STATE(2112), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58661] = 5, - ACTIONS(3804), 1, + [58651] = 5, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3828), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(403), 1, - sym_field_declaration_list, - STATE(2223), 1, + STATE(937), 1, + sym_declaration_list, + STATE(2186), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58678] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(1627), 1, - sym_parameters, - STATE(2234), 1, - sym_type_parameters, + [58668] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4415), 1, + anon_sym_SEMI, + ACTIONS(4417), 1, + anon_sym_EQ, + ACTIONS(4419), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58695] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [58685] = 5, + ACTIONS(3830), 1, anon_sym_where, - STATE(425), 1, + ACTIONS(3874), 1, + anon_sym_LBRACE, + STATE(946), 1, sym_declaration_list, - STATE(2205), 1, + STATE(2191), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58712] = 5, - ACTIONS(4363), 1, + [58702] = 5, + ACTIONS(4421), 1, anon_sym_LPAREN, - ACTIONS(4365), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - ACTIONS(4367), 1, + ACTIONS(4425), 1, anon_sym_LBRACK, - STATE(1333), 1, + STATE(68), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58729] = 4, + [58719] = 4, ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4393), 1, + ACTIONS(4427), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(869), 2, + STATE(906), 2, sym_if_expression, sym_block, - [58744] = 5, - ACTIONS(4075), 1, + [58734] = 5, + ACTIONS(2449), 1, anon_sym_PLUS, - ACTIONS(4255), 1, + ACTIONS(4429), 1, + anon_sym_COMMA, + ACTIONS(4431), 1, + anon_sym_GT, + STATE(2044), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58751] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4429), 1, + anon_sym_COMMA, + ACTIONS(4431), 1, + anon_sym_GT, + STATE(2044), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58768] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4405), 1, anon_sym_RPAREN, - ACTIONS(4257), 1, + ACTIONS(4407), 1, anon_sym_COMMA, - STATE(2070), 1, + STATE(2061), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58761] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4395), 1, - anon_sym_SEMI, - ACTIONS(4397), 1, - anon_sym_EQ, - ACTIONS(4399), 1, - anon_sym_else, + [58785] = 4, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1886), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58778] = 5, - ACTIONS(3804), 1, + ACTIONS(4433), 2, + anon_sym_COMMA, + anon_sym_GT, + [58800] = 5, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4199), 1, + ACTIONS(4157), 1, anon_sym_LBRACE, - STATE(394), 1, + STATE(953), 1, sym_enum_variant_list, - STATE(2293), 1, + STATE(2198), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58795] = 5, - ACTIONS(4401), 1, - anon_sym_LPAREN, - ACTIONS(4403), 1, + [58817] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3850), 1, anon_sym_LBRACE, - ACTIONS(4405), 1, - anon_sym_LBRACK, - STATE(1971), 1, - sym_token_tree, + STATE(959), 1, + sym_field_declaration_list, + STATE(2203), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58812] = 5, - ACTIONS(2449), 1, - anon_sym_PLUS, - ACTIONS(4407), 1, + [58834] = 4, + ACTIONS(4437), 1, anon_sym_COMMA, - ACTIONS(4409), 1, - anon_sym_GT, - STATE(2058), 1, - aux_sym_type_arguments_repeat1, + STATE(1783), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58829] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4407), 1, - anon_sym_COMMA, - ACTIONS(4409), 1, - anon_sym_GT, - STATE(2058), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4435), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [58849] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58846] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4251), 1, + ACTIONS(4435), 3, anon_sym_RPAREN, - ACTIONS(4253), 1, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(2066), 1, - aux_sym_parameters_repeat1, + [58862] = 5, + ACTIONS(4377), 1, + anon_sym_COLON, + ACTIONS(4440), 1, + anon_sym_COMMA, + ACTIONS(4442), 1, + anon_sym_PIPE, + STATE(2007), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58863] = 5, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3916), 1, + [58879] = 4, + ACTIONS(4109), 1, anon_sym_COLON, - STATE(1347), 1, - sym_type_arguments, - STATE(2074), 1, - sym_trait_bounds, + ACTIONS(4169), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58880] = 5, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4411), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58894] = 5, + ACTIONS(764), 1, anon_sym_RPAREN, - ACTIONS(4413), 1, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4381), 1, anon_sym_COMMA, - STATE(1904), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2042), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58897] = 4, - ACTIONS(4417), 1, + [58911] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(912), 1, + sym_line_comment, + ACTIONS(4444), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4446), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [58926] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4448), 1, + anon_sym_RPAREN, + ACTIONS(4450), 1, + anon_sym_COMMA, + STATE(1899), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58943] = 4, + ACTIONS(4452), 1, anon_sym_COMMA, - STATE(1794), 1, + STATE(1848), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4415), 2, + ACTIONS(3094), 2, anon_sym_SEMI, anon_sym_LBRACE, - [58912] = 5, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4419), 1, - anon_sym_RBRACK, - ACTIONS(4421), 1, - anon_sym_COMMA, - STATE(1905), 1, - aux_sym_tuple_pattern_repeat1, + [58958] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4454), 1, + anon_sym_SEMI, + ACTIONS(4456), 1, + anon_sym_EQ, + ACTIONS(4458), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58929] = 5, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1347), 1, - sym_type_arguments, - STATE(1356), 1, - sym_parameters, + [58975] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(868), 1, + sym_field_declaration_list, + STATE(2129), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58946] = 4, - ACTIONS(4423), 1, - anon_sym_DQUOTE, - STATE(1839), 1, - aux_sym_string_literal_repeat1, + [58992] = 5, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4460), 1, + anon_sym_SEMI, + ACTIONS(4462), 1, + anon_sym_EQ, + STATE(2559), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 2, - sym__string_content, - sym_escape_sequence, - [58961] = 4, - ACTIONS(4425), 1, + [59009] = 5, + ACTIONS(756), 1, + anon_sym_RPAREN, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4369), 1, anon_sym_COMMA, - STATE(1825), 1, - aux_sym_where_clause_repeat1, + STATE(2005), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3006), 2, - anon_sym_SEMI, + [59026] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, anon_sym_LBRACE, - [58976] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4427), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_GT, - STATE(2047), 1, - aux_sym_type_arguments_repeat1, + STATE(862), 1, + sym_declaration_list, + STATE(2124), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58993] = 4, - ACTIONS(632), 1, - anon_sym_LBRACE, - ACTIONS(4431), 1, - anon_sym_if, + [59043] = 4, + ACTIONS(4466), 1, + anon_sym_COMMA, + STATE(1790), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(233), 2, - sym_if_expression, - sym_block, - [59008] = 5, - ACTIONS(3788), 1, + ACTIONS(4464), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(246), 1, - sym_declaration_list, - STATE(2199), 1, - sym_where_clause, + [59058] = 5, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(3445), 1, + anon_sym_LT2, + STATE(798), 1, + sym_parameters, + STATE(1341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59025] = 5, - ACTIONS(4339), 1, - anon_sym_COLON, - ACTIONS(4433), 1, - anon_sym_COMMA, - ACTIONS(4435), 1, - anon_sym_PIPE, - STATE(1920), 1, - aux_sym_closure_parameters_repeat1, + [59075] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4468), 1, + anon_sym_SEMI, + ACTIONS(4470), 1, + anon_sym_EQ, + ACTIONS(4472), 1, + anon_sym_else, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59042] = 5, - ACTIONS(2449), 1, + [59092] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(912), 1, + sym_line_comment, + ACTIONS(4474), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4476), 3, anon_sym_PLUS, - ACTIONS(4427), 1, + anon_sym_STAR, + anon_sym_QMARK, + [59107] = 5, + ACTIONS(4401), 1, anon_sym_COMMA, - ACTIONS(4429), 1, + ACTIONS(4403), 1, anon_sym_GT, - STATE(2047), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4478), 1, + anon_sym_EQ, + STATE(2104), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59059] = 5, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(1004), 1, - sym_declaration_list, - STATE(2226), 1, - sym_where_clause, + [59124] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4480), 1, + anon_sym_RPAREN, + ACTIONS(4482), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59076] = 4, - ACTIONS(4437), 1, - anon_sym_DQUOTE, - STATE(1805), 1, - aux_sym_string_literal_repeat1, + [59141] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3832), 1, + anon_sym_LT, + STATE(1700), 1, + sym_parameters, + STATE(2234), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4439), 2, - sym__string_content, - sym_escape_sequence, - [59091] = 5, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4281), 1, - anon_sym_COMMA, - STATE(1943), 1, - aux_sym_parameters_repeat1, + [59158] = 4, + ACTIONS(2317), 1, + anon_sym_POUND, + ACTIONS(4484), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59108] = 5, - ACTIONS(4441), 1, - anon_sym_LPAREN, - ACTIONS(4443), 1, + STATE(1157), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [59173] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4445), 1, - anon_sym_LBRACK, - STATE(918), 1, - sym_delim_token_tree, + STATE(301), 1, + sym_declaration_list, + STATE(2174), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59125] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, + [59190] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3874), 1, + anon_sym_LBRACE, + STATE(984), 1, + sym_declaration_list, + STATE(2236), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4447), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59138] = 4, - ACTIONS(4449), 1, - anon_sym_DQUOTE, - STATE(1839), 1, - aux_sym_string_literal_repeat1, + [59207] = 5, + ACTIONS(4486), 1, + anon_sym_LPAREN, + ACTIONS(4488), 1, + anon_sym_LBRACE, + ACTIONS(4490), 1, + anon_sym_LBRACK, + STATE(1906), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 2, - sym__string_content, - sym_escape_sequence, - [59153] = 4, - ACTIONS(4451), 1, - anon_sym_COMMA, - STATE(1806), 1, - aux_sym_tuple_pattern_repeat1, + [59224] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4157), 1, + anon_sym_LBRACE, + STATE(1015), 1, + sym_enum_variant_list, + STATE(2138), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4447), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [59168] = 5, - ACTIONS(3804), 1, + [59241] = 5, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(1035), 1, + STATE(1042), 1, sym_declaration_list, - STATE(2231), 1, + STATE(2241), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59185] = 5, - ACTIONS(4441), 1, - anon_sym_LPAREN, - ACTIONS(4443), 1, - anon_sym_LBRACE, - ACTIONS(4445), 1, - anon_sym_LBRACK, - STATE(930), 1, - sym_delim_token_tree, + [59258] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4492), 1, + anon_sym_RPAREN, + ACTIONS(4494), 1, + anon_sym_COMMA, + STATE(2080), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59202] = 3, - ACTIONS(4454), 1, + [59275] = 3, + ACTIONS(4496), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4456), 3, + ACTIONS(4498), 3, sym_self, sym_super, sym_crate, - [59215] = 5, + [59288] = 5, ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, + ACTIONS(3832), 1, anon_sym_LT, - STATE(1612), 1, + STATE(1655), 1, sym_parameters, - STATE(2153), 1, + STATE(2319), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59232] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4458), 1, - anon_sym_SEMI, - ACTIONS(4460), 1, - anon_sym_EQ, - ACTIONS(4462), 1, - anon_sym_else, + [59305] = 5, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + STATE(1058), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59249] = 5, - ACTIONS(3802), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(900), 1, - sym_field_declaration_list, - STATE(2119), 1, - sym_where_clause, + [59322] = 3, + ACTIONS(4500), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59266] = 5, - ACTIONS(3916), 1, + ACTIONS(3640), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [59335] = 4, + ACTIONS(4167), 1, anon_sym_COLON, - ACTIONS(4464), 1, - anon_sym_SEMI, - ACTIONS(4466), 1, - anon_sym_EQ, - STATE(2437), 1, - sym_trait_bounds, + ACTIONS(4169), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59283] = 5, - ACTIONS(3804), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59350] = 5, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(808), 1, - sym_declaration_list, - STATE(2114), 1, + STATE(479), 1, + sym_enum_variant_list, + STATE(2291), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59300] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, + [59367] = 5, + ACTIONS(3830), 1, anon_sym_where, - STATE(266), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(477), 1, sym_declaration_list, - STATE(2280), 1, + STATE(2292), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59317] = 5, - ACTIONS(3804), 1, + [59384] = 4, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1886), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4502), 2, + anon_sym_COMMA, + anon_sym_GT, + [59399] = 5, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3828), 1, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(304), 1, - sym_field_declaration_list, - STATE(2172), 1, + STATE(1094), 1, + sym_declaration_list, + STATE(2265), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59334] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4468), 1, - anon_sym_SEMI, - ACTIONS(4470), 1, - anon_sym_EQ, - ACTIONS(4472), 1, - anon_sym_else, + [59416] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(279), 1, + sym_declaration_list, + STATE(2150), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59351] = 5, - ACTIONS(2552), 1, - anon_sym_LPAREN, + [59433] = 5, ACTIONS(3445), 1, anon_sym_LT2, - STATE(783), 1, - sym_parameters, - STATE(1347), 1, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(1341), 1, sym_type_arguments, + STATE(2056), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59368] = 3, - ACTIONS(4474), 1, - anon_sym_in, + [59450] = 5, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_LBRACE, + ACTIONS(4007), 1, + anon_sym_LBRACK, + STATE(850), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4476), 3, - sym_self, - sym_super, - sym_crate, - [59381] = 3, + [59467] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3431), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4478), 2, + ACTIONS(4505), 3, anon_sym_RPAREN, anon_sym_COMMA, - [59394] = 5, - ACTIONS(4075), 1, + anon_sym_PIPE, + [59480] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4480), 1, - anon_sym_RPAREN, - ACTIONS(4482), 1, - anon_sym_COMMA, - STATE(2024), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59411] = 5, - ACTIONS(4263), 1, - anon_sym_COMMA, - ACTIONS(4265), 1, - anon_sym_GT, - ACTIONS(4361), 1, - anon_sym_EQ, - STATE(2094), 1, - aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59428] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4484), 1, + ACTIONS(4507), 3, anon_sym_RPAREN, - ACTIONS(4486), 1, anon_sym_COMMA, - STATE(1918), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, + anon_sym_PIPE, + [59493] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(912), 1, sym_line_comment, - [59445] = 4, + ACTIONS(4509), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4511), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [59508] = 4, ACTIONS(3), 1, sym_block_comment, ACTIONS(912), 1, sym_line_comment, - ACTIONS(4488), 1, + ACTIONS(4513), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(4490), 3, + ACTIONS(4515), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [59460] = 4, - ACTIONS(4494), 1, - anon_sym_COMMA, - STATE(1825), 1, - aux_sym_where_clause_repeat1, + [59523] = 5, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4195), 1, + sym_identifier, + ACTIONS(4197), 1, + anon_sym_STAR, + STATE(1951), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4492), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [59475] = 4, - ACTIONS(15), 1, + [59540] = 5, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4171), 1, anon_sym_LBRACE, - ACTIONS(4497), 1, - anon_sym_if, + STATE(388), 1, + sym_enum_variant_list, + STATE(2195), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(66), 2, - sym_if_expression, - sym_block, - [59490] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4499), 1, - anon_sym_RPAREN, - ACTIONS(4501), 1, - anon_sym_COMMA, - STATE(2090), 1, - aux_sym_tuple_type_repeat1, + [59557] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3832), 1, + anon_sym_LT, + STATE(1645), 1, + sym_parameters, + STATE(2194), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59507] = 5, - ACTIONS(3804), 1, + [59574] = 5, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(4112), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(963), 1, - sym_enum_variant_list, - STATE(2149), 1, + STATE(430), 1, + sym_declaration_list, + STATE(2238), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59524] = 4, - ACTIONS(4503), 1, - anon_sym_DQUOTE, - STATE(1849), 1, - aux_sym_string_literal_repeat1, + [59591] = 5, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + anon_sym_LBRACE, + ACTIONS(4521), 1, + anon_sym_LBRACK, + STATE(1337), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4505), 2, - sym__string_content, - sym_escape_sequence, - [59539] = 5, - ACTIONS(3788), 1, + [59608] = 5, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4523), 1, + sym_identifier, + ACTIONS(4525), 1, + anon_sym_STAR, + STATE(1945), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59625] = 5, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, anon_sym_LBRACE, - ACTIONS(3804), 1, + ACTIONS(4521), 1, + anon_sym_LBRACK, + STATE(1338), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59642] = 5, + ACTIONS(3830), 1, anon_sym_where, - STATE(290), 1, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(411), 1, sym_declaration_list, - STATE(2185), 1, + STATE(2229), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59556] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4507), 1, + [59659] = 5, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(4527), 1, anon_sym_RPAREN, - ACTIONS(4509), 1, + ACTIONS(4529), 1, anon_sym_COMMA, - STATE(1963), 1, - aux_sym_tuple_type_repeat1, + STATE(1920), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59573] = 4, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(1970), 1, - sym_trait_bounds, + [59676] = 5, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(4531), 1, + anon_sym_RBRACK, + ACTIONS(4533), 1, + anon_sym_COMMA, + STATE(2013), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4511), 2, + [59693] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4335), 1, + anon_sym_RPAREN, + ACTIONS(4337), 1, anon_sym_COMMA, - anon_sym_GT, - [59588] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(1702), 1, - sym_parameters, - STATE(2175), 1, - sym_type_parameters, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59605] = 5, - ACTIONS(4379), 1, + [59710] = 4, + ACTIONS(632), 1, + anon_sym_LBRACE, + ACTIONS(4535), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(233), 2, + sym_if_expression, + sym_block, + [59725] = 5, + ACTIONS(4537), 1, anon_sym_LPAREN, - ACTIONS(4381), 1, + ACTIONS(4539), 1, anon_sym_LBRACE, - ACTIONS(4383), 1, + ACTIONS(4541), 1, anon_sym_LBRACK, - STATE(83), 1, + STATE(1025), 1, sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59622] = 5, - ACTIONS(3449), 1, + [59742] = 5, + ACTIONS(4537), 1, anon_sym_LPAREN, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(1649), 1, - sym_parameters, - STATE(2126), 1, - sym_type_parameters, + ACTIONS(4539), 1, + anon_sym_LBRACE, + ACTIONS(4541), 1, + anon_sym_LBRACK, + STATE(1024), 1, + sym_delim_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59639] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(912), 1, - sym_line_comment, - ACTIONS(4514), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4516), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59654] = 5, - ACTIONS(4075), 1, + [59759] = 5, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4518), 1, + ACTIONS(4543), 1, anon_sym_RPAREN, - ACTIONS(4520), 1, + ACTIONS(4545), 1, anon_sym_COMMA, - STATE(1882), 1, + STATE(2014), 1, aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59671] = 4, - ACTIONS(2317), 1, - anon_sym_POUND, - ACTIONS(4522), 1, - sym_identifier, + [59776] = 5, + ACTIONS(3828), 1, + anon_sym_LBRACE, + ACTIONS(3830), 1, + anon_sym_where, + STATE(281), 1, + sym_field_declaration_list, + STATE(2289), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1153), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [59686] = 4, - ACTIONS(4524), 1, - anon_sym_DQUOTE, - STATE(1839), 1, - aux_sym_string_literal_repeat1, + [59793] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4547), 1, + anon_sym_RPAREN, + ACTIONS(4549), 1, + anon_sym_COMMA, + STATE(1881), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 2, - sym__string_content, - sym_escape_sequence, - [59701] = 5, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4529), 1, + [59810] = 5, + ACTIONS(3940), 1, + anon_sym_COLON, + ACTIONS(4551), 1, anon_sym_SEMI, - ACTIONS(4531), 1, + ACTIONS(4553), 1, anon_sym_EQ, - ACTIONS(4533), 1, - anon_sym_else, + STATE(2446), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59827] = 5, + ACTIONS(4421), 1, + anon_sym_LPAREN, + ACTIONS(4423), 1, + anon_sym_LBRACE, + ACTIONS(4425), 1, + anon_sym_LBRACK, + STATE(80), 1, + sym_delim_token_tree, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59844] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(4555), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59718] = 5, - ACTIONS(3804), 1, + STATE(79), 2, + sym_if_expression, + sym_block, + [59859] = 5, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(3840), 1, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(1116), 1, + STATE(293), 1, sym_declaration_list, - STATE(2255), 1, + STATE(2304), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59735] = 3, - ACTIONS(4535), 1, - anon_sym_COLON, + [59876] = 5, + ACTIONS(4203), 1, + anon_sym_COMMA, + ACTIONS(4205), 1, + anon_sym_GT, + ACTIONS(4478), 1, + anon_sym_EQ, + STATE(1981), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59893] = 4, + ACTIONS(4559), 1, + anon_sym_COMMA, + STATE(1848), 1, + aux_sym_where_clause_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4557), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [59908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3598), 3, + ACTIONS(3431), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(4562), 2, anon_sym_RPAREN, anon_sym_COMMA, + [59921] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4564), 1, + anon_sym_SEMI, + ACTIONS(4566), 1, + anon_sym_EQ, + ACTIONS(4568), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59938] = 5, + ACTIONS(4311), 1, anon_sym_PIPE, - [59748] = 4, - ACTIONS(4176), 1, - anon_sym_COLON, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, + ACTIONS(4375), 1, + anon_sym_RPAREN, + ACTIONS(4379), 1, + anon_sym_COMMA, + STATE(2084), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59763] = 5, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(3804), 1, - anon_sym_where, - STATE(291), 1, - sym_declaration_list, - STATE(2276), 1, - sym_where_clause, + [59955] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3832), 1, + anon_sym_LT, + STATE(1623), 1, + sym_parameters, + STATE(2219), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59780] = 5, - ACTIONS(3995), 1, + [59972] = 5, + ACTIONS(3449), 1, anon_sym_LPAREN, - ACTIONS(3997), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(1023), 1, - sym_delim_token_tree, + ACTIONS(3832), 1, + anon_sym_LT, + STATE(1714), 1, + sym_parameters, + STATE(2212), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59797] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [59989] = 5, + ACTIONS(3449), 1, + anon_sym_LPAREN, + ACTIONS(3832), 1, + anon_sym_LT, + STATE(1684), 1, + sym_parameters, + STATE(2255), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4537), 3, - anon_sym_RPAREN, + [60006] = 5, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4570), 1, anon_sym_COMMA, - anon_sym_PIPE, - [59810] = 4, - ACTIONS(3), 1, + ACTIONS(4572), 1, + anon_sym_GT, + STATE(2097), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(912), 1, sym_line_comment, - ACTIONS(4539), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4541), 3, + [60023] = 5, + ACTIONS(2449), 1, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [59825] = 5, - ACTIONS(3995), 1, - anon_sym_LPAREN, - ACTIONS(3997), 1, - anon_sym_LBRACE, - ACTIONS(3999), 1, - anon_sym_LBRACK, - STATE(973), 1, - sym_delim_token_tree, + ACTIONS(4570), 1, + anon_sym_COMMA, + ACTIONS(4572), 1, + anon_sym_GT, + STATE(2097), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59842] = 4, - ACTIONS(4543), 1, - anon_sym_DQUOTE, - STATE(1839), 1, - aux_sym_string_literal_repeat1, + [60040] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4391), 2, - sym__string_content, - sym_escape_sequence, - [59857] = 5, - ACTIONS(3916), 1, + ACTIONS(3431), 2, anon_sym_COLON, - ACTIONS(4545), 1, - anon_sym_SEMI, - ACTIONS(4547), 1, - anon_sym_EQ, - STATE(2422), 1, - sym_trait_bounds, + anon_sym_PIPE, + ACTIONS(4574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60053] = 3, + ACTIONS(4576), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59874] = 5, - ACTIONS(3249), 1, - anon_sym_LBRACE, - ACTIONS(4106), 1, - sym_identifier, - ACTIONS(4108), 1, - anon_sym_STAR, - STATE(2060), 1, - sym_use_list, + ACTIONS(4578), 3, + sym_self, + sym_super, + sym_crate, + [60066] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59891] = 5, - ACTIONS(3449), 1, - anon_sym_LPAREN, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(1674), 1, - sym_parameters, - STATE(2202), 1, - sym_type_parameters, + ACTIONS(4580), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [60076] = 4, + ACTIONS(4582), 1, + anon_sym_for, + ACTIONS(4584), 1, + anon_sym_loop, + ACTIONS(4586), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59908] = 4, - ACTIONS(4549), 1, - anon_sym_DQUOTE, - STATE(1793), 1, - aux_sym_string_literal_repeat1, + [60090] = 3, + ACTIONS(4590), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4551), 2, - sym__string_content, - sym_escape_sequence, - [59923] = 5, - ACTIONS(3249), 1, + ACTIONS(4588), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60102] = 4, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4553), 1, - sym_identifier, - ACTIONS(4555), 1, - anon_sym_STAR, - STATE(2054), 1, - sym_use_list, + ACTIONS(4592), 1, + anon_sym_SEMI, + STATE(393), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59940] = 4, - ACTIONS(3836), 1, - anon_sym_GT, - ACTIONS(4557), 1, - anon_sym_COMMA, - STATE(2040), 1, - aux_sym_type_parameters_repeat1, + [60116] = 4, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4594), 1, + anon_sym_SEMI, + STATE(2343), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59954] = 4, - ACTIONS(284), 1, + [60130] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4562), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60142] = 4, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4559), 1, - anon_sym_move, - STATE(1047), 1, + ACTIONS(4596), 1, + anon_sym_SEMI, + STATE(247), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59968] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4561), 1, - sym_identifier, - STATE(2374), 1, - sym_type_arguments, + [60156] = 3, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59982] = 4, - ACTIONS(4081), 1, + ACTIONS(4598), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60168] = 4, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4563), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - STATE(400), 1, + STATE(442), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59996] = 2, + [60182] = 3, + ACTIONS(3171), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4565), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60006] = 2, + ACTIONS(4383), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60194] = 4, + ACTIONS(4574), 1, + anon_sym_RPAREN, + ACTIONS(4602), 1, + anon_sym_COMMA, + STATE(1869), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4567), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60016] = 4, - ACTIONS(4081), 1, + [60208] = 3, + ACTIONS(4607), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4605), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60220] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4569), 1, + ACTIONS(4609), 1, anon_sym_SEMI, STATE(322), 1, - sym_block, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60030] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4571), 1, - sym_identifier, - STATE(2374), 1, - sym_type_arguments, + [60234] = 4, + ACTIONS(4611), 1, + anon_sym_RBRACE, + ACTIONS(4613), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60044] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4571), 1, - sym_identifier, - STATE(2372), 1, - sym_type_arguments, + [60248] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60058] = 2, + ACTIONS(4615), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [60260] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4573), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60068] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4575), 1, - anon_sym_SEMI, - STATE(381), 1, - sym_block, + ACTIONS(4617), 2, + anon_sym_COMMA, + anon_sym_GT, + [60272] = 4, + ACTIONS(4570), 1, + anon_sym_COMMA, + ACTIONS(4572), 1, + anon_sym_GT, + STATE(2097), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60082] = 3, - ACTIONS(3163), 1, + [60286] = 3, + ACTIONS(4169), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4577), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60094] = 3, - ACTIONS(4075), 1, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60298] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4579), 2, + ACTIONS(4574), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60106] = 4, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(4581), 1, + [60310] = 4, + ACTIONS(4619), 1, + anon_sym_RBRACE, + ACTIONS(4621), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_array_expression_repeat1, + STATE(2002), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60120] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4583), 1, - anon_sym_SEMI, - ACTIONS(4585), 1, - anon_sym_EQ, + [60324] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60134] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, + ACTIONS(3377), 3, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + [60334] = 4, + ACTIONS(4623), 1, + anon_sym_for, + ACTIONS(4625), 1, + anon_sym_loop, + ACTIONS(4627), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4587), 2, - anon_sym_RBRACE, + [60348] = 4, + ACTIONS(2520), 1, + anon_sym_RPAREN, + ACTIONS(4629), 1, anon_sym_COMMA, - [60146] = 2, + STATE(2105), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2395), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [60156] = 2, + [60362] = 4, + ACTIONS(4631), 1, + anon_sym_COMMA, + ACTIONS(4633), 1, + anon_sym_GT, + STATE(2108), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4589), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [60166] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4591), 1, - anon_sym_SEMI, - STATE(432), 1, - sym_block, + [60376] = 4, + ACTIONS(4203), 1, + anon_sym_COMMA, + ACTIONS(4205), 1, + anon_sym_GT, + STATE(1981), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60180] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, - anon_sym_PLUS, - STATE(817), 1, - sym_block, + [60390] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60194] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4593), 1, - anon_sym_SEMI, - ACTIONS(4595), 1, + ACTIONS(4635), 3, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [60400] = 4, + ACTIONS(3786), 1, + anon_sym_GT, + ACTIONS(4637), 1, + anon_sym_COMMA, + STATE(2081), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60208] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4597), 1, - anon_sym_SEMI, - STATE(457), 1, - sym_block, + [60414] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60222] = 4, - ACTIONS(3788), 1, + ACTIONS(4639), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [60424] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4599), 1, + ACTIONS(4641), 1, anon_sym_SEMI, - STATE(478), 1, + STATE(340), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60236] = 4, - ACTIONS(3788), 1, + [60438] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(3780), 1, anon_sym_LBRACE, - ACTIONS(4601), 1, - anon_sym_SEMI, - STATE(473), 1, - sym_declaration_list, + STATE(1341), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60250] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [60452] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4603), 2, - anon_sym_RBRACE, + ACTIONS(4557), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - [60262] = 4, - ACTIONS(4605), 1, + [60462] = 3, + ACTIONS(4111), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [60474] = 4, + ACTIONS(3842), 1, anon_sym_RBRACE, - ACTIONS(4607), 1, + ACTIONS(4643), 1, anon_sym_COMMA, - STATE(2077), 1, + STATE(1894), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60276] = 4, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4609), 1, + [60488] = 4, + ACTIONS(2570), 1, + anon_sym_LBRACE, + ACTIONS(4645), 1, + anon_sym_COLON_COLON, + STATE(928), 1, + sym_field_initializer_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60502] = 3, + ACTIONS(4649), 1, anon_sym_EQ, - STATE(2456), 1, - sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60290] = 4, - ACTIONS(4611), 1, - anon_sym_RPAREN, - ACTIONS(4613), 1, + ACTIONS(4647), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1916), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60514] = 4, + ACTIONS(4651), 1, + anon_sym_RBRACE, + ACTIONS(4653), 1, + anon_sym_COMMA, + STATE(1894), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60304] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [60528] = 4, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(4656), 1, + anon_sym_EQ_GT, + ACTIONS(4658), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4615), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60316] = 4, - ACTIONS(4617), 1, + [60542] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4619), 1, - anon_sym_ref, - ACTIONS(4621), 1, - sym_mutable_specifier, + STATE(2418), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60330] = 4, + [60556] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4623), 1, + ACTIONS(4660), 1, sym_identifier, - STATE(2372), 1, + STATE(2424), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60344] = 4, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, - anon_sym_COLON, - STATE(2074), 1, - sym_trait_bounds, + [60570] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60358] = 4, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, - ACTIONS(3552), 1, - anon_sym_COLON, - STATE(2074), 1, - sym_trait_bounds, + ACTIONS(4662), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60582] = 4, + ACTIONS(4664), 1, + anon_sym_RPAREN, + ACTIONS(4666), 1, + anon_sym_COMMA, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60372] = 4, + [60596] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4623), 1, + ACTIONS(4668), 1, sym_identifier, - STATE(2374), 1, + STATE(2418), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60386] = 3, - ACTIONS(4075), 1, + [60610] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4625), 2, - anon_sym_COMMA, - anon_sym_GT, - [60398] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4627), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60410] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4629), 1, + ACTIONS(4670), 1, anon_sym_SEMI, - STATE(430), 1, - sym_block, + ACTIONS(4672), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60424] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4631), 1, - anon_sym_SEMI, - STATE(325), 1, - sym_declaration_list, + [60624] = 4, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3560), 1, + anon_sym_COLON, + STATE(2056), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60438] = 3, - ACTIONS(4075), 1, + [60638] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4385), 2, - anon_sym_RPAREN, + ACTIONS(4674), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [60450] = 4, + [60650] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4633), 1, + ACTIONS(4676), 1, sym_identifier, - STATE(2374), 1, + STATE(2418), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60464] = 4, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(3961), 1, - anon_sym_BANG, - ACTIONS(4635), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60478] = 4, + [60664] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4633), 1, + ACTIONS(4676), 1, sym_identifier, - STATE(2372), 1, + STATE(2424), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60492] = 4, - ACTIONS(4637), 1, - anon_sym_RBRACE, - ACTIONS(4639), 1, - anon_sym_COMMA, - STATE(2095), 1, - aux_sym_field_initializer_list_repeat1, + [60678] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60506] = 4, - ACTIONS(4641), 1, + ACTIONS(4678), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [60688] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4668), 1, sym_identifier, - ACTIONS(4643), 1, - anon_sym_ref, - ACTIONS(4645), 1, - sym_mutable_specifier, + STATE(2424), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60520] = 2, + [60702] = 4, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4680), 1, + anon_sym_SEMI, + ACTIONS(4682), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2385), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [60530] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4647), 1, - anon_sym_SEMI, - STATE(410), 1, - sym_block, + [60716] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4684), 1, + sym_identifier, + STATE(2418), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60544] = 4, - ACTIONS(4255), 1, + [60730] = 4, + ACTIONS(398), 1, anon_sym_RPAREN, - ACTIONS(4257), 1, + ACTIONS(4686), 1, anon_sym_COMMA, - STATE(2070), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60558] = 4, - ACTIONS(2449), 1, - anon_sym_PLUS, - ACTIONS(4649), 1, - sym_mutable_specifier, - ACTIONS(4651), 1, - sym_self, + STATE(1912), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60572] = 4, - ACTIONS(4081), 1, + [60744] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4653), 1, + ACTIONS(4688), 1, anon_sym_SEMI, - STATE(453), 1, - sym_block, + STATE(413), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60586] = 4, - ACTIONS(2381), 1, + [60758] = 4, + ACTIONS(3315), 1, anon_sym_RPAREN, - ACTIONS(4655), 1, + ACTIONS(4690), 1, anon_sym_COMMA, - STATE(1806), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1912), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60600] = 4, - ACTIONS(2391), 1, - anon_sym_RBRACK, - ACTIONS(4657), 1, - anon_sym_COMMA, - STATE(1806), 1, - aux_sym_tuple_pattern_repeat1, + [60772] = 4, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_SEMI, + STATE(399), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60614] = 4, + [60786] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4659), 1, + ACTIONS(4695), 1, sym_identifier, - STATE(2372), 1, + STATE(2418), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60628] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4661), 1, - anon_sym_SEMI, - STATE(366), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60642] = 2, + [60800] = 3, + ACTIONS(4697), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4663), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60652] = 4, + ACTIONS(4699), 2, + anon_sym_default, + anon_sym_union, + [60812] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4659), 1, + ACTIONS(4695), 1, sym_identifier, - STATE(2374), 1, + STATE(2424), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60666] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4665), 1, - anon_sym_SEMI, - STATE(354), 1, - sym_declaration_list, + [60826] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4684), 1, + sym_identifier, + STATE(2424), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60680] = 4, - ACTIONS(3788), 1, + [60840] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4667), 1, + ACTIONS(4701), 1, anon_sym_SEMI, - STATE(332), 1, + STATE(369), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60694] = 4, - ACTIONS(3854), 1, + [60854] = 4, + ACTIONS(4703), 1, anon_sym_RBRACE, - ACTIONS(4669), 1, + ACTIONS(4705), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(2011), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60708] = 4, - ACTIONS(4671), 1, - anon_sym_RBRACE, - ACTIONS(4673), 1, + [60868] = 4, + ACTIONS(2427), 1, + anon_sym_RPAREN, + ACTIONS(4707), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1783), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60722] = 3, - ACTIONS(4678), 1, - anon_sym_COLON, + [60882] = 4, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4709), 1, + anon_sym_SEMI, + STATE(319), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4676), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [60734] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [60896] = 4, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4711), 1, + anon_sym_SEMI, + STATE(2452), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60910] = 4, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4713), 1, + anon_sym_SEMI, + STATE(384), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4680), 2, + [60924] = 4, + ACTIONS(4715), 1, anon_sym_RBRACE, + ACTIONS(4717), 1, anon_sym_COMMA, - [60746] = 4, - ACTIONS(4682), 1, - anon_sym_RPAREN, - ACTIONS(4684), 1, - anon_sym_COMMA, - STATE(1916), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(1924), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60760] = 3, - ACTIONS(4075), 1, + [60938] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, + ACTIONS(4720), 1, + anon_sym_SEMI, + ACTIONS(4722), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4687), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60772] = 4, - ACTIONS(4689), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_COMMA, - STATE(1916), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [60952] = 4, + ACTIONS(2449), 1, + anon_sym_PLUS, + ACTIONS(4724), 1, + sym_mutable_specifier, + ACTIONS(4726), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60786] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4693), 1, + [60966] = 4, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4728), 1, anon_sym_SEMI, - ACTIONS(4695), 1, - anon_sym_EQ, + STATE(2509), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60800] = 4, - ACTIONS(4433), 1, - anon_sym_COMMA, - ACTIONS(4697), 1, - anon_sym_PIPE, - STATE(2091), 1, - aux_sym_closure_parameters_repeat1, + [60980] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4730), 1, + sym_identifier, + STATE(2418), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60994] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60814] = 4, - ACTIONS(4699), 1, + ACTIONS(4732), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61004] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4730), 1, sym_identifier, - ACTIONS(4701), 1, - anon_sym_ref, - ACTIONS(4703), 1, - sym_mutable_specifier, + STATE(2424), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60828] = 3, - ACTIONS(4707), 1, - anon_sym_COLON, + [61018] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4705), 2, + ACTIONS(4734), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [60840] = 4, - ACTIONS(3806), 1, - anon_sym_LT, - ACTIONS(4709), 1, - anon_sym_EQ, - STATE(2543), 1, - sym_type_parameters, + [61028] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60854] = 4, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4711), 1, + ACTIONS(2363), 3, anon_sym_SEMI, - STATE(1074), 1, - sym_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + [61038] = 4, + ACTIONS(4736), 1, + anon_sym_RBRACE, + ACTIONS(4738), 1, + anon_sym_COMMA, + STATE(1942), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60868] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4713), 1, + [61052] = 4, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4740), 1, anon_sym_SEMI, - STATE(2549), 1, - sym_where_clause, + ACTIONS(4742), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60882] = 4, - ACTIONS(3788), 1, + [61066] = 4, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4715), 1, + ACTIONS(4744), 1, anon_sym_SEMI, - STATE(299), 1, - sym_declaration_list, + STATE(367), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60896] = 4, - ACTIONS(3788), 1, + [61080] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4717), 1, + ACTIONS(4746), 1, anon_sym_SEMI, - STATE(278), 1, + STATE(428), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60910] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61094] = 4, + ACTIONS(284), 1, + anon_sym_LBRACE, + ACTIONS(4748), 1, + anon_sym_move, + STATE(902), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4719), 2, - anon_sym_COMMA, - anon_sym_GT, - [60922] = 4, - ACTIONS(4721), 1, + [61108] = 4, + ACTIONS(4335), 1, + anon_sym_RPAREN, + ACTIONS(4337), 1, anon_sym_COMMA, - ACTIONS(4724), 1, - anon_sym_GT, - STATE(1929), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1952), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60936] = 4, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_GT, - STATE(2265), 1, - sym_lifetime, + [61122] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60950] = 4, - ACTIONS(4728), 1, + ACTIONS(4750), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4730), 1, anon_sym_COMMA, - STATE(2055), 1, - aux_sym_struct_pattern_repeat1, + [61132] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60964] = 4, - ACTIONS(4732), 1, + ACTIONS(4752), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4735), 1, - anon_sym_GT, - STATE(1932), 1, - aux_sym_type_arguments_repeat1, + [61142] = 4, + ACTIONS(3295), 1, + anon_sym_LBRACE, + ACTIONS(4754), 1, + sym_identifier, + STATE(1940), 1, + sym_use_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61156] = 4, + ACTIONS(3385), 1, + anon_sym_RBRACE, + ACTIONS(4756), 1, + anon_sym_COMMA, + STATE(1976), 1, + aux_sym_use_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61170] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4758), 1, + anon_sym_SEMI, + STATE(944), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60978] = 2, + [61184] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4737), 3, + ACTIONS(4760), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [60988] = 3, - ACTIONS(2449), 1, - anon_sym_PLUS, + [61194] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4735), 2, + ACTIONS(4762), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [61000] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61204] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4735), 2, + ACTIONS(4764), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [61012] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61214] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4739), 2, + ACTIONS(4766), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - [61024] = 4, - ACTIONS(4741), 1, + [61224] = 4, + ACTIONS(4768), 1, anon_sym_RBRACE, - ACTIONS(4743), 1, + ACTIONS(4770), 1, anon_sym_COMMA, - STATE(1937), 1, - aux_sym_struct_pattern_repeat1, + STATE(1948), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61038] = 4, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4746), 1, - anon_sym_SEMI, - STATE(1058), 1, - sym_block, + [61238] = 4, + ACTIONS(626), 1, + anon_sym_RBRACK, + ACTIONS(3175), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61052] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, + [61252] = 4, + ACTIONS(4773), 1, + sym_identifier, + ACTIONS(4775), 1, + anon_sym_ref, + ACTIONS(4777), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4748), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [61064] = 3, - ACTIONS(4752), 1, - anon_sym_COLON, + [61266] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4750), 2, + ACTIONS(4779), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61076] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4754), 1, - anon_sym_SEMI, - STATE(267), 1, - sym_block, + [61276] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4381), 1, + anon_sym_COMMA, + STATE(1869), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61090] = 4, - ACTIONS(2590), 1, - anon_sym_LBRACE, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, - STATE(1082), 1, - sym_field_initializer_list, + [61290] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61104] = 4, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(4758), 1, - anon_sym_COMMA, - STATE(1946), 1, - aux_sym_parameters_repeat1, + ACTIONS(4781), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [61300] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4195), 1, + sym_identifier, + STATE(2424), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61118] = 4, - ACTIONS(4069), 1, + [61314] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4760), 1, + ACTIONS(4783), 1, anon_sym_SEMI, - STATE(1048), 1, + STATE(1026), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61132] = 3, - ACTIONS(3163), 1, - anon_sym_COLON_COLON, + [61328] = 4, + ACTIONS(3445), 1, + anon_sym_LT2, + ACTIONS(4195), 1, + sym_identifier, + STATE(2418), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61144] = 4, - ACTIONS(4478), 1, - anon_sym_RPAREN, - ACTIONS(4762), 1, + [61342] = 4, + ACTIONS(4785), 1, + anon_sym_RBRACE, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(1946), 1, - aux_sym_parameters_repeat1, + STATE(1957), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61158] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [61356] = 4, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_SEMI, + STATE(1033), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4478), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [61170] = 4, - ACTIONS(4427), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_GT, - STATE(2047), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, + [61370] = 5, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(912), 1, sym_line_comment, - [61184] = 4, - ACTIONS(4069), 1, + ACTIONS(4792), 1, + anon_sym_RBRACE, + ACTIONS(4794), 1, + aux_sym_format_specifier_token1, + STATE(1959), 1, + aux_sym_format_specifier_repeat1, + [61386] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4765), 1, + ACTIONS(4797), 1, anon_sym_SEMI, - STATE(920), 1, + STATE(1089), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61198] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4767), 1, - anon_sym_SEMI, - ACTIONS(4769), 1, - anon_sym_EQ, + [61400] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61212] = 4, - ACTIONS(4771), 1, + ACTIONS(2419), 3, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(4773), 1, - anon_sym_COMMA, - STATE(2042), 1, - aux_sym_use_list_repeat1, + [61410] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61226] = 4, - ACTIONS(4069), 1, + ACTIONS(4799), 2, + anon_sym_COMMA, + anon_sym_GT, + [61422] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4775), 1, + ACTIONS(4801), 1, anon_sym_SEMI, - STATE(943), 1, + STATE(1124), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61240] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4492), 3, - anon_sym_SEMI, + [61436] = 4, + ACTIONS(2570), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [61250] = 4, - ACTIONS(4777), 1, - anon_sym_RBRACE, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(2052), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4803), 1, + anon_sym_COLON_COLON, + STATE(928), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61264] = 4, + [61450] = 4, ACTIONS(632), 1, anon_sym_LBRACE, - ACTIONS(4781), 1, + ACTIONS(4805), 1, anon_sym_move, STATE(223), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61278] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4783), 1, + [61464] = 4, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(4807), 1, anon_sym_SEMI, - STATE(1026), 1, - sym_declaration_list, + ACTIONS(4809), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61292] = 4, - ACTIONS(3840), 1, + [61478] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4785), 1, + ACTIONS(4811), 1, anon_sym_SEMI, - STATE(1044), 1, - sym_declaration_list, + STATE(1118), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61306] = 4, - ACTIONS(3844), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, - anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, + [61492] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61320] = 3, - ACTIONS(4791), 1, - anon_sym_EQ, + ACTIONS(4813), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [61504] = 3, + ACTIONS(4377), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4789), 2, - anon_sym_RBRACE, + ACTIONS(4815), 2, anon_sym_COMMA, - [61332] = 4, - ACTIONS(4793), 1, - anon_sym_RBRACE, - ACTIONS(4795), 1, + anon_sym_PIPE, + [61516] = 4, + ACTIONS(4815), 1, + anon_sym_PIPE, + ACTIONS(4817), 1, anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1970), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61346] = 4, - ACTIONS(2590), 1, + [61530] = 4, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4798), 1, - anon_sym_COLON_COLON, - STATE(1082), 1, - sym_field_initializer_list, + ACTIONS(4820), 1, + anon_sym_SEMI, + STATE(1114), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61360] = 2, + [61544] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4822), 1, + anon_sym_SEMI, + STATE(1112), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3347), 3, + [61558] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - [61370] = 4, - ACTIONS(2512), 1, - anon_sym_RPAREN, - ACTIONS(4800), 1, - anon_sym_COMMA, - STATE(2050), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4105), 1, + anon_sym_PLUS, + STATE(1017), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61384] = 2, + [61572] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4802), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4824), 2, anon_sym_COMMA, - [61394] = 3, - ACTIONS(4227), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, + anon_sym_GT, + [61584] = 5, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(912), 1, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61406] = 4, - ACTIONS(4804), 1, + ACTIONS(4826), 1, + anon_sym_RBRACE, + ACTIONS(4828), 1, + aux_sym_format_specifier_token1, + STATE(1959), 1, + aux_sym_format_specifier_repeat1, + [61600] = 4, + ACTIONS(4830), 1, + anon_sym_RBRACE, + ACTIONS(4832), 1, anon_sym_COMMA, - ACTIONS(4806), 1, - anon_sym_GT, - STATE(2046), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1976), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61420] = 4, - ACTIONS(4069), 1, + [61614] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4835), 1, anon_sym_SEMI, STATE(1105), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61434] = 2, + [61628] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4810), 3, - anon_sym_EQ, + ACTIONS(4837), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61638] = 3, + ACTIONS(2449), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4824), 2, anon_sym_COMMA, anon_sym_GT, - [61444] = 4, - ACTIONS(3882), 1, + [61650] = 4, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4839), 1, + anon_sym_SEMI, + STATE(1100), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61664] = 4, + ACTIONS(3864), 1, anon_sym_GT, - ACTIONS(4812), 1, + ACTIONS(4841), 1, anon_sym_COMMA, - STATE(2040), 1, + STATE(2081), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61458] = 2, + [61678] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4814), 3, - anon_sym_EQ, + ACTIONS(4843), 2, + anon_sym_RPAREN, anon_sym_COMMA, + [61690] = 4, + ACTIONS(4824), 1, anon_sym_GT, - [61468] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4816), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [61478] = 4, - ACTIONS(3271), 1, - anon_sym_RBRACK, - ACTIONS(4818), 1, + ACTIONS(4845), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_array_expression_repeat1, + STATE(1983), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61492] = 4, - ACTIONS(4069), 1, + [61704] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4821), 1, + ACTIONS(4848), 1, anon_sym_SEMI, - STATE(1126), 1, + STATE(1086), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61506] = 4, - ACTIONS(624), 1, - anon_sym_RBRACK, - ACTIONS(3149), 1, - anon_sym_COMMA, - STATE(1972), 1, - aux_sym_array_expression_repeat1, + [61718] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4850), 1, + anon_sym_SEMI, + STATE(1083), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61520] = 3, - ACTIONS(4823), 1, - sym_identifier, + [61732] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4825), 2, - anon_sym_default, - anon_sym_union, - [61532] = 4, - ACTIONS(398), 1, - anon_sym_RPAREN, - ACTIONS(4827), 1, + ACTIONS(4852), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1977), 1, - aux_sym_arguments_repeat1, + [61744] = 4, + ACTIONS(2560), 1, + anon_sym_LT2, + ACTIONS(4854), 1, + sym_identifier, + STATE(790), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61546] = 4, - ACTIONS(3285), 1, - anon_sym_RPAREN, - ACTIONS(4829), 1, + [61758] = 4, + ACTIONS(3894), 1, + anon_sym_RBRACE, + ACTIONS(4856), 1, anon_sym_COMMA, - STATE(1977), 1, - aux_sym_arguments_repeat1, + STATE(1948), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61560] = 4, - ACTIONS(4069), 1, + [61772] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4832), 1, + ACTIONS(4858), 1, anon_sym_SEMI, - STATE(1104), 1, - sym_block, + STATE(312), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61574] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4834), 1, - anon_sym_SEMI, - STATE(1100), 1, - sym_declaration_list, + [61786] = 3, + ACTIONS(4862), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61588] = 4, - ACTIONS(4433), 1, + ACTIONS(4860), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4836), 1, - anon_sym_PIPE, - STATE(1920), 1, - aux_sym_closure_parameters_repeat1, + [61798] = 4, + ACTIONS(3816), 1, + anon_sym_RBRACE, + ACTIONS(4864), 1, + anon_sym_COMMA, + STATE(1924), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61602] = 4, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4838), 1, - anon_sym_EQ_GT, - ACTIONS(4840), 1, - anon_sym_if, + [61812] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4866), 1, + anon_sym_SEMI, + STATE(1055), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61616] = 4, - ACTIONS(3840), 1, + [61826] = 4, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4842), 1, + ACTIONS(4868), 1, anon_sym_SEMI, - STATE(983), 1, - sym_declaration_list, + STATE(447), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61630] = 4, - ACTIONS(3840), 1, + [61840] = 4, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4844), 1, + ACTIONS(4870), 1, anon_sym_SEMI, - STATE(1093), 1, + STATE(1073), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61644] = 4, - ACTIONS(3876), 1, + [61854] = 4, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4872), 1, + anon_sym_SEMI, + STATE(2365), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [61868] = 4, + ACTIONS(3866), 1, anon_sym_RBRACE, - ACTIONS(4846), 1, + ACTIONS(4874), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(1924), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61658] = 4, - ACTIONS(4075), 1, + [61882] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4848), 1, + ACTIONS(4876), 1, anon_sym_SEMI, - ACTIONS(4850), 1, + ACTIONS(4878), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61672] = 4, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - ACTIONS(4852), 1, - anon_sym_GT, - STATE(2265), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61686] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4854), 1, + [61896] = 4, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4880), 1, anon_sym_SEMI, - STATE(2412), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61700] = 3, - ACTIONS(4207), 1, - anon_sym_COLON_COLON, + STATE(348), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61712] = 4, - ACTIONS(3840), 1, + [61910] = 4, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4856), 1, + ACTIONS(4882), 1, anon_sym_SEMI, - STATE(1078), 1, + STATE(1061), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61726] = 4, - ACTIONS(3840), 1, + [61924] = 4, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4858), 1, + ACTIONS(4884), 1, anon_sym_SEMI, - STATE(1076), 1, + STATE(1059), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61740] = 4, - ACTIONS(4069), 1, + [61938] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + ACTIONS(4886), 1, anon_sym_SEMI, - STATE(1066), 1, + STATE(1054), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61754] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4862), 1, - anon_sym_SEMI, - ACTIONS(4864), 1, - anon_sym_EQ, + [61952] = 4, + ACTIONS(4085), 1, + anon_sym_RBRACE, + ACTIONS(4888), 1, + anon_sym_COMMA, + STATE(1957), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61768] = 4, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4866), 1, - anon_sym_SEMI, - STATE(285), 1, - sym_block, + [61966] = 4, + ACTIONS(4890), 1, + sym_identifier, + ACTIONS(4892), 1, + anon_sym_ref, + ACTIONS(4894), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61782] = 4, + [61980] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4868), 1, + ACTIONS(4896), 1, sym_identifier, - STATE(1191), 1, + STATE(1193), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61796] = 4, - ACTIONS(764), 1, + [61994] = 4, + ACTIONS(760), 1, anon_sym_RPAREN, - ACTIONS(4870), 1, + ACTIONS(4898), 1, anon_sym_COMMA, - STATE(1946), 1, + STATE(1869), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61810] = 4, - ACTIONS(4872), 1, - anon_sym_RBRACE, - ACTIONS(4874), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_field_initializer_list_repeat1, + [62008] = 4, + ACTIONS(4900), 1, + sym_identifier, + ACTIONS(4902), 1, + anon_sym_await, + ACTIONS(4904), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61824] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4877), 1, - anon_sym_SEMI, - STATE(252), 1, - sym_declaration_list, + [62022] = 4, + ACTIONS(4440), 1, + anon_sym_COMMA, + ACTIONS(4906), 1, + anon_sym_PIPE, + STATE(1970), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61838] = 4, - ACTIONS(4879), 1, - anon_sym_for, - ACTIONS(4881), 1, - anon_sym_loop, - ACTIONS(4883), 1, - anon_sym_while, + [62036] = 4, + ACTIONS(3836), 1, + anon_sym_RBRACE, + ACTIONS(4908), 1, + anon_sym_COMMA, + STATE(1894), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61852] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4885), 1, - anon_sym_SEMI, - ACTIONS(4887), 1, - anon_sym_EQ, + [62050] = 4, + ACTIONS(3812), 1, + anon_sym_RBRACE, + ACTIONS(4910), 1, + anon_sym_COMMA, + STATE(1991), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61866] = 4, + [62064] = 4, ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4868), 1, + ACTIONS(4896), 1, sym_identifier, - STATE(1190), 1, + STATE(1191), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61880] = 3, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3443), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [61892] = 4, - ACTIONS(4889), 1, + [62078] = 4, + ACTIONS(3812), 1, anon_sym_RBRACE, - ACTIONS(4891), 1, + ACTIONS(4910), 1, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_use_list_repeat1, + STATE(1924), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61906] = 4, - ACTIONS(4894), 1, - anon_sym_for, - ACTIONS(4896), 1, - anon_sym_loop, - ACTIONS(4898), 1, - anon_sym_while, + [62092] = 4, + ACTIONS(396), 1, + anon_sym_RPAREN, + ACTIONS(3183), 1, + anon_sym_COMMA, + STATE(1912), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61920] = 2, + [62106] = 4, + ACTIONS(2433), 1, + anon_sym_RBRACK, + ACTIONS(4912), 1, + anon_sym_COMMA, + STATE(1783), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4900), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61930] = 4, - ACTIONS(3822), 1, - anon_sym_RBRACE, - ACTIONS(4902), 1, + [62120] = 4, + ACTIONS(4914), 1, + anon_sym_RPAREN, + ACTIONS(4916), 1, anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61944] = 4, - ACTIONS(4116), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_GT, - STATE(1855), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, + [62134] = 5, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(912), 1, sym_line_comment, - [61958] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4904), 1, - anon_sym_SEMI, - STATE(300), 1, - sym_declaration_list, + ACTIONS(4918), 1, + anon_sym_RBRACE, + ACTIONS(4920), 1, + aux_sym_format_specifier_token1, + STATE(1975), 1, + aux_sym_format_specifier_repeat1, + [62150] = 4, + ACTIONS(4333), 1, + anon_sym_COLON, + ACTIONS(4922), 1, + anon_sym_RBRACE, + STATE(2415), 1, + sym_format_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61972] = 4, - ACTIONS(4906), 1, - anon_sym_RBRACE, - ACTIONS(4908), 1, - anon_sym_COMMA, - STATE(2022), 1, - aux_sym_field_declaration_list_repeat1, + [62164] = 4, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4924), 1, + anon_sym_SEMI, + STATE(2438), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61986] = 4, - ACTIONS(4075), 1, + [62178] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4910), 1, + ACTIONS(4926), 1, anon_sym_SEMI, - ACTIONS(4912), 1, - anon_sym_RBRACK, + ACTIONS(4928), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62000] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4914), 1, + [62192] = 4, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4930), 1, anon_sym_SEMI, - STATE(2493), 1, - sym_where_clause, + STATE(1010), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62014] = 3, - ACTIONS(4160), 1, + [62206] = 3, + ACTIONS(4241), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -123786,2251 +121478,2260 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3443), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62026] = 4, - ACTIONS(3824), 1, - anon_sym_RBRACE, - ACTIONS(4916), 1, - anon_sym_COMMA, - STATE(1912), 1, - aux_sym_field_declaration_list_repeat1, + [62218] = 4, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(4932), 1, + anon_sym_SEMI, + STATE(342), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62040] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(3746), 1, - anon_sym_LBRACE, - STATE(1347), 1, - sym_type_arguments, + [62232] = 4, + ACTIONS(4934), 1, + anon_sym_for, + ACTIONS(4936), 1, + anon_sym_loop, + ACTIONS(4938), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62246] = 4, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(4940), 1, + anon_sym_GT, + STATE(2172), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62054] = 4, + [62260] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4918), 1, + ACTIONS(4942), 1, sym_identifier, - STATE(2372), 1, + STATE(2424), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62068] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4920), 1, - anon_sym_SEMI, - STATE(2384), 1, - sym_where_clause, + [62274] = 3, + ACTIONS(4946), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62082] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4922), 1, - sym_identifier, - STATE(2374), 1, - sym_type_arguments, + ACTIONS(4944), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62286] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4948), 1, + anon_sym_SEMI, + STATE(999), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62096] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(4924), 1, - anon_sym_SEMI, - ACTIONS(4926), 1, - anon_sym_EQ, + [62300] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62110] = 4, + ACTIONS(4950), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62310] = 4, ACTIONS(3445), 1, anon_sym_LT2, - ACTIONS(4918), 1, + ACTIONS(4942), 1, sym_identifier, - STATE(2374), 1, + STATE(2418), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62124] = 4, - ACTIONS(4069), 1, - anon_sym_LBRACE, - ACTIONS(4928), 1, - anon_sym_SEMI, - STATE(1013), 1, - sym_block, + [62324] = 4, + ACTIONS(3794), 1, + anon_sym_RBRACE, + ACTIONS(4952), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62138] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4930), 1, - anon_sym_SEMI, - STATE(471), 1, - sym_declaration_list, + [62338] = 4, + ACTIONS(4954), 1, + anon_sym_RBRACE, + ACTIONS(4956), 1, + anon_sym_COMMA, + STATE(1988), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62152] = 4, - ACTIONS(4075), 1, + [62352] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4932), 1, + ACTIONS(4958), 1, anon_sym_SEMI, - ACTIONS(4934), 1, + ACTIONS(4960), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62166] = 4, - ACTIONS(3824), 1, + [62366] = 4, + ACTIONS(3794), 1, anon_sym_RBRACE, - ACTIONS(4916), 1, + ACTIONS(4952), 1, anon_sym_COMMA, - STATE(1913), 1, + STATE(1924), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62180] = 4, - ACTIONS(4263), 1, + [62380] = 4, + ACTIONS(4401), 1, anon_sym_COMMA, - ACTIONS(4265), 1, + ACTIONS(4403), 1, anon_sym_GT, - STATE(2094), 1, + STATE(2104), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62194] = 4, - ACTIONS(4936), 1, - anon_sym_RPAREN, - ACTIONS(4938), 1, + [62394] = 4, + ACTIONS(4962), 1, anon_sym_COMMA, - STATE(1916), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4965), 1, + anon_sym_GT, + STATE(2034), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62208] = 4, - ACTIONS(4075), 1, + [62408] = 4, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, + ACTIONS(3996), 1, + anon_sym_BANG, + ACTIONS(4967), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62422] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4940), 1, + ACTIONS(4969), 1, anon_sym_SEMI, - ACTIONS(4942), 1, + ACTIONS(4971), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62222] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_SEMI, - STATE(995), 1, - sym_declaration_list, + [62436] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62236] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4922), 1, - sym_identifier, - STATE(2372), 1, - sym_type_arguments, + ACTIONS(4973), 2, + anon_sym_COMMA, + anon_sym_GT, + [62448] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4975), 1, + anon_sym_SEMI, + STATE(809), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62250] = 4, - ACTIONS(3832), 1, - anon_sym_RBRACE, - ACTIONS(4946), 1, - anon_sym_COMMA, - STATE(1984), 1, - aux_sym_field_declaration_list_repeat1, + [62462] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(4977), 1, + anon_sym_SEMI, + STATE(846), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62264] = 4, - ACTIONS(3840), 1, + [62476] = 4, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(4948), 1, + ACTIONS(4979), 1, anon_sym_SEMI, - STATE(926), 1, + STATE(975), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62278] = 4, - ACTIONS(3832), 1, - anon_sym_RBRACE, - ACTIONS(4946), 1, + [62490] = 3, + ACTIONS(4247), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62502] = 4, + ACTIONS(768), 1, + anon_sym_RPAREN, + ACTIONS(4981), 1, anon_sym_COMMA, - STATE(1913), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1869), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62292] = 4, - ACTIONS(4075), 1, + [62516] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(4950), 1, - anon_sym_SEMI, - ACTIONS(4952), 1, - anon_sym_EQ, + ACTIONS(4983), 1, + anon_sym_as, + ACTIONS(4985), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62306] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4561), 1, - sym_identifier, - STATE(2372), 1, - sym_type_arguments, + [62530] = 4, + ACTIONS(876), 1, + anon_sym_GT, + ACTIONS(4987), 1, + anon_sym_COMMA, + STATE(1983), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62320] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4954), 1, - anon_sym_SEMI, - STATE(342), 1, - sym_declaration_list, + [62544] = 3, + ACTIONS(4991), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62334] = 4, - ACTIONS(3788), 1, - anon_sym_LBRACE, - ACTIONS(4956), 1, + ACTIONS(4989), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [62556] = 4, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(4993), 1, anon_sym_SEMI, - STATE(428), 1, - sym_declaration_list, + STATE(2563), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62348] = 4, - ACTIONS(3788), 1, + [62570] = 4, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(4958), 1, + ACTIONS(4995), 1, anon_sym_SEMI, - STATE(348), 1, - sym_declaration_list, + STATE(333), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62362] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(4960), 1, - anon_sym_SEMI, - STATE(2450), 1, - sym_where_clause, + [62584] = 4, + ACTIONS(3900), 1, + anon_sym_RBRACE, + ACTIONS(4997), 1, + anon_sym_COMMA, + STATE(1894), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62376] = 4, - ACTIONS(3840), 1, + [62598] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4999), 1, anon_sym_SEMI, - STATE(921), 1, - sym_declaration_list, + STATE(968), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62390] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, + [62612] = 4, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(5001), 1, + anon_sym_SEMI, + STATE(254), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4964), 2, + [62626] = 4, + ACTIONS(3900), 1, + anon_sym_RBRACE, + ACTIONS(4997), 1, anon_sym_COMMA, - anon_sym_GT, - [62402] = 2, + STATE(1891), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4966), 3, + [62640] = 4, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(5003), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62412] = 4, - ACTIONS(4387), 1, - anon_sym_GT, - ACTIONS(4968), 1, - anon_sym_COMMA, - STATE(2040), 1, - aux_sym_type_parameters_repeat1, + STATE(404), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62426] = 3, - ACTIONS(4361), 1, + [62654] = 4, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(5005), 1, anon_sym_EQ, + STATE(2442), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, - anon_sym_COMMA, - anon_sym_GT, - [62438] = 4, - ACTIONS(3383), 1, - anon_sym_RBRACE, - ACTIONS(4971), 1, + [62668] = 4, + ACTIONS(756), 1, + anon_sym_RPAREN, + ACTIONS(4369), 1, anon_sym_COMMA, - STATE(2002), 1, - aux_sym_use_list_repeat1, + STATE(2005), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62452] = 4, - ACTIONS(3840), 1, + [62682] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(4973), 1, + ACTIONS(5007), 1, anon_sym_SEMI, - STATE(929), 1, + STATE(401), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62466] = 2, + [62696] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4975), 3, + ACTIONS(5009), 3, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62476] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4977), 2, - anon_sym_COMMA, - anon_sym_GT, - [62488] = 4, - ACTIONS(4852), 1, - anon_sym_GT, - ACTIONS(4979), 1, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1929), 1, - aux_sym_for_lifetimes_repeat1, + [62706] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62502] = 4, - ACTIONS(868), 1, - anon_sym_GT, - ACTIONS(4981), 1, + ACTIONS(5011), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(1932), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62516] = 3, - ACTIONS(4983), 1, + [62716] = 3, + ACTIONS(5013), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4985), 2, + ACTIONS(5015), 2, anon_sym_default, anon_sym_union, - [62528] = 2, + [62728] = 4, + ACTIONS(3870), 1, + anon_sym_LBRACE, + ACTIONS(5017), 1, + anon_sym_SEMI, + STATE(310), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4987), 3, + [62742] = 4, + ACTIONS(4115), 1, + anon_sym_LBRACE, + ACTIONS(5019), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62538] = 4, - ACTIONS(4989), 1, + STATE(456), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62756] = 4, + ACTIONS(756), 1, anon_sym_RPAREN, - ACTIONS(4991), 1, + ACTIONS(4369), 1, anon_sym_COMMA, - STATE(2050), 1, - aux_sym_tuple_type_repeat1, + STATE(1869), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62552] = 3, - ACTIONS(4075), 1, + [62770] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4989), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [62564] = 4, - ACTIONS(4057), 1, + ACTIONS(5021), 2, anon_sym_RBRACE, - ACTIONS(4994), 1, anon_sym_COMMA, - STATE(1937), 1, - aux_sym_struct_pattern_repeat1, + [62782] = 4, + ACTIONS(3874), 1, + anon_sym_LBRACE, + ACTIONS(5023), 1, + anon_sym_SEMI, + STATE(876), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62578] = 4, - ACTIONS(3840), 1, + [62796] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(4381), 1, + anon_sym_COMMA, + STATE(2042), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62810] = 4, + ACTIONS(284), 1, anon_sym_LBRACE, - ACTIONS(4996), 1, - anon_sym_SEMI, - STATE(888), 1, - sym_declaration_list, + ACTIONS(4105), 1, + anon_sym_PLUS, + STATE(822), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62592] = 2, + [62824] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4998), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62602] = 4, - ACTIONS(4049), 1, - anon_sym_RBRACE, - ACTIONS(5000), 1, + ACTIONS(5025), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62834] = 4, + ACTIONS(5027), 1, + anon_sym_RPAREN, + ACTIONS(5029), 1, anon_sym_COMMA, - STATE(1937), 1, - aux_sym_struct_pattern_repeat1, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62616] = 2, + [62848] = 4, + ACTIONS(4440), 1, + anon_sym_COMMA, + ACTIONS(5032), 1, + anon_sym_PIPE, + STATE(2007), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5002), 3, - anon_sym_SEMI, + [62862] = 4, + ACTIONS(3840), 1, anon_sym_RBRACE, + ACTIONS(5034), 1, anon_sym_COMMA, - [62626] = 3, - ACTIONS(5006), 1, - anon_sym_COLON, + STATE(2008), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5004), 2, + [62876] = 4, + ACTIONS(3840), 1, anon_sym_RBRACE, + ACTIONS(5034), 1, anon_sym_COMMA, - [62638] = 4, - ACTIONS(880), 1, - anon_sym_GT, - ACTIONS(5008), 1, - anon_sym_COMMA, - STATE(1932), 1, - aux_sym_type_arguments_repeat1, + STATE(1894), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62652] = 2, + [62890] = 4, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5036), 1, + anon_sym_SEMI, + ACTIONS(5038), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5010), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [62662] = 2, + [62904] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5012), 3, + ACTIONS(5040), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [62672] = 4, - ACTIONS(2401), 1, - anon_sym_RPAREN, - ACTIONS(5014), 1, - anon_sym_COMMA, - STATE(1806), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62686] = 4, - ACTIONS(4081), 1, + [62914] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(5042), 1, anon_sym_SEMI, - STATE(364), 1, - sym_block, + STATE(260), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62700] = 4, - ACTIONS(4069), 1, + [62928] = 4, + ACTIONS(4115), 1, anon_sym_LBRACE, - ACTIONS(5018), 1, + ACTIONS(5044), 1, anon_sym_SEMI, - STATE(992), 1, + STATE(373), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62714] = 4, - ACTIONS(762), 1, - anon_sym_RPAREN, - ACTIONS(4292), 1, + [62942] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5046), 2, anon_sym_COMMA, - STATE(1995), 1, - aux_sym_parameters_repeat1, + anon_sym_GT, + [62954] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62728] = 4, - ACTIONS(3445), 1, - anon_sym_LT2, - ACTIONS(4106), 1, - sym_identifier, - STATE(2372), 1, - sym_type_arguments, + ACTIONS(5048), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62964] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62742] = 4, - ACTIONS(762), 1, + ACTIONS(5050), 2, anon_sym_RPAREN, - ACTIONS(4292), 1, anon_sym_COMMA, - STATE(1946), 1, - aux_sym_parameters_repeat1, + [62976] = 4, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5052), 1, + anon_sym_SEMI, + ACTIONS(5054), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62756] = 4, - ACTIONS(3788), 1, + [62990] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, + ACTIONS(5056), 1, anon_sym_SEMI, - STATE(368), 1, + STATE(452), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62770] = 4, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5022), 1, - anon_sym_SEMI, - ACTIONS(5024), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62784] = 4, - ACTIONS(766), 1, + [63004] = 4, + ACTIONS(5058), 1, anon_sym_RPAREN, - ACTIONS(4281), 1, + ACTIONS(5060), 1, anon_sym_COMMA, - STATE(1943), 1, - aux_sym_parameters_repeat1, + STATE(2067), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62798] = 4, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4281), 1, + [63018] = 4, + ACTIONS(4433), 1, + anon_sym_GT, + ACTIONS(5062), 1, anon_sym_COMMA, - STATE(1946), 1, - aux_sym_parameters_repeat1, + STATE(2081), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62812] = 2, + [63032] = 4, + ACTIONS(3830), 1, + anon_sym_where, + ACTIONS(5065), 1, + anon_sym_SEMI, + STATE(2471), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5026), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [63046] = 4, + ACTIONS(5067), 1, + anon_sym_RBRACE, + ACTIONS(5069), 1, anon_sym_COMMA, - [62822] = 4, - ACTIONS(5028), 1, - anon_sym_for, - ACTIONS(5030), 1, - anon_sym_loop, - ACTIONS(5032), 1, - anon_sym_while, + STATE(2070), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62836] = 4, - ACTIONS(5034), 1, - anon_sym_RBRACE, - ACTIONS(5036), 1, + [63060] = 4, + ACTIONS(2365), 1, + anon_sym_RPAREN, + ACTIONS(5071), 1, anon_sym_COMMA, - STATE(2084), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1783), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62850] = 2, + [63074] = 4, + ACTIONS(3832), 1, + anon_sym_LT, + ACTIONS(5073), 1, + anon_sym_EQ, + STATE(2553), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5038), 3, - anon_sym_SEMI, + [63088] = 4, + ACTIONS(3870), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [62860] = 4, - ACTIONS(3842), 1, - anon_sym_RBRACE, - ACTIONS(5040), 1, - anon_sym_COMMA, - STATE(1958), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5075), 1, + anon_sym_SEMI, + STATE(437), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62874] = 4, - ACTIONS(3445), 1, + [63102] = 4, + ACTIONS(2560), 1, anon_sym_LT2, - ACTIONS(4106), 1, + ACTIONS(4854), 1, sym_identifier, - STATE(2374), 1, + STATE(785), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62888] = 4, - ACTIONS(3842), 1, - anon_sym_RBRACE, - ACTIONS(5040), 1, - anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62902] = 2, + [63116] = 3, + ACTIONS(4478), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5042), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4433), 2, anon_sym_COMMA, - [62912] = 3, - ACTIONS(5046), 1, - anon_sym_EQ, + anon_sym_GT, + [63128] = 3, + ACTIONS(5079), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5044), 2, + ACTIONS(5077), 2, anon_sym_RBRACE, anon_sym_COMMA, - [62924] = 4, - ACTIONS(4251), 1, + [63140] = 4, + ACTIONS(4405), 1, anon_sym_RPAREN, - ACTIONS(4253), 1, + ACTIONS(4407), 1, anon_sym_COMMA, - STATE(2066), 1, + STATE(2061), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62938] = 4, - ACTIONS(2560), 1, - anon_sym_LT2, - ACTIONS(5048), 1, - sym_identifier, - STATE(793), 1, - sym_type_arguments, + [63154] = 4, + ACTIONS(3207), 1, + anon_sym_RBRACK, + ACTIONS(5081), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62952] = 4, - ACTIONS(3814), 1, + [63168] = 4, + ACTIONS(4071), 1, anon_sym_RBRACE, - ACTIONS(5050), 1, + ACTIONS(5084), 1, anon_sym_COMMA, - STATE(2005), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1957), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62966] = 4, - ACTIONS(4069), 1, + [63182] = 4, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(5052), 1, + ACTIONS(5086), 1, anon_sym_SEMI, - STATE(873), 1, + STATE(900), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62980] = 4, - ACTIONS(3814), 1, - anon_sym_RBRACE, - ACTIONS(5050), 1, + [63196] = 4, + ACTIONS(630), 1, + anon_sym_RBRACK, + ACTIONS(5088), 1, anon_sym_COMMA, - STATE(1960), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2091), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62994] = 4, - ACTIONS(5054), 1, - sym_identifier, - ACTIONS(5056), 1, - anon_sym_await, - ACTIONS(5058), 1, - sym_integer_literal, + [63210] = 4, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5090), 1, + anon_sym_SEMI, + ACTIONS(5092), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63008] = 4, - ACTIONS(4407), 1, + [63224] = 4, + ACTIONS(4429), 1, anon_sym_COMMA, - ACTIONS(4409), 1, + ACTIONS(4431), 1, anon_sym_GT, - STATE(2058), 1, + STATE(2044), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63022] = 4, - ACTIONS(5060), 1, - sym_identifier, - ACTIONS(5062), 1, - anon_sym_ref, - ACTIONS(5064), 1, - sym_mutable_specifier, + [63238] = 4, + ACTIONS(878), 1, + anon_sym_GT, + ACTIONS(5094), 1, + anon_sym_COMMA, + STATE(1983), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63036] = 3, - ACTIONS(4339), 1, - anon_sym_COLON, + [63252] = 4, + ACTIONS(5096), 1, + sym_identifier, + ACTIONS(5098), 1, + anon_sym_ref, + ACTIONS(5100), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5066), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63048] = 4, - ACTIONS(3249), 1, - anon_sym_LBRACE, - ACTIONS(5068), 1, - sym_identifier, - STATE(1933), 1, - sym_use_list, + [63266] = 4, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5102), 1, + anon_sym_SEMI, + ACTIONS(5104), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63062] = 4, - ACTIONS(2518), 1, + [63280] = 4, + ACTIONS(2528), 1, anon_sym_RPAREN, - ACTIONS(5070), 1, + ACTIONS(5106), 1, anon_sym_COMMA, - STATE(2050), 1, + STATE(2105), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63076] = 4, - ACTIONS(5066), 1, - anon_sym_PIPE, - ACTIONS(5072), 1, + [63294] = 4, + ACTIONS(5108), 1, + anon_sym_RBRACE, + ACTIONS(5110), 1, anon_sym_COMMA, - STATE(2091), 1, - aux_sym_closure_parameters_repeat1, + STATE(2048), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63090] = 4, - ACTIONS(3872), 1, + [63308] = 4, + ACTIONS(3800), 1, anon_sym_GT, - ACTIONS(5075), 1, + ACTIONS(5112), 1, anon_sym_COMMA, - STATE(2040), 1, + STATE(2081), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63104] = 4, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(4075), 1, + [63322] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, - STATE(1009), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63118] = 4, - ACTIONS(3870), 1, + ACTIONS(5114), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63334] = 4, + ACTIONS(3798), 1, anon_sym_GT, - ACTIONS(5077), 1, + ACTIONS(5116), 1, anon_sym_COMMA, - STATE(2040), 1, + STATE(2081), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63132] = 4, - ACTIONS(3846), 1, - anon_sym_RBRACE, - ACTIONS(5079), 1, - anon_sym_COMMA, - STATE(1996), 1, - aux_sym_field_initializer_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63146] = 4, - ACTIONS(396), 1, + [63348] = 4, + ACTIONS(5114), 1, anon_sym_RPAREN, - ACTIONS(3185), 1, + ACTIONS(5118), 1, anon_sym_COMMA, - STATE(1977), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63160] = 4, - ACTIONS(3840), 1, - anon_sym_LBRACE, - ACTIONS(5081), 1, - anon_sym_SEMI, - STATE(860), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63174] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(5083), 1, - anon_sym_SEMI, - STATE(2417), 1, - sym_where_clause, + STATE(2105), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63188] = 3, - ACTIONS(5087), 1, - anon_sym_COLON, + [63362] = 4, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + ACTIONS(5121), 1, + anon_sym_GT, + STATE(2172), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5085), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [63200] = 4, - ACTIONS(3840), 1, + [63376] = 4, + ACTIONS(3874), 1, anon_sym_LBRACE, - ACTIONS(5089), 1, + ACTIONS(5123), 1, anon_sym_SEMI, - STATE(835), 1, + STATE(917), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63214] = 4, - ACTIONS(3804), 1, - anon_sym_where, - ACTIONS(5091), 1, - anon_sym_SEMI, - STATE(2507), 1, - sym_where_clause, + [63390] = 4, + ACTIONS(5121), 1, + anon_sym_GT, + ACTIONS(5125), 1, + anon_sym_COMMA, + STATE(2034), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63228] = 4, - ACTIONS(2560), 1, - anon_sym_LT2, - ACTIONS(5048), 1, + [63404] = 4, + ACTIONS(5127), 1, sym_identifier, - STATE(796), 1, - sym_type_arguments, + ACTIONS(5129), 1, + anon_sym_ref, + ACTIONS(5131), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63242] = 4, - ACTIONS(4075), 1, + [63418] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(5093), 1, - anon_sym_as, - ACTIONS(5095), 1, - anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63256] = 4, - ACTIONS(4075), 1, + ACTIONS(5133), 2, + anon_sym_COMMA, + anon_sym_GT, + [63430] = 4, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(5097), 1, + ACTIONS(5135), 1, anon_sym_SEMI, - ACTIONS(5099), 1, + ACTIONS(5137), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63270] = 4, - ACTIONS(3804), 1, + [63444] = 4, + ACTIONS(5139), 1, + anon_sym_RBRACE, + ACTIONS(5141), 1, + anon_sym_COMMA, + STATE(2032), 1, + aux_sym_field_declaration_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63458] = 4, + ACTIONS(3830), 1, anon_sym_where, - ACTIONS(5101), 1, + ACTIONS(5143), 1, anon_sym_SEMI, - STATE(2423), 1, + STATE(2490), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63284] = 4, - ACTIONS(5103), 1, - anon_sym_RBRACE, - ACTIONS(5105), 1, - anon_sym_COMMA, - STATE(2030), 1, - aux_sym_field_declaration_list_repeat1, + [63472] = 4, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, + ACTIONS(3560), 1, + anon_sym_COLON, + STATE(2056), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63298] = 3, - ACTIONS(5107), 1, - anon_sym_EQ_GT, - ACTIONS(5109), 1, - anon_sym_AMP_AMP, + [63486] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2552), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63309] = 3, - ACTIONS(3578), 1, + [63497] = 3, + ACTIONS(4013), 1, anon_sym_COLON_COLON, - ACTIONS(5111), 1, + ACTIONS(5145), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63320] = 3, - ACTIONS(4059), 1, + [63508] = 3, + ACTIONS(4035), 1, anon_sym_COLON_COLON, - ACTIONS(5113), 1, + ACTIONS(5145), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63331] = 3, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - ACTIONS(5113), 1, - anon_sym_RPAREN, + [63519] = 3, + ACTIONS(2552), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63342] = 3, - ACTIONS(4041), 1, - anon_sym_COLON_COLON, - ACTIONS(5113), 1, + [63530] = 3, + ACTIONS(5147), 1, + sym_identifier, + ACTIONS(5149), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63541] = 3, + ACTIONS(5127), 1, + sym_identifier, + ACTIONS(5131), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63552] = 3, + ACTIONS(4079), 1, anon_sym_RPAREN, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63353] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1645), 1, - sym_parameters, + [63563] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5153), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63364] = 3, - ACTIONS(3802), 1, + [63574] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(934), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63375] = 3, - ACTIONS(3840), 1, + [63585] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(847), 1, + STATE(935), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63386] = 3, - ACTIONS(3840), 1, + [63596] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(846), 1, + STATE(936), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63397] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(407), 1, - sym_field_declaration_list, + [63607] = 3, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63408] = 3, - ACTIONS(4075), 1, + [63618] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(5115), 1, + ACTIONS(5157), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63419] = 3, - ACTIONS(5107), 1, - anon_sym_LBRACE, - ACTIONS(5117), 1, - anon_sym_AMP_AMP, + [63629] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5159), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63430] = 3, - ACTIONS(3802), 1, + [63640] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(840), 1, + STATE(940), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63441] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5121), 1, - anon_sym_RPAREN, + [63651] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63452] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5123), 1, + ACTIONS(4433), 2, + anon_sym_COMMA, + anon_sym_GT, + [63660] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5145), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63463] = 3, - ACTIONS(3840), 1, + [63671] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(834), 1, + STATE(945), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63474] = 2, + [63682] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5161), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5125), 2, - sym_identifier, - sym_metavariable, - [63483] = 3, - ACTIONS(3788), 1, + [63693] = 3, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(443), 1, - sym_declaration_list, + STATE(480), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63494] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2429), 1, - sym_block, + [63704] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5163), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63505] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, + [63715] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2394), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63516] = 3, - ACTIONS(4112), 1, + [63726] = 3, + ACTIONS(4157), 1, anon_sym_LBRACE, - STATE(828), 1, + STATE(952), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63527] = 3, - ACTIONS(3828), 1, + [63737] = 3, + ACTIONS(4157), 1, anon_sym_LBRACE, - STATE(404), 1, - sym_field_declaration_list, + STATE(890), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63538] = 3, - ACTIONS(5127), 1, - anon_sym_SEMI, - ACTIONS(5129), 1, - anon_sym_as, + [63748] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63549] = 3, - ACTIONS(3802), 1, + ACTIONS(5165), 2, + sym_identifier, + sym_metavariable, + [63757] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(825), 1, + STATE(955), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63560] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(798), 1, - sym_parameters, + [63768] = 3, + ACTIONS(4021), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63571] = 3, - ACTIONS(3802), 1, + [63779] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(822), 1, + STATE(958), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63582] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5131), 1, - anon_sym_in, + [63790] = 3, + ACTIONS(4031), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63593] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(62), 1, - sym_block, + [63801] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63604] = 3, - ACTIONS(5133), 1, + ACTIONS(5167), 2, + sym_identifier, + sym_metavariable, + [63810] = 3, + ACTIONS(5169), 1, anon_sym_SEMI, - ACTIONS(5135), 1, + ACTIONS(5171), 1, anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63615] = 3, + [63821] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(818), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63626] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(72), 1, + STATE(962), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63637] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(5066), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [63646] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5137), 1, - anon_sym_GT, + [63832] = 3, + ACTIONS(4059), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63657] = 3, + [63843] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2392), 1, + STATE(2398), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63668] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5139), 1, + [63854] = 3, + ACTIONS(4063), 1, anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63679] = 3, - ACTIONS(3511), 1, - anon_sym_BANG, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, + [63865] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63690] = 3, - ACTIONS(5119), 1, + [63876] = 3, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5141), 1, + ACTIONS(5173), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63701] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5143), 1, - anon_sym_RPAREN, + [63887] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63712] = 3, - ACTIONS(5119), 1, + [63898] = 3, + ACTIONS(5151), 1, anon_sym_SEMI, - ACTIONS(5145), 1, + ACTIONS(5175), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63723] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2389), 1, - sym_block, + [63909] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63734] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5147), 1, - anon_sym_RPAREN, + ACTIONS(5177), 2, + sym_identifier, + sym_metavariable, + [63918] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63745] = 3, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5149), 1, - anon_sym_RBRACE, + ACTIONS(5179), 2, + sym_identifier, + sym_metavariable, + [63927] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5181), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63756] = 3, - ACTIONS(4112), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym_enum_variant_list, + [63938] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63767] = 3, - ACTIONS(5060), 1, - sym_identifier, - ACTIONS(5064), 1, - sym_mutable_specifier, + ACTIONS(4165), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [63947] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(883), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63778] = 3, - ACTIONS(4005), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + [63958] = 3, + ACTIONS(5183), 1, + anon_sym_LBRACK, + ACTIONS(5185), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63789] = 3, - ACTIONS(2560), 1, - anon_sym_LT2, - STATE(891), 1, - sym_type_arguments, + [63969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63800] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1664), 1, - sym_parameters, + ACTIONS(5187), 2, + sym_identifier, + sym_metavariable, + [63978] = 3, + ACTIONS(5189), 1, + sym_identifier, + ACTIONS(5191), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63811] = 3, - ACTIONS(3987), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, + [63989] = 3, + ACTIONS(5193), 1, anon_sym_SEMI, + ACTIONS(5195), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63822] = 2, + [64000] = 3, + ACTIONS(3588), 1, + anon_sym_COLON_COLON, + ACTIONS(5197), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4174), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63831] = 3, - ACTIONS(4007), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + [64011] = 3, + ACTIONS(3850), 1, + anon_sym_LBRACE, + STATE(866), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63842] = 3, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(5151), 1, + [64022] = 3, + ACTIONS(3578), 1, anon_sym_COLON_COLON, + ACTIONS(5197), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63853] = 3, - ACTIONS(284), 1, + [64033] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(2380), 1, - sym_block, + STATE(861), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63864] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(883), 1, - sym_block, + [64044] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63875] = 3, - ACTIONS(284), 1, + ACTIONS(5199), 2, + sym_identifier, + sym_metavariable, + [64053] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(2325), 1, - sym_block, + STATE(858), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63886] = 3, - ACTIONS(4199), 1, + [64064] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(413), 1, - sym_enum_variant_list, + STATE(69), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63897] = 3, - ACTIONS(5153), 1, + [64075] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5201), 1, anon_sym_SEMI, - ACTIONS(5155), 1, - anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63908] = 3, - ACTIONS(3802), 1, + [64086] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(901), 1, - sym_field_declaration_list, + STATE(2573), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63919] = 2, + [64097] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4387), 2, + ACTIONS(4965), 2, anon_sym_COMMA, anon_sym_GT, - [63928] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1357), 1, - sym_parameters, + [64106] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5203), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63939] = 3, - ACTIONS(3840), 1, + [64117] = 3, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(908), 1, + STATE(470), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63950] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(426), 1, - sym_declaration_list, + [64128] = 3, + ACTIONS(5205), 1, + anon_sym_SEMI, + ACTIONS(5207), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63961] = 3, - ACTIONS(3802), 1, - anon_sym_LBRACE, - STATE(911), 1, - sym_field_declaration_list, + [64139] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5209), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63972] = 3, - ACTIONS(4015), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_SEMI, + [64150] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63983] = 3, - ACTIONS(4199), 1, + [64161] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(395), 1, - sym_enum_variant_list, + STATE(2395), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63994] = 2, + [64172] = 3, + ACTIONS(3940), 1, + anon_sym_COLON, + STATE(2056), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5157), 2, - anon_sym_const, - sym_mutable_specifier, - [64003] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_field_declaration_list, + [64183] = 3, + ACTIONS(5211), 1, + anon_sym_LBRACK, + ACTIONS(5213), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64014] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2538), 1, - sym_block, + [64194] = 3, + ACTIONS(2552), 1, + anon_sym_LPAREN, + STATE(807), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64025] = 3, + [64205] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2542), 1, + STATE(2401), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64036] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1672), 1, - sym_parameters, + [64216] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5215), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64047] = 3, - ACTIONS(3840), 1, + [64227] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5217), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64238] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(89), 1, + sym_closure_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64249] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(986), 1, + STATE(991), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64058] = 3, - ACTIONS(4075), 1, + [64260] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(5159), 1, + ACTIONS(5219), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64069] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2373), 1, - sym_block, + [64271] = 3, + ACTIONS(5221), 1, + anon_sym_LT, + STATE(676), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64080] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(779), 1, - sym_parameters, + [64282] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2416), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64091] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5161), 1, - anon_sym_SEMI, + [64293] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2420), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64102] = 3, - ACTIONS(3840), 1, + [64304] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(1000), 1, + STATE(816), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64113] = 3, - ACTIONS(3840), 1, + [64315] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(1001), 1, + STATE(1022), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64124] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_block, + [64326] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64135] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2455), 1, - sym_block, + ACTIONS(4824), 2, + anon_sym_COMMA, + anon_sym_GT, + [64335] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64146] = 3, - ACTIONS(3788), 1, + [64346] = 3, + ACTIONS(4171), 1, anon_sym_LBRACE, - STATE(444), 1, - sym_declaration_list, + STATE(296), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64157] = 3, + [64357] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1038), 1, + STATE(2444), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64168] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5163), 1, - anon_sym_EQ, + [64368] = 3, + ACTIONS(4157), 1, + anon_sym_LBRACE, + STATE(827), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64179] = 3, - ACTIONS(4112), 1, + [64379] = 3, + ACTIONS(4157), 1, anon_sym_LBRACE, - STATE(1016), 1, + STATE(1013), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64190] = 3, + [64390] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2370), 1, + STATE(2445), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64201] = 3, - ACTIONS(3351), 1, + [64401] = 3, + ACTIONS(2570), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, - anon_sym_AMP_AMP, + STATE(928), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64212] = 3, - ACTIONS(3802), 1, + [64412] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(1020), 1, + STATE(1038), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64223] = 3, - ACTIONS(4075), 1, + [64423] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(5165), 1, + ACTIONS(5223), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64234] = 3, - ACTIONS(3802), 1, + [64434] = 3, + ACTIONS(3850), 1, anon_sym_LBRACE, - STATE(1030), 1, + STATE(1040), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64245] = 3, - ACTIONS(3840), 1, + [64445] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(1041), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64256] = 3, - ACTIONS(5167), 1, - anon_sym_LT, - STATE(743), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64267] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64278] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5169), 1, - anon_sym_in, + [64456] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64289] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5171), 1, - anon_sym_EQ, + ACTIONS(5225), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64465] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5227), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64300] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_declaration_list, + [64476] = 3, + ACTIONS(5151), 1, + anon_sym_SEMI, + ACTIONS(5229), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64311] = 3, - ACTIONS(4112), 1, + [64487] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(964), 1, - sym_enum_variant_list, + STATE(70), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64322] = 3, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(1966), 1, - sym_lifetime, + [64498] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5231), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64333] = 3, - ACTIONS(3449), 1, + [64509] = 3, + ACTIONS(5233), 1, anon_sym_LPAREN, - STATE(1698), 1, - sym_parameters, + ACTIONS(5235), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64344] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5173), 1, - anon_sym_SEMI, + [64520] = 3, + ACTIONS(5237), 1, + anon_sym_LPAREN, + ACTIONS(5239), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64355] = 3, + [64531] = 3, ACTIONS(3449), 1, anon_sym_LPAREN, - STATE(1352), 1, + STATE(1627), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64366] = 3, - ACTIONS(3788), 1, + [64542] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(294), 1, - sym_declaration_list, + STATE(899), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64377] = 3, - ACTIONS(3788), 1, + [64553] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(292), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64388] = 2, + STATE(891), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4889), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64397] = 2, + [64564] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(4377), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5175), 2, - sym_float_literal, - sym_integer_literal, - [64406] = 2, + [64575] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2493), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4872), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64415] = 3, - ACTIONS(284), 1, + [64586] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(2383), 1, - sym_block, + STATE(284), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64426] = 3, + [64597] = 3, ACTIONS(15), 1, anon_sym_LBRACE, - STATE(84), 1, + STATE(81), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64437] = 3, - ACTIONS(4041), 1, - anon_sym_COLON_COLON, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [64608] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1698), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64448] = 3, - ACTIONS(4199), 1, + [64619] = 3, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(282), 1, - sym_enum_variant_list, + STATE(294), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64459] = 2, + [64630] = 3, + ACTIONS(5241), 1, + anon_sym_SEMI, + ACTIONS(5243), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5179), 2, - sym_identifier, - sym_metavariable, - [64468] = 3, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [64641] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(77), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64479] = 3, - ACTIONS(5181), 1, - anon_sym_BANG, - ACTIONS(5183), 1, - anon_sym_COLON_COLON, + [64652] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64490] = 3, - ACTIONS(284), 1, + ACTIONS(4715), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64661] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(974), 1, - sym_block, + STATE(461), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64501] = 3, + [64672] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(887), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64512] = 3, - ACTIONS(4059), 1, - anon_sym_COLON_COLON, - ACTIONS(5177), 1, - anon_sym_RPAREN, + [64683] = 3, + ACTIONS(3832), 1, + anon_sym_LT, + STATE(708), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64523] = 3, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, - ACTIONS(5185), 1, - anon_sym_RPAREN, + [64694] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64534] = 3, + ACTIONS(5245), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64703] = 3, ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(276), 1, + STATE(302), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64545] = 3, - ACTIONS(4075), 1, + [64714] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(330), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64725] = 3, + ACTIONS(4105), 1, anon_sym_PLUS, - ACTIONS(5187), 1, + ACTIONS(5247), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64556] = 3, + [64736] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4383), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64745] = 3, ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(269), 1, + STATE(469), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64567] = 3, - ACTIONS(2688), 1, - anon_sym_COLON_COLON, - ACTIONS(3928), 1, - anon_sym_BANG, + [64756] = 3, + ACTIONS(4049), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64578] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(268), 1, - sym_declaration_list, + [64767] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1712), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64589] = 3, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(1101), 1, - sym_declaration_list, + [64778] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64600] = 3, - ACTIONS(5189), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(4562), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [64787] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, + STATE(1084), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64611] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(270), 1, - sym_field_declaration_list, + [64798] = 3, + ACTIONS(2560), 1, + anon_sym_LT2, + STATE(1011), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64622] = 2, + [64809] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(306), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5193), 2, - anon_sym_const, - sym_mutable_specifier, - [64631] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5195), 1, + [64820] = 3, + ACTIONS(4055), 1, + anon_sym_RPAREN, + ACTIONS(5151), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64642] = 3, - ACTIONS(3840), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_declaration_list, + [64831] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5249), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64653] = 3, - ACTIONS(3840), 1, + [64842] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(1115), 1, + STATE(1092), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64664] = 3, - ACTIONS(3788), 1, + [64853] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(273), 1, + STATE(1093), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64675] = 3, - ACTIONS(3449), 1, + [64864] = 3, + ACTIONS(2552), 1, anon_sym_LPAREN, - STATE(1616), 1, + STATE(776), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64686] = 3, + [64875] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2314), 1, + STATE(2391), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64697] = 3, - ACTIONS(2552), 1, - anon_sym_LPAREN, - STATE(802), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64708] = 3, - ACTIONS(3449), 1, - anon_sym_LPAREN, - STATE(1363), 1, - sym_parameters, + [64886] = 3, + ACTIONS(5251), 1, + sym_identifier, + ACTIONS(5253), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64719] = 2, + [64897] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5197), 2, - sym_identifier, - sym_metavariable, - [64728] = 2, + ACTIONS(5255), 2, + anon_sym_const, + sym_mutable_specifier, + [64906] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(305), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5199), 2, - anon_sym_const, - sym_mutable_specifier, - [64737] = 3, + [64917] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(801), 1, + STATE(799), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64748] = 3, - ACTIONS(15), 1, + [64928] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(75), 1, + STATE(2570), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64759] = 3, - ACTIONS(3828), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym_field_declaration_list, + [64939] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64770] = 3, - ACTIONS(3351), 1, + ACTIONS(5257), 2, + sym_float_literal, + sym_integer_literal, + [64948] = 3, + ACTIONS(5259), 1, anon_sym_EQ_GT, - ACTIONS(5109), 1, + ACTIONS(5261), 1, anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64781] = 3, - ACTIONS(5201), 1, - anon_sym_LBRACK, - ACTIONS(5203), 1, - anon_sym_BANG, + [64959] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1364), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64792] = 3, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5207), 1, - anon_sym_LBRACE, + [64970] = 3, + ACTIONS(3359), 1, + anon_sym_EQ_GT, + ACTIONS(5261), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64803] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5209), 1, - anon_sym_in, + [64981] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64814] = 3, - ACTIONS(2590), 1, - anon_sym_LBRACE, - STATE(1082), 1, - sym_field_initializer_list, + ACTIONS(4830), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64990] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1628), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64825] = 2, + [65001] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4793), 2, - anon_sym_RBRACE, + ACTIONS(2395), 2, anon_sym_COMMA, - [64834] = 3, + anon_sym_GT, + [65010] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1024), 1, + STATE(2494), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64845] = 3, - ACTIONS(632), 1, - anon_sym_LBRACE, - STATE(228), 1, - sym_block, + [65021] = 3, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(2172), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64856] = 3, - ACTIONS(858), 1, + [65032] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65041] = 3, + ACTIONS(284), 1, anon_sym_LBRACE, - STATE(1455), 1, + STATE(851), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64867] = 3, - ACTIONS(4031), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65052] = 3, + ACTIONS(4083), 1, + anon_sym_RBRACE, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64878] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(98), 1, - sym_closure_parameters, + [65063] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64889] = 2, + ACTIONS(4815), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [65072] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1349), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5211), 2, - sym_identifier, - sym_metavariable, - [64898] = 3, - ACTIONS(3840), 1, + [65083] = 3, + ACTIONS(632), 1, anon_sym_LBRACE, - STATE(937), 1, - sym_declaration_list, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64909] = 3, - ACTIONS(284), 1, + [65094] = 3, + ACTIONS(3874), 1, anon_sym_LBRACE, - STATE(1039), 1, - sym_block, + STATE(1122), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64920] = 3, - ACTIONS(5213), 1, - anon_sym_LPAREN, - ACTIONS(5215), 1, + [65105] = 3, + ACTIONS(850), 1, anon_sym_LBRACE, + STATE(1426), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64931] = 3, - ACTIONS(5217), 1, - anon_sym_LPAREN, - ACTIONS(5219), 1, - anon_sym_LBRACE, + [65116] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5263), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65127] = 3, + ACTIONS(5265), 1, + anon_sym_BANG, + ACTIONS(5267), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64942] = 3, + [65138] = 3, ACTIONS(85), 1, anon_sym_PIPE, - STATE(90), 1, + STATE(97), 1, sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64953] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4478), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64962] = 3, - ACTIONS(5221), 1, - anon_sym_LBRACK, - ACTIONS(5223), 1, - anon_sym_BANG, + [65149] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(2510), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64973] = 2, + [65160] = 3, + ACTIONS(284), 1, + anon_sym_LBRACE, + STATE(892), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4273), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64982] = 2, + [65171] = 3, + ACTIONS(2642), 1, + anon_sym_COLON_COLON, + ACTIONS(3928), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4741), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64991] = 2, + [65182] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4735), 2, - anon_sym_COMMA, - anon_sym_GT, - [65000] = 2, + ACTIONS(5269), 2, + anon_sym_const, + sym_mutable_specifier, + [65191] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5271), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4724), 2, - anon_sym_COMMA, - anon_sym_GT, - [65009] = 3, + [65202] = 3, ACTIONS(284), 1, anon_sym_LBRACE, - STATE(2556), 1, + STATE(2422), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65020] = 3, + [65213] = 3, + ACTIONS(2778), 1, + anon_sym_COLON, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65224] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(226), 1, + STATE(216), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65031] = 3, - ACTIONS(5225), 1, - anon_sym_SEMI, - ACTIONS(5227), 1, - anon_sym_as, + [65235] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65042] = 3, + ACTIONS(4768), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65244] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(227), 1, + STATE(226), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65053] = 3, - ACTIONS(5229), 1, - sym_identifier, - ACTIONS(5231), 1, - sym_mutable_specifier, + [65255] = 3, + ACTIONS(4101), 1, + anon_sym_COLON, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65064] = 2, + [65266] = 3, + ACTIONS(5273), 1, + anon_sym_LPAREN, + ACTIONS(5275), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5233), 2, - sym_identifier, - sym_metavariable, - [65073] = 3, + [65277] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(234), 1, + STATE(219), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65084] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5235), 1, - anon_sym_in, + [65288] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(390), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65095] = 2, + [65299] = 3, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4671), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65104] = 3, + [65310] = 3, ACTIONS(632), 1, anon_sym_LBRACE, STATE(210), 1, @@ -126038,23 +123739,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65115] = 3, - ACTIONS(3788), 1, + [65321] = 3, + ACTIONS(3359), 1, anon_sym_LBRACE, - STATE(355), 1, - sym_declaration_list, + ACTIONS(5281), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65126] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5237), 1, - anon_sym_in, + [65332] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(429), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65137] = 3, + [65343] = 3, ACTIONS(632), 1, anon_sym_LBRACE, STATE(217), 1, @@ -126062,1782 +123763,1780 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65148] = 3, - ACTIONS(4075), 1, - anon_sym_PLUS, - ACTIONS(5239), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65159] = 3, - ACTIONS(3788), 1, + [65354] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(379), 1, - sym_declaration_list, + STATE(420), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65170] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(4339), 1, - anon_sym_COLON, + [65365] = 3, + ACTIONS(2313), 1, + anon_sym_SQUOTE, + STATE(1882), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65181] = 3, - ACTIONS(2792), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65376] = 3, + ACTIONS(4171), 1, + anon_sym_LBRACE, + STATE(257), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65192] = 3, - ACTIONS(3788), 1, + [65387] = 3, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(380), 1, + STATE(376), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65203] = 2, + [65398] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5283), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5241), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65212] = 3, - ACTIONS(4316), 1, - anon_sym_PIPE, - ACTIONS(5243), 1, - anon_sym_in, + [65409] = 3, + ACTIONS(5259), 1, + anon_sym_LBRACE, + ACTIONS(5281), 1, + anon_sym_AMP_AMP, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65223] = 2, + [65420] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(37), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5245), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65232] = 2, + [65431] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4385), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [65241] = 3, + ACTIONS(5285), 2, + anon_sym_const, + sym_mutable_specifier, + [65440] = 3, ACTIONS(3586), 1, anon_sym_COLON_COLON, - ACTIONS(5247), 1, - anon_sym_BANG, + ACTIONS(5287), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65252] = 3, - ACTIONS(2840), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65451] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65263] = 3, - ACTIONS(3592), 1, - anon_sym_COLON_COLON, - ACTIONS(5247), 1, - anon_sym_BANG, + ACTIONS(4785), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65460] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(409), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65274] = 3, - ACTIONS(2848), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65471] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4651), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65480] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1354), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65285] = 3, + [65491] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(219), 1, + STATE(227), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65296] = 3, - ACTIONS(4199), 1, - anon_sym_LBRACE, - STATE(420), 1, - sym_enum_variant_list, + [65502] = 3, + ACTIONS(4039), 1, + anon_sym_COLON_COLON, + ACTIONS(5289), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65307] = 3, - ACTIONS(284), 1, + [65513] = 3, + ACTIONS(3870), 1, anon_sym_LBRACE, - STATE(2555), 1, - sym_block, + STATE(408), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65318] = 3, - ACTIONS(2313), 1, - anon_sym_SQUOTE, - STATE(2265), 1, - sym_lifetime, + [65524] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(276), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65329] = 3, - ACTIONS(3916), 1, - anon_sym_COLON, - STATE(2074), 1, - sym_trait_bounds, + [65535] = 3, + ACTIONS(4105), 1, + anon_sym_PLUS, + ACTIONS(5291), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65340] = 3, - ACTIONS(3806), 1, - anon_sym_LT, - STATE(690), 1, - sym_type_parameters, + [65546] = 3, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + ACTIONS(5289), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65351] = 3, - ACTIONS(4617), 1, - sym_identifier, - ACTIONS(4621), 1, - sym_mutable_specifier, + [65557] = 3, + ACTIONS(4035), 1, + anon_sym_COLON_COLON, + ACTIONS(5289), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65362] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(63), 1, - sym_block, + [65568] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65373] = 3, + ACTIONS(5293), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [65577] = 3, ACTIONS(632), 1, anon_sym_LBRACE, - STATE(220), 1, + STATE(234), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65384] = 3, - ACTIONS(5249), 1, - sym_identifier, - ACTIONS(5251), 1, - sym_mutable_specifier, + [65588] = 3, + ACTIONS(2798), 1, + anon_sym_COLON, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65395] = 3, - ACTIONS(284), 1, - anon_sym_LBRACE, - STATE(2561), 1, - sym_block, + [65599] = 3, + ACTIONS(2806), 1, + anon_sym_COLON, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65406] = 2, + [65610] = 3, + ACTIONS(4311), 1, + anon_sym_PIPE, + ACTIONS(5295), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5253), 2, - sym_identifier, - sym_metavariable, - [65415] = 2, + [65621] = 3, + ACTIONS(3828), 1, + anon_sym_LBRACE, + STATE(283), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(5255), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65424] = 3, - ACTIONS(2880), 1, - anon_sym_COLON, - ACTIONS(4075), 1, - anon_sym_PLUS, + [65632] = 3, + ACTIONS(3870), 1, + anon_sym_LBRACE, + STATE(285), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65435] = 3, - ACTIONS(3788), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_declaration_list, + [65643] = 3, + ACTIONS(4773), 1, + sym_identifier, + ACTIONS(4777), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65446] = 3, - ACTIONS(284), 1, + [65654] = 3, + ACTIONS(3828), 1, anon_sym_LBRACE, - STATE(2503), 1, - sym_block, + STATE(397), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65457] = 3, - ACTIONS(4009), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65665] = 3, + ACTIONS(3509), 1, + anon_sym_BANG, + ACTIONS(3532), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65468] = 3, - ACTIONS(4011), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65676] = 3, + ACTIONS(3449), 1, + anon_sym_LPAREN, + STATE(1639), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65479] = 3, - ACTIONS(4027), 1, - anon_sym_RBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65687] = 3, + ACTIONS(2850), 1, + anon_sym_COLON, + ACTIONS(4105), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65490] = 3, - ACTIONS(4043), 1, - anon_sym_RPAREN, - ACTIONS(5119), 1, - anon_sym_SEMI, + [65698] = 3, + ACTIONS(3439), 1, + anon_sym_BANG, + ACTIONS(5297), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65501] = 3, - ACTIONS(5257), 1, - sym_identifier, - ACTIONS(5259), 1, - sym_mutable_specifier, + [65709] = 2, + ACTIONS(5299), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65512] = 2, + [65717] = 2, + ACTIONS(5301), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2433), 2, - anon_sym_COMMA, - anon_sym_GT, - [65521] = 2, - ACTIONS(5261), 1, - anon_sym_SEMI, + [65725] = 2, + ACTIONS(5303), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65529] = 2, - ACTIONS(5263), 1, - anon_sym_EQ_GT, + [65733] = 2, + ACTIONS(5305), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65537] = 2, - ACTIONS(4605), 1, - anon_sym_RBRACE, + [65741] = 2, + ACTIONS(5307), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65545] = 2, - ACTIONS(5265), 1, + [65749] = 2, + ACTIONS(5309), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65553] = 2, - ACTIONS(5267), 1, - anon_sym_SEMI, + [65757] = 2, + ACTIONS(5311), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65561] = 2, - ACTIONS(4571), 1, + [65765] = 2, + ACTIONS(4695), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65569] = 2, - ACTIONS(5269), 1, + [65773] = 2, + ACTIONS(5313), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65577] = 2, - ACTIONS(4009), 1, - anon_sym_SEMI, + [65781] = 2, + ACTIONS(4703), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65585] = 2, - ACTIONS(5271), 1, + [65789] = 2, + ACTIONS(5315), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65593] = 2, - ACTIONS(4027), 1, - anon_sym_SEMI, + [65797] = 2, + ACTIONS(4684), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65601] = 2, - ACTIONS(5273), 1, + [65805] = 2, + ACTIONS(5317), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65609] = 2, - ACTIONS(5275), 1, - anon_sym_SEMI, + [65813] = 2, + ACTIONS(5319), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65617] = 2, - ACTIONS(3195), 1, - anon_sym_RPAREN, + [65821] = 2, + ACTIONS(5321), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65625] = 2, - ACTIONS(3161), 1, + [65829] = 2, + ACTIONS(5323), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65633] = 2, - ACTIONS(5277), 1, - sym_identifier, + [65837] = 2, + ACTIONS(2399), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65641] = 2, - ACTIONS(5279), 1, + [65845] = 2, + ACTIONS(5325), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65649] = 2, - ACTIONS(5281), 1, - anon_sym_SEMI, + [65853] = 2, + ACTIONS(5327), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65657] = 2, - ACTIONS(5283), 1, - sym_identifier, + [65861] = 2, + ACTIONS(2449), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65665] = 2, - ACTIONS(5285), 1, - anon_sym_RPAREN, + [65869] = 2, + ACTIONS(5329), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65673] = 2, - ACTIONS(5287), 1, - anon_sym_RBRACE, + [65877] = 2, + ACTIONS(5331), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65681] = 2, - ACTIONS(5289), 1, + [65885] = 2, + ACTIONS(5333), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65689] = 2, - ACTIONS(5291), 1, - sym_identifier, + [65893] = 2, + ACTIONS(5335), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65697] = 2, - ACTIONS(4623), 1, + [65901] = 2, + ACTIONS(4676), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65705] = 2, - ACTIONS(5293), 1, + [65909] = 2, + ACTIONS(5337), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65713] = 2, - ACTIONS(5295), 1, - anon_sym_RBRACE, + [65917] = 2, + ACTIONS(5339), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65721] = 2, - ACTIONS(5297), 1, + [65925] = 2, + ACTIONS(5341), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65729] = 2, - ACTIONS(5299), 1, - sym_identifier, + [65933] = 2, + ACTIONS(5343), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65737] = 2, - ACTIONS(5301), 1, - anon_sym_COLON, + [65941] = 2, + ACTIONS(5151), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65745] = 2, - ACTIONS(5303), 1, - anon_sym_RBRACK, + [65949] = 2, + ACTIONS(5345), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65753] = 2, - ACTIONS(4255), 1, + [65957] = 2, + ACTIONS(4375), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65761] = 2, - ACTIONS(5305), 1, - sym_identifier, + [65965] = 2, + ACTIONS(5347), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65769] = 2, - ACTIONS(3578), 1, - anon_sym_COLON_COLON, + [65973] = 2, + ACTIONS(5349), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65777] = 2, - ACTIONS(5307), 1, + [65981] = 2, + ACTIONS(5351), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65785] = 2, - ACTIONS(4633), 1, - sym_identifier, + [65989] = 2, + ACTIONS(5353), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65793] = 2, - ACTIONS(5309), 1, + [65997] = 2, + ACTIONS(5355), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65801] = 2, - ACTIONS(5311), 1, + [66005] = 2, + ACTIONS(5357), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65809] = 2, - ACTIONS(4659), 1, + [66013] = 2, + ACTIONS(4660), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65817] = 2, - ACTIONS(5313), 1, + [66021] = 2, + ACTIONS(5359), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65825] = 2, - ACTIONS(5315), 1, - sym_identifier, + [66029] = 2, + ACTIONS(4531), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65833] = 2, - ACTIONS(5317), 1, - sym_identifier, + [66037] = 2, + ACTIONS(5361), 1, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65841] = 2, - ACTIONS(5319), 1, + [66045] = 2, + ACTIONS(5363), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65849] = 2, - ACTIONS(4637), 1, - anon_sym_RBRACE, + [66053] = 2, + ACTIONS(5365), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65857] = 2, - ACTIONS(4337), 1, - anon_sym_RPAREN, + [66061] = 2, + ACTIONS(5367), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65865] = 2, - ACTIONS(5321), 1, - anon_sym_COLON_COLON, + [66069] = 2, + ACTIONS(5369), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65873] = 2, - ACTIONS(4728), 1, - anon_sym_RBRACE, + [66077] = 2, + ACTIONS(5371), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65881] = 2, - ACTIONS(5323), 1, + [66085] = 2, + ACTIONS(5373), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65889] = 2, - ACTIONS(5325), 1, + [66093] = 2, + ACTIONS(5375), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65897] = 2, - ACTIONS(5327), 1, + [66101] = 2, + ACTIONS(5377), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65905] = 2, - ACTIONS(5329), 1, + [66109] = 2, + ACTIONS(5379), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65913] = 2, - ACTIONS(5331), 1, - anon_sym_RBRACK, + [66117] = 2, + ACTIONS(5381), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65921] = 2, - ACTIONS(5068), 1, + [66125] = 2, + ACTIONS(4730), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65929] = 2, - ACTIONS(5333), 1, - sym_identifier, + [66133] = 2, + ACTIONS(4527), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65937] = 2, - ACTIONS(5335), 1, + [66141] = 2, + ACTIONS(5383), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65945] = 2, - ACTIONS(3183), 1, + [66149] = 2, + ACTIONS(3189), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65953] = 2, - ACTIONS(5337), 1, - sym_identifier, + [66157] = 2, + ACTIONS(5385), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65961] = 2, - ACTIONS(3533), 1, + [66165] = 2, + ACTIONS(3540), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65969] = 2, - ACTIONS(5339), 1, - anon_sym_SEMI, + [66173] = 2, + ACTIONS(5387), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65977] = 2, - ACTIONS(5341), 1, + [66181] = 2, + ACTIONS(4523), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65985] = 2, - ACTIONS(2712), 1, - anon_sym_COLON_COLON, + [66189] = 2, + ACTIONS(5389), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65993] = 2, - ACTIONS(5343), 1, - anon_sym_SEMI, + [66197] = 2, + ACTIONS(5391), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66001] = 2, - ACTIONS(2700), 1, + [66205] = 2, + ACTIONS(3532), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66009] = 2, - ACTIONS(4771), 1, + [66213] = 2, + ACTIONS(5393), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66017] = 2, - ACTIONS(4777), 1, - anon_sym_RBRACE, + [66221] = 2, + ACTIONS(626), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66025] = 2, - ACTIONS(5345), 1, - sym_identifier, + [66229] = 2, + ACTIONS(5395), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66033] = 2, - ACTIONS(3163), 1, + [66237] = 2, + ACTIONS(3171), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66041] = 2, - ACTIONS(5347), 1, + [66245] = 2, + ACTIONS(5397), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66049] = 2, - ACTIONS(5349), 1, - anon_sym_SEMI, + [66253] = 2, + ACTIONS(5399), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66057] = 2, - ACTIONS(5351), 1, - anon_sym_COLON, + [66261] = 2, + ACTIONS(5401), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66065] = 2, - ACTIONS(5353), 1, - anon_sym_SEMI, + [66269] = 2, + ACTIONS(5403), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66073] = 2, - ACTIONS(5355), 1, - anon_sym_SEMI, + [66277] = 2, + ACTIONS(5405), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66081] = 2, - ACTIONS(5357), 1, + [66285] = 2, + ACTIONS(5407), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66089] = 2, - ACTIONS(5359), 1, - anon_sym_RBRACE, + [66293] = 2, + ACTIONS(5409), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66097] = 2, - ACTIONS(5361), 1, + [66301] = 2, + ACTIONS(5411), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66105] = 2, - ACTIONS(5363), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66113] = 2, - ACTIONS(5365), 1, - anon_sym_COLON, + [66309] = 2, + ACTIONS(5413), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66121] = 2, - ACTIONS(5367), 1, + [66317] = 2, + ACTIONS(5415), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66129] = 2, - ACTIONS(5369), 1, + [66325] = 2, + ACTIONS(5417), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66137] = 2, - ACTIONS(5371), 1, - anon_sym_RPAREN, + [66333] = 2, + ACTIONS(5419), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66145] = 2, - ACTIONS(5373), 1, + [66341] = 2, + ACTIONS(5421), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66153] = 2, - ACTIONS(5375), 1, + [66349] = 2, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66357] = 2, + ACTIONS(5423), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66161] = 2, - ACTIONS(5377), 1, - anon_sym_fn, + [66365] = 2, + ACTIONS(5297), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66169] = 2, - ACTIONS(5379), 1, + [66373] = 2, + ACTIONS(5425), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66177] = 2, - ACTIONS(5381), 1, + [66381] = 2, + ACTIONS(5427), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66185] = 2, - ACTIONS(5383), 1, + [66389] = 2, + ACTIONS(5429), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66193] = 2, - ACTIONS(5385), 1, + [66397] = 2, + ACTIONS(5431), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66201] = 2, - ACTIONS(5387), 1, + [66405] = 2, + ACTIONS(5433), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66209] = 2, - ACTIONS(5389), 1, + [66413] = 2, + ACTIONS(5435), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66217] = 2, - ACTIONS(5391), 1, - anon_sym_RPAREN, + [66421] = 2, + ACTIONS(5437), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66225] = 2, - ACTIONS(5393), 1, - anon_sym_RPAREN, + [66429] = 2, + ACTIONS(5439), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66233] = 2, - ACTIONS(4906), 1, - anon_sym_RBRACE, + [66437] = 2, + ACTIONS(5441), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66241] = 2, - ACTIONS(5151), 1, + [66445] = 2, + ACTIONS(4169), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66249] = 2, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, + [66453] = 2, + ACTIONS(5443), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66257] = 2, - ACTIONS(5395), 1, - anon_sym_COLON, + [66461] = 2, + ACTIONS(5445), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66265] = 2, - ACTIONS(5397), 1, - anon_sym_SEMI, + [66469] = 2, + ACTIONS(4619), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66273] = 2, - ACTIONS(5399), 1, - anon_sym_SEMI, + [66477] = 2, + ACTIONS(2696), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66281] = 2, - ACTIONS(2688), 1, + [66485] = 2, + ACTIONS(2642), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66289] = 2, - ACTIONS(5401), 1, - sym_identifier, + [66493] = 2, + ACTIONS(5447), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66297] = 2, - ACTIONS(5183), 1, + [66501] = 2, + ACTIONS(5267), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66305] = 2, - ACTIONS(5403), 1, + [66509] = 2, + ACTIONS(5449), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66313] = 2, - ACTIONS(5405), 1, + [66517] = 2, + ACTIONS(5451), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66321] = 2, - ACTIONS(5407), 1, - sym_identifier, + [66525] = 2, + ACTIONS(2676), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66329] = 2, - ACTIONS(5409), 1, - sym_identifier, + [66533] = 2, + ACTIONS(5453), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66337] = 2, - ACTIONS(4922), 1, + [66541] = 2, + ACTIONS(5455), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66345] = 2, - ACTIONS(5411), 1, + [66549] = 2, + ACTIONS(5457), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66353] = 2, - ACTIONS(5413), 1, - anon_sym_SEMI, + [66557] = 2, + ACTIONS(5459), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66361] = 2, - ACTIONS(5415), 1, - sym_identifier, + [66565] = 2, + ACTIONS(5461), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66369] = 2, - ACTIONS(4419), 1, - anon_sym_RBRACK, + [66573] = 2, + ACTIONS(5463), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66377] = 2, - ACTIONS(4411), 1, - anon_sym_RPAREN, + [66581] = 2, + ACTIONS(5465), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66385] = 2, - ACTIONS(5417), 1, - anon_sym_SEMI, + [66589] = 2, + ACTIONS(4611), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66393] = 2, - ACTIONS(5419), 1, - anon_sym_SEMI, + [66597] = 2, + ACTIONS(5467), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66401] = 2, - ACTIONS(5421), 1, + [66605] = 2, + ACTIONS(5469), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66409] = 2, - ACTIONS(5423), 1, + [66613] = 2, + ACTIONS(5471), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66417] = 2, - ACTIONS(624), 1, - anon_sym_RBRACK, + [66621] = 2, + ACTIONS(5473), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66425] = 2, - ACTIONS(5425), 1, - anon_sym_RBRACE, + [66629] = 2, + ACTIONS(5475), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66433] = 2, - ACTIONS(5427), 1, - sym_identifier, + [66637] = 2, + ACTIONS(5477), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66441] = 2, - ACTIONS(5429), 1, - anon_sym_SEMI, + [66645] = 2, + ACTIONS(2463), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66449] = 2, - ACTIONS(4553), 1, - sym_identifier, + [66653] = 2, + ACTIONS(5479), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66457] = 2, - ACTIONS(5431), 1, - anon_sym_RBRACK, + [66661] = 2, + ACTIONS(5481), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66465] = 2, - ACTIONS(5433), 1, - anon_sym_RBRACK, + [66669] = 2, + ACTIONS(5483), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66473] = 2, - ACTIONS(5435), 1, - anon_sym_RBRACK, + [66677] = 2, + ACTIONS(5139), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66481] = 2, - ACTIONS(5437), 1, - sym_identifier, + [66685] = 2, + ACTIONS(5485), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66489] = 2, - ACTIONS(4106), 1, - sym_identifier, + [66693] = 2, + ACTIONS(5487), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66497] = 2, - ACTIONS(5439), 1, - anon_sym_fn, + [66701] = 2, + ACTIONS(5489), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66505] = 2, - ACTIONS(5441), 1, - anon_sym_SEMI, + [66709] = 2, + ACTIONS(4896), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66513] = 2, - ACTIONS(5443), 1, + [66717] = 2, + ACTIONS(4668), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66521] = 2, - ACTIONS(5445), 1, + [66725] = 2, + ACTIONS(5491), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66529] = 2, - ACTIONS(5141), 1, - anon_sym_SEMI, + [66733] = 2, + ACTIONS(378), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66537] = 2, - ACTIONS(5447), 1, - sym_identifier, + [66741] = 2, + ACTIONS(5493), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66545] = 2, - ACTIONS(5139), 1, + [66749] = 2, + ACTIONS(5495), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66553] = 2, - ACTIONS(5449), 1, - sym_identifier, + [66757] = 2, + ACTIONS(5497), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66561] = 2, - ACTIONS(5451), 1, - anon_sym_RBRACK, + [66765] = 2, + ACTIONS(5499), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66569] = 2, - ACTIONS(5048), 1, - sym_identifier, + [66773] = 2, + ACTIONS(5501), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66577] = 2, - ACTIONS(5453), 1, + [66781] = 2, + ACTIONS(5503), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66585] = 2, - ACTIONS(5455), 1, - anon_sym_COLON, + [66789] = 2, + ACTIONS(5505), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66593] = 2, - ACTIONS(5095), 1, - anon_sym_GT, + [66797] = 2, + ACTIONS(4736), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66601] = 2, - ACTIONS(5457), 1, + [66805] = 2, + ACTIONS(5507), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66609] = 2, - ACTIONS(5459), 1, - anon_sym_SEMI, + [66813] = 2, + ACTIONS(5509), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66617] = 2, - ACTIONS(5103), 1, - anon_sym_RBRACE, + [66821] = 2, + ACTIONS(5511), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66625] = 2, - ACTIONS(5461), 1, - sym_identifier, + [66829] = 2, + ACTIONS(5513), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66633] = 2, - ACTIONS(5463), 1, - anon_sym_LBRACK, + [66837] = 2, + ACTIONS(5515), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66641] = 2, - ACTIONS(5465), 1, - anon_sym_RBRACE, + [66845] = 2, + ACTIONS(5517), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66649] = 2, - ACTIONS(5467), 1, - anon_sym_SEMI, + [66853] = 2, + ACTIONS(4195), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66657] = 2, - ACTIONS(5469), 1, - anon_sym_EQ, + [66861] = 2, + ACTIONS(5519), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66665] = 2, - ACTIONS(5471), 1, - anon_sym_COLON_COLON, + [66869] = 2, + ACTIONS(2359), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66673] = 2, - ACTIONS(5473), 1, - anon_sym_SEMI, + [66877] = 2, + ACTIONS(5521), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66681] = 2, - ACTIONS(2359), 1, - anon_sym_EQ_GT, + [66885] = 2, + ACTIONS(5523), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66689] = 2, - ACTIONS(5475), 1, + [66893] = 2, + ACTIONS(5525), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66697] = 2, - ACTIONS(5145), 1, + [66901] = 2, + ACTIONS(5527), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66705] = 2, - ACTIONS(5149), 1, - anon_sym_SEMI, + [66909] = 2, + ACTIONS(5529), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66713] = 2, - ACTIONS(5477), 1, - sym_identifier, + [66917] = 2, + ACTIONS(4335), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66721] = 2, - ACTIONS(5479), 1, - anon_sym_COLON, + [66925] = 2, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66729] = 2, - ACTIONS(5481), 1, - sym_identifier, + [66933] = 2, + ACTIONS(5215), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66737] = 2, - ACTIONS(4251), 1, - anon_sym_RPAREN, + [66941] = 2, + ACTIONS(4754), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66745] = 2, - ACTIONS(5034), 1, - anon_sym_RBRACE, + [66949] = 2, + ACTIONS(3485), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66753] = 2, - ACTIONS(5483), 1, + [66957] = 2, + ACTIONS(5531), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66761] = 2, - ACTIONS(5485), 1, - sym_self, + [66965] = 2, + ACTIONS(5533), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66769] = 2, - ACTIONS(4005), 1, - anon_sym_SEMI, + [66973] = 2, + ACTIONS(5535), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66777] = 2, - ACTIONS(2449), 1, - anon_sym_PLUS, + [66981] = 2, + ACTIONS(5537), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66785] = 2, - ACTIONS(5487), 1, - anon_sym_fn, + [66989] = 2, + ACTIONS(5539), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66793] = 2, - ACTIONS(4007), 1, - anon_sym_SEMI, + [66997] = 2, + ACTIONS(4942), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66801] = 2, - ACTIONS(5489), 1, + [67005] = 2, + ACTIONS(5541), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66809] = 2, - ACTIONS(5491), 1, - anon_sym_SEMI, + [67013] = 2, + ACTIONS(2768), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66817] = 2, - ACTIONS(5493), 1, - anon_sym_LT, + [67021] = 2, + ACTIONS(5543), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66825] = 2, - ACTIONS(5495), 1, - anon_sym_RBRACK, + [67029] = 2, + ACTIONS(5545), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66833] = 2, - ACTIONS(5497), 1, + [67037] = 2, + ACTIONS(5547), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66841] = 2, - ACTIONS(5499), 1, + [67045] = 2, + ACTIONS(5549), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66849] = 2, - ACTIONS(5501), 1, - anon_sym_RPAREN, + [67053] = 2, + ACTIONS(5551), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66857] = 2, - ACTIONS(5503), 1, - anon_sym_EQ_GT, + [67061] = 2, + ACTIONS(5553), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66865] = 2, - ACTIONS(5505), 1, + [67069] = 2, + ACTIONS(5555), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66873] = 2, - ACTIONS(5507), 1, - anon_sym_COLON, + [67077] = 2, + ACTIONS(5557), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66881] = 2, - ACTIONS(5509), 1, - sym_identifier, + [67085] = 2, + ACTIONS(5559), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66889] = 2, - ACTIONS(5511), 1, + [67093] = 2, + ACTIONS(5561), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66897] = 2, - ACTIONS(4918), 1, + [67101] = 2, + ACTIONS(5563), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66905] = 2, - ACTIONS(5513), 1, - anon_sym_COLON_COLON, + [67109] = 2, + ACTIONS(5565), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66913] = 2, - ACTIONS(3523), 1, - anon_sym_COLON_COLON, + [67117] = 2, + ACTIONS(5203), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66921] = 2, - ACTIONS(4178), 1, - anon_sym_COLON_COLON, + [67125] = 2, + ACTIONS(5567), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66929] = 2, - ACTIONS(5515), 1, - sym_identifier, + [67133] = 2, + ACTIONS(5569), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66937] = 2, - ACTIONS(2690), 1, + [67141] = 2, + ACTIONS(2748), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66945] = 2, - ACTIONS(5517), 1, + [67149] = 2, + ACTIONS(5571), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66953] = 2, - ACTIONS(5519), 1, - anon_sym_SEMI, + [67157] = 2, + ACTIONS(5573), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66961] = 2, - ACTIONS(5521), 1, - anon_sym_SEMI, + [67165] = 2, + ACTIONS(5575), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66969] = 2, - ACTIONS(5523), 1, - sym_identifier, + [67173] = 2, + ACTIONS(4922), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66977] = 2, - ACTIONS(5525), 1, - sym_identifier, + [67181] = 2, + ACTIONS(5577), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66985] = 2, - ACTIONS(5527), 1, - anon_sym_COLON, + [67189] = 2, + ACTIONS(5579), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66993] = 2, - ACTIONS(4561), 1, - sym_identifier, + [67197] = 2, + ACTIONS(4954), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67001] = 2, - ACTIONS(5529), 1, - sym_identifier, + [67205] = 2, + ACTIONS(5581), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67009] = 2, - ACTIONS(374), 1, - anon_sym_RBRACK, + [67213] = 2, + ACTIONS(5583), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67017] = 2, - ACTIONS(5531), 1, - anon_sym_LBRACK, + [67221] = 2, + ACTIONS(5585), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67025] = 2, - ACTIONS(4868), 1, - sym_identifier, + [67229] = 2, + ACTIONS(3586), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67033] = 2, - ACTIONS(5533), 1, - anon_sym_SEMI, + [67237] = 2, + ACTIONS(4985), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67041] = 2, - ACTIONS(4227), 1, + [67245] = 2, + ACTIONS(4111), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67049] = 2, - ACTIONS(5535), 1, + [67253] = 2, + ACTIONS(5587), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67057] = 2, - ACTIONS(5537), 1, + [67261] = 2, + ACTIONS(5589), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67065] = 2, - ACTIONS(5539), 1, - anon_sym_SEMI, + [67269] = 2, + ACTIONS(5591), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67073] = 2, - ACTIONS(4160), 1, + [67277] = 2, + ACTIONS(4241), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67081] = 2, - ACTIONS(5541), 1, + [67285] = 2, + ACTIONS(5593), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67089] = 2, - ACTIONS(5543), 1, - sym_identifier, + [67293] = 2, + ACTIONS(5595), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67097] = 2, - ACTIONS(4207), 1, + [67301] = 2, + ACTIONS(4247), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67105] = 2, - ACTIONS(5545), 1, + [67309] = 2, + ACTIONS(5597), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67113] = 2, - ACTIONS(2470), 1, - anon_sym_PLUS, + [67317] = 2, + ACTIONS(5599), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67121] = 2, - ACTIONS(2373), 1, - anon_sym_EQ_GT, + [67325] = 2, + ACTIONS(5601), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67129] = 2, - ACTIONS(5547), 1, - sym_identifier, + [67333] = 2, + ACTIONS(5603), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67137] = 2, - ACTIONS(5549), 1, - anon_sym_SEMI, + [67341] = 2, + ACTIONS(5605), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67145] = 2, - ACTIONS(5551), 1, + [67349] = 2, + ACTIONS(5607), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67153] = 2, - ACTIONS(5553), 1, + [67357] = 2, + ACTIONS(5609), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67161] = 2, - ACTIONS(5555), 1, + [67365] = 2, + ACTIONS(5611), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67169] = 2, - ACTIONS(5557), 1, - sym_identifier, + [67373] = 2, + ACTIONS(5613), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67177] = 2, - ACTIONS(5559), 1, - anon_sym_COLON, + [67381] = 2, + ACTIONS(5615), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67185] = 2, - ACTIONS(5119), 1, - anon_sym_SEMI, + [67389] = 2, + ACTIONS(5617), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67193] = 2, - ACTIONS(5561), 1, + [67397] = 2, + ACTIONS(4063), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67201] = 2, - ACTIONS(5563), 1, + [67405] = 2, + ACTIONS(5619), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67209] = 2, - ACTIONS(5565), 1, + [67413] = 2, + ACTIONS(5621), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67217] = 2, - ACTIONS(5567), 1, + [67421] = 2, + ACTIONS(5623), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67225] = 2, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, + [67429] = 2, + ACTIONS(3185), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67233] = 2, - ACTIONS(3485), 1, - anon_sym_fn, + [67437] = 2, + ACTIONS(5625), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67241] = 2, - ACTIONS(5569), 1, - ts_builtin_sym_end, + [67445] = 2, + ACTIONS(5175), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67249] = 2, - ACTIONS(2904), 1, - anon_sym_COLON_COLON, + [67453] = 2, + ACTIONS(5173), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67257] = 2, - ACTIONS(5571), 1, - sym_identifier, + [67461] = 2, + ACTIONS(4021), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67265] = 2, - ACTIONS(5573), 1, + [67469] = 2, + ACTIONS(5627), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67273] = 2, - ACTIONS(5575), 1, - sym_identifier, + [67477] = 2, + ACTIONS(4059), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67281] = 2, - ACTIONS(5577), 1, - sym_identifier, + [67485] = 2, + ACTIONS(5629), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67289] = 2, - ACTIONS(5579), 1, - sym_identifier, + [67493] = 2, + ACTIONS(5631), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67297] = 2, - ACTIONS(5581), 1, + [67501] = 2, + ACTIONS(5633), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67305] = 2, - ACTIONS(5583), 1, - anon_sym_RPAREN, + [67509] = 2, + ACTIONS(4854), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67313] = 2, - ACTIONS(5585), 1, - anon_sym_SEMI, + [67517] = 2, + ACTIONS(5067), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67321] = 2, - ACTIONS(5587), 1, + [67525] = 2, + ACTIONS(5635), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67329] = 2, - ACTIONS(5589), 1, + [67533] = 2, + ACTIONS(5637), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67337] = 2, - ACTIONS(5591), 1, - sym_identifier, + [67541] = 2, + ACTIONS(4083), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67345] = 2, - ACTIONS(5593), 1, + [67549] = 2, + ACTIONS(5639), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67353] = 2, - ACTIONS(5595), 1, + [67557] = 2, + ACTIONS(5641), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67361] = 2, - ACTIONS(5597), 1, - anon_sym_EQ_GT, + [67565] = 2, + ACTIONS(4405), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67369] = 2, - ACTIONS(5599), 1, + [67573] = 2, + ACTIONS(5643), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67377] = 2, - ACTIONS(5601), 1, + [67581] = 2, + ACTIONS(5645), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67385] = 2, - ACTIONS(5603), 1, + [67589] = 2, + ACTIONS(5647), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67393] = 2, - ACTIONS(5605), 1, - anon_sym_EQ_GT, + [67597] = 2, + ACTIONS(5649), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67401] = 2, - ACTIONS(5607), 1, + [67605] = 2, + ACTIONS(5651), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67409] = 2, - ACTIONS(5609), 1, + [67613] = 2, + ACTIONS(5653), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67417] = 2, - ACTIONS(5611), 1, - anon_sym_SEMI, + [67621] = 2, + ACTIONS(5655), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67425] = 2, - ACTIONS(3459), 1, + [67629] = 2, + ACTIONS(3461), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67433] = 2, - ACTIONS(5613), 1, - anon_sym_LPAREN, + [67637] = 2, + ACTIONS(5657), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67441] = 2, - ACTIONS(5615), 1, + [67645] = 2, + ACTIONS(5659), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67449] = 2, - ACTIONS(5617), 1, - anon_sym_SEMI, + [67653] = 2, + ACTIONS(5108), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67457] = 2, - ACTIONS(5619), 1, - anon_sym_SEMI, + [67661] = 2, + ACTIONS(3169), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67465] = 2, - ACTIONS(5621), 1, + [67669] = 2, + ACTIONS(5661), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67473] = 2, - ACTIONS(5623), 1, + [67677] = 2, + ACTIONS(5663), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67481] = 2, - ACTIONS(5625), 1, + [67685] = 2, + ACTIONS(5665), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67489] = 2, - ACTIONS(5627), 1, - anon_sym_EQ_GT, + [67693] = 2, + ACTIONS(5667), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67497] = 2, - ACTIONS(5629), 1, - anon_sym_SEMI, + [67701] = 2, + ACTIONS(5669), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67505] = 2, - ACTIONS(5631), 1, + [67709] = 2, + ACTIONS(5671), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67513] = 2, - ACTIONS(5633), 1, - sym_identifier, + [67717] = 2, + ACTIONS(5673), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67521] = 2, - ACTIONS(5635), 1, + [67725] = 2, + ACTIONS(5675), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, @@ -127891,54 +125590,54 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(682)] = 5547, [SMALL_STATE(683)] = 5676, [SMALL_STATE(684)] = 5805, - [SMALL_STATE(685)] = 5934, - [SMALL_STATE(686)] = 6063, - [SMALL_STATE(687)] = 6192, - [SMALL_STATE(688)] = 6321, - [SMALL_STATE(689)] = 6450, - [SMALL_STATE(690)] = 6579, - [SMALL_STATE(691)] = 6708, - [SMALL_STATE(692)] = 6837, - [SMALL_STATE(693)] = 6966, - [SMALL_STATE(694)] = 7095, - [SMALL_STATE(695)] = 7224, - [SMALL_STATE(696)] = 7353, - [SMALL_STATE(697)] = 7482, - [SMALL_STATE(698)] = 7611, - [SMALL_STATE(699)] = 7740, - [SMALL_STATE(700)] = 7869, - [SMALL_STATE(701)] = 8000, - [SMALL_STATE(702)] = 8129, - [SMALL_STATE(703)] = 8258, - [SMALL_STATE(704)] = 8387, - [SMALL_STATE(705)] = 8516, - [SMALL_STATE(706)] = 8645, - [SMALL_STATE(707)] = 8774, - [SMALL_STATE(708)] = 8903, - [SMALL_STATE(709)] = 9032, - [SMALL_STATE(710)] = 9161, - [SMALL_STATE(711)] = 9290, - [SMALL_STATE(712)] = 9419, - [SMALL_STATE(713)] = 9548, - [SMALL_STATE(714)] = 9677, - [SMALL_STATE(715)] = 9806, - [SMALL_STATE(716)] = 9935, - [SMALL_STATE(717)] = 10064, - [SMALL_STATE(718)] = 10193, - [SMALL_STATE(719)] = 10322, - [SMALL_STATE(720)] = 10451, - [SMALL_STATE(721)] = 10580, - [SMALL_STATE(722)] = 10709, - [SMALL_STATE(723)] = 10838, - [SMALL_STATE(724)] = 10967, - [SMALL_STATE(725)] = 11096, - [SMALL_STATE(726)] = 11225, - [SMALL_STATE(727)] = 11354, - [SMALL_STATE(728)] = 11483, - [SMALL_STATE(729)] = 11612, - [SMALL_STATE(730)] = 11741, - [SMALL_STATE(731)] = 11870, - [SMALL_STATE(732)] = 11999, + [SMALL_STATE(685)] = 5876, + [SMALL_STATE(686)] = 6005, + [SMALL_STATE(687)] = 6134, + [SMALL_STATE(688)] = 6263, + [SMALL_STATE(689)] = 6392, + [SMALL_STATE(690)] = 6521, + [SMALL_STATE(691)] = 6650, + [SMALL_STATE(692)] = 6779, + [SMALL_STATE(693)] = 6908, + [SMALL_STATE(694)] = 7037, + [SMALL_STATE(695)] = 7166, + [SMALL_STATE(696)] = 7295, + [SMALL_STATE(697)] = 7424, + [SMALL_STATE(698)] = 7553, + [SMALL_STATE(699)] = 7682, + [SMALL_STATE(700)] = 7811, + [SMALL_STATE(701)] = 7940, + [SMALL_STATE(702)] = 8069, + [SMALL_STATE(703)] = 8198, + [SMALL_STATE(704)] = 8327, + [SMALL_STATE(705)] = 8456, + [SMALL_STATE(706)] = 8585, + [SMALL_STATE(707)] = 8714, + [SMALL_STATE(708)] = 8843, + [SMALL_STATE(709)] = 8972, + [SMALL_STATE(710)] = 9101, + [SMALL_STATE(711)] = 9230, + [SMALL_STATE(712)] = 9359, + [SMALL_STATE(713)] = 9488, + [SMALL_STATE(714)] = 9617, + [SMALL_STATE(715)] = 9746, + [SMALL_STATE(716)] = 9875, + [SMALL_STATE(717)] = 10004, + [SMALL_STATE(718)] = 10133, + [SMALL_STATE(719)] = 10262, + [SMALL_STATE(720)] = 10391, + [SMALL_STATE(721)] = 10520, + [SMALL_STATE(722)] = 10649, + [SMALL_STATE(723)] = 10780, + [SMALL_STATE(724)] = 10909, + [SMALL_STATE(725)] = 11038, + [SMALL_STATE(726)] = 11167, + [SMALL_STATE(727)] = 11296, + [SMALL_STATE(728)] = 11425, + [SMALL_STATE(729)] = 11554, + [SMALL_STATE(730)] = 11683, + [SMALL_STATE(731)] = 11812, + [SMALL_STATE(732)] = 11941, [SMALL_STATE(733)] = 12070, [SMALL_STATE(734)] = 12199, [SMALL_STATE(735)] = 12328, @@ -127962,57 +125661,57 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(753)] = 14273, [SMALL_STATE(754)] = 14341, [SMALL_STATE(755)] = 14409, - [SMALL_STATE(756)] = 14470, - [SMALL_STATE(757)] = 14531, - [SMALL_STATE(758)] = 14596, + [SMALL_STATE(756)] = 14474, + [SMALL_STATE(757)] = 14539, + [SMALL_STATE(758)] = 14600, [SMALL_STATE(759)] = 14661, - [SMALL_STATE(760)] = 14726, - [SMALL_STATE(761)] = 14791, + [SMALL_STATE(760)] = 14722, + [SMALL_STATE(761)] = 14787, [SMALL_STATE(762)] = 14852, [SMALL_STATE(763)] = 14913, - [SMALL_STATE(764)] = 14969, + [SMALL_STATE(764)] = 14971, [SMALL_STATE(765)] = 15027, - [SMALL_STATE(766)] = 15089, - [SMALL_STATE(767)] = 15147, - [SMALL_STATE(768)] = 15203, - [SMALL_STATE(769)] = 15259, - [SMALL_STATE(770)] = 15317, + [SMALL_STATE(766)] = 15083, + [SMALL_STATE(767)] = 15141, + [SMALL_STATE(768)] = 15197, + [SMALL_STATE(769)] = 15255, + [SMALL_STATE(770)] = 15315, [SMALL_STATE(771)] = 15377, [SMALL_STATE(772)] = 15433, - [SMALL_STATE(773)] = 15491, + [SMALL_STATE(773)] = 15489, [SMALL_STATE(774)] = 15547, [SMALL_STATE(775)] = 15603, - [SMALL_STATE(776)] = 15658, - [SMALL_STATE(777)] = 15713, - [SMALL_STATE(778)] = 15772, - [SMALL_STATE(779)] = 15829, - [SMALL_STATE(780)] = 15886, - [SMALL_STATE(781)] = 15945, - [SMALL_STATE(782)] = 16002, - [SMALL_STATE(783)] = 16057, - [SMALL_STATE(784)] = 16114, - [SMALL_STATE(785)] = 16169, - [SMALL_STATE(786)] = 16224, - [SMALL_STATE(787)] = 16281, - [SMALL_STATE(788)] = 16338, - [SMALL_STATE(789)] = 16395, - [SMALL_STATE(790)] = 16450, - [SMALL_STATE(791)] = 16507, - [SMALL_STATE(792)] = 16562, + [SMALL_STATE(776)] = 15660, + [SMALL_STATE(777)] = 15717, + [SMALL_STATE(778)] = 15774, + [SMALL_STATE(779)] = 15831, + [SMALL_STATE(780)] = 15890, + [SMALL_STATE(781)] = 15947, + [SMALL_STATE(782)] = 16006, + [SMALL_STATE(783)] = 16061, + [SMALL_STATE(784)] = 16120, + [SMALL_STATE(785)] = 16175, + [SMALL_STATE(786)] = 16232, + [SMALL_STATE(787)] = 16287, + [SMALL_STATE(788)] = 16342, + [SMALL_STATE(789)] = 16397, + [SMALL_STATE(790)] = 16452, + [SMALL_STATE(791)] = 16509, + [SMALL_STATE(792)] = 16566, [SMALL_STATE(793)] = 16621, - [SMALL_STATE(794)] = 16678, + [SMALL_STATE(794)] = 16676, [SMALL_STATE(795)] = 16733, [SMALL_STATE(796)] = 16788, - [SMALL_STATE(797)] = 16845, + [SMALL_STATE(797)] = 16843, [SMALL_STATE(798)] = 16900, [SMALL_STATE(799)] = 16957, - [SMALL_STATE(800)] = 17012, - [SMALL_STATE(801)] = 17067, + [SMALL_STATE(800)] = 17016, + [SMALL_STATE(801)] = 17071, [SMALL_STATE(802)] = 17126, [SMALL_STATE(803)] = 17183, - [SMALL_STATE(804)] = 17240, - [SMALL_STATE(805)] = 17295, - [SMALL_STATE(806)] = 17352, + [SMALL_STATE(804)] = 17238, + [SMALL_STATE(805)] = 17293, + [SMALL_STATE(806)] = 17350, [SMALL_STATE(807)] = 17407, [SMALL_STATE(808)] = 17464, [SMALL_STATE(809)] = 17518, @@ -128020,312 +125719,312 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(811)] = 17626, [SMALL_STATE(812)] = 17680, [SMALL_STATE(813)] = 17734, - [SMALL_STATE(814)] = 17788, - [SMALL_STATE(815)] = 17842, - [SMALL_STATE(816)] = 17896, - [SMALL_STATE(817)] = 17950, - [SMALL_STATE(818)] = 18004, - [SMALL_STATE(819)] = 18058, - [SMALL_STATE(820)] = 18112, - [SMALL_STATE(821)] = 18166, - [SMALL_STATE(822)] = 18220, - [SMALL_STATE(823)] = 18274, - [SMALL_STATE(824)] = 18328, - [SMALL_STATE(825)] = 18382, - [SMALL_STATE(826)] = 18436, - [SMALL_STATE(827)] = 18490, - [SMALL_STATE(828)] = 18544, - [SMALL_STATE(829)] = 18598, - [SMALL_STATE(830)] = 18652, - [SMALL_STATE(831)] = 18706, - [SMALL_STATE(832)] = 18760, - [SMALL_STATE(833)] = 18814, - [SMALL_STATE(834)] = 18868, - [SMALL_STATE(835)] = 18922, - [SMALL_STATE(836)] = 18976, - [SMALL_STATE(837)] = 19030, - [SMALL_STATE(838)] = 19084, - [SMALL_STATE(839)] = 19138, - [SMALL_STATE(840)] = 19192, - [SMALL_STATE(841)] = 19246, - [SMALL_STATE(842)] = 19300, - [SMALL_STATE(843)] = 19354, - [SMALL_STATE(844)] = 19408, - [SMALL_STATE(845)] = 19462, - [SMALL_STATE(846)] = 19516, - [SMALL_STATE(847)] = 19570, - [SMALL_STATE(848)] = 19624, - [SMALL_STATE(849)] = 19678, - [SMALL_STATE(850)] = 19732, - [SMALL_STATE(851)] = 19786, - [SMALL_STATE(852)] = 19840, - [SMALL_STATE(853)] = 19894, - [SMALL_STATE(854)] = 19948, - [SMALL_STATE(855)] = 20002, - [SMALL_STATE(856)] = 20056, - [SMALL_STATE(857)] = 20110, - [SMALL_STATE(858)] = 20164, - [SMALL_STATE(859)] = 20218, - [SMALL_STATE(860)] = 20272, - [SMALL_STATE(861)] = 20326, - [SMALL_STATE(862)] = 20380, - [SMALL_STATE(863)] = 20434, - [SMALL_STATE(864)] = 20488, - [SMALL_STATE(865)] = 20542, - [SMALL_STATE(866)] = 20596, - [SMALL_STATE(867)] = 20650, - [SMALL_STATE(868)] = 20704, - [SMALL_STATE(869)] = 20758, - [SMALL_STATE(870)] = 20812, - [SMALL_STATE(871)] = 20866, - [SMALL_STATE(872)] = 20920, - [SMALL_STATE(873)] = 20974, - [SMALL_STATE(874)] = 21028, - [SMALL_STATE(875)] = 21082, - [SMALL_STATE(876)] = 21136, - [SMALL_STATE(877)] = 21190, - [SMALL_STATE(878)] = 21244, - [SMALL_STATE(879)] = 21298, - [SMALL_STATE(880)] = 21352, - [SMALL_STATE(881)] = 21406, - [SMALL_STATE(882)] = 21460, - [SMALL_STATE(883)] = 21514, - [SMALL_STATE(884)] = 21568, - [SMALL_STATE(885)] = 21622, - [SMALL_STATE(886)] = 21676, - [SMALL_STATE(887)] = 21730, - [SMALL_STATE(888)] = 21784, - [SMALL_STATE(889)] = 21838, - [SMALL_STATE(890)] = 21892, - [SMALL_STATE(891)] = 21946, - [SMALL_STATE(892)] = 22000, - [SMALL_STATE(893)] = 22054, - [SMALL_STATE(894)] = 22108, - [SMALL_STATE(895)] = 22162, - [SMALL_STATE(896)] = 22216, - [SMALL_STATE(897)] = 22270, - [SMALL_STATE(898)] = 22324, - [SMALL_STATE(899)] = 22378, - [SMALL_STATE(900)] = 22432, - [SMALL_STATE(901)] = 22486, - [SMALL_STATE(902)] = 22540, - [SMALL_STATE(903)] = 22594, - [SMALL_STATE(904)] = 22648, - [SMALL_STATE(905)] = 22702, - [SMALL_STATE(906)] = 22756, - [SMALL_STATE(907)] = 22810, - [SMALL_STATE(908)] = 22864, - [SMALL_STATE(909)] = 22918, - [SMALL_STATE(910)] = 22972, - [SMALL_STATE(911)] = 23026, - [SMALL_STATE(912)] = 23080, - [SMALL_STATE(913)] = 23134, - [SMALL_STATE(914)] = 23188, - [SMALL_STATE(915)] = 23242, - [SMALL_STATE(916)] = 23296, - [SMALL_STATE(917)] = 23350, - [SMALL_STATE(918)] = 23404, - [SMALL_STATE(919)] = 23458, - [SMALL_STATE(920)] = 23512, - [SMALL_STATE(921)] = 23566, - [SMALL_STATE(922)] = 23620, - [SMALL_STATE(923)] = 23674, - [SMALL_STATE(924)] = 23728, - [SMALL_STATE(925)] = 23782, - [SMALL_STATE(926)] = 23836, - [SMALL_STATE(927)] = 23890, - [SMALL_STATE(928)] = 23944, - [SMALL_STATE(929)] = 23998, - [SMALL_STATE(930)] = 24052, - [SMALL_STATE(931)] = 24106, - [SMALL_STATE(932)] = 24160, - [SMALL_STATE(933)] = 24214, - [SMALL_STATE(934)] = 24268, - [SMALL_STATE(935)] = 24322, - [SMALL_STATE(936)] = 24376, - [SMALL_STATE(937)] = 24430, - [SMALL_STATE(938)] = 24484, - [SMALL_STATE(939)] = 24538, - [SMALL_STATE(940)] = 24592, - [SMALL_STATE(941)] = 24646, - [SMALL_STATE(942)] = 24700, - [SMALL_STATE(943)] = 24754, - [SMALL_STATE(944)] = 24808, - [SMALL_STATE(945)] = 24862, - [SMALL_STATE(946)] = 24916, - [SMALL_STATE(947)] = 24970, - [SMALL_STATE(948)] = 25024, - [SMALL_STATE(949)] = 25078, - [SMALL_STATE(950)] = 25132, - [SMALL_STATE(951)] = 25186, - [SMALL_STATE(952)] = 25240, - [SMALL_STATE(953)] = 25294, - [SMALL_STATE(954)] = 25348, - [SMALL_STATE(955)] = 25402, - [SMALL_STATE(956)] = 25456, - [SMALL_STATE(957)] = 25510, - [SMALL_STATE(958)] = 25564, - [SMALL_STATE(959)] = 25618, - [SMALL_STATE(960)] = 25672, - [SMALL_STATE(961)] = 25726, - [SMALL_STATE(962)] = 25780, - [SMALL_STATE(963)] = 25834, - [SMALL_STATE(964)] = 25888, - [SMALL_STATE(965)] = 25942, - [SMALL_STATE(966)] = 25996, - [SMALL_STATE(967)] = 26050, - [SMALL_STATE(968)] = 26104, - [SMALL_STATE(969)] = 26158, - [SMALL_STATE(970)] = 26212, - [SMALL_STATE(971)] = 26266, - [SMALL_STATE(972)] = 26320, - [SMALL_STATE(973)] = 26374, - [SMALL_STATE(974)] = 26428, - [SMALL_STATE(975)] = 26482, - [SMALL_STATE(976)] = 26536, - [SMALL_STATE(977)] = 26590, - [SMALL_STATE(978)] = 26644, - [SMALL_STATE(979)] = 26698, - [SMALL_STATE(980)] = 26752, - [SMALL_STATE(981)] = 26806, - [SMALL_STATE(982)] = 26860, - [SMALL_STATE(983)] = 26914, - [SMALL_STATE(984)] = 26968, - [SMALL_STATE(985)] = 27022, - [SMALL_STATE(986)] = 27076, - [SMALL_STATE(987)] = 27130, - [SMALL_STATE(988)] = 27184, - [SMALL_STATE(989)] = 27238, - [SMALL_STATE(990)] = 27292, - [SMALL_STATE(991)] = 27346, - [SMALL_STATE(992)] = 27400, - [SMALL_STATE(993)] = 27454, - [SMALL_STATE(994)] = 27508, - [SMALL_STATE(995)] = 27562, - [SMALL_STATE(996)] = 27616, - [SMALL_STATE(997)] = 27670, - [SMALL_STATE(998)] = 27724, - [SMALL_STATE(999)] = 27778, - [SMALL_STATE(1000)] = 27832, - [SMALL_STATE(1001)] = 27886, - [SMALL_STATE(1002)] = 27940, - [SMALL_STATE(1003)] = 27994, - [SMALL_STATE(1004)] = 28048, - [SMALL_STATE(1005)] = 28102, - [SMALL_STATE(1006)] = 28156, - [SMALL_STATE(1007)] = 28210, - [SMALL_STATE(1008)] = 28264, - [SMALL_STATE(1009)] = 28318, - [SMALL_STATE(1010)] = 28372, - [SMALL_STATE(1011)] = 28426, - [SMALL_STATE(1012)] = 28480, - [SMALL_STATE(1013)] = 28534, - [SMALL_STATE(1014)] = 28588, - [SMALL_STATE(1015)] = 28642, - [SMALL_STATE(1016)] = 28696, - [SMALL_STATE(1017)] = 28750, - [SMALL_STATE(1018)] = 28804, - [SMALL_STATE(1019)] = 28858, - [SMALL_STATE(1020)] = 28912, - [SMALL_STATE(1021)] = 28966, - [SMALL_STATE(1022)] = 29020, - [SMALL_STATE(1023)] = 29074, - [SMALL_STATE(1024)] = 29128, - [SMALL_STATE(1025)] = 29182, - [SMALL_STATE(1026)] = 29236, - [SMALL_STATE(1027)] = 29290, - [SMALL_STATE(1028)] = 29344, - [SMALL_STATE(1029)] = 29398, - [SMALL_STATE(1030)] = 29452, - [SMALL_STATE(1031)] = 29506, - [SMALL_STATE(1032)] = 29562, - [SMALL_STATE(1033)] = 29616, - [SMALL_STATE(1034)] = 29670, - [SMALL_STATE(1035)] = 29724, - [SMALL_STATE(1036)] = 29778, - [SMALL_STATE(1037)] = 29832, - [SMALL_STATE(1038)] = 29886, - [SMALL_STATE(1039)] = 29940, - [SMALL_STATE(1040)] = 29994, - [SMALL_STATE(1041)] = 30048, - [SMALL_STATE(1042)] = 30102, - [SMALL_STATE(1043)] = 30156, - [SMALL_STATE(1044)] = 30210, - [SMALL_STATE(1045)] = 30264, - [SMALL_STATE(1046)] = 30318, - [SMALL_STATE(1047)] = 30372, - [SMALL_STATE(1048)] = 30426, - [SMALL_STATE(1049)] = 30480, - [SMALL_STATE(1050)] = 30534, - [SMALL_STATE(1051)] = 30588, - [SMALL_STATE(1052)] = 30642, - [SMALL_STATE(1053)] = 30696, - [SMALL_STATE(1054)] = 30750, - [SMALL_STATE(1055)] = 30804, - [SMALL_STATE(1056)] = 30858, - [SMALL_STATE(1057)] = 30912, - [SMALL_STATE(1058)] = 30966, - [SMALL_STATE(1059)] = 31020, - [SMALL_STATE(1060)] = 31074, - [SMALL_STATE(1061)] = 31128, - [SMALL_STATE(1062)] = 31182, - [SMALL_STATE(1063)] = 31236, - [SMALL_STATE(1064)] = 31290, - [SMALL_STATE(1065)] = 31344, - [SMALL_STATE(1066)] = 31398, - [SMALL_STATE(1067)] = 31452, - [SMALL_STATE(1068)] = 31506, - [SMALL_STATE(1069)] = 31560, - [SMALL_STATE(1070)] = 31614, - [SMALL_STATE(1071)] = 31668, - [SMALL_STATE(1072)] = 31722, - [SMALL_STATE(1073)] = 31776, - [SMALL_STATE(1074)] = 31830, - [SMALL_STATE(1075)] = 31884, - [SMALL_STATE(1076)] = 31938, - [SMALL_STATE(1077)] = 31992, - [SMALL_STATE(1078)] = 32046, - [SMALL_STATE(1079)] = 32100, - [SMALL_STATE(1080)] = 32154, - [SMALL_STATE(1081)] = 32208, - [SMALL_STATE(1082)] = 32262, - [SMALL_STATE(1083)] = 32316, - [SMALL_STATE(1084)] = 32370, - [SMALL_STATE(1085)] = 32424, - [SMALL_STATE(1086)] = 32478, - [SMALL_STATE(1087)] = 32532, - [SMALL_STATE(1088)] = 32586, - [SMALL_STATE(1089)] = 32640, - [SMALL_STATE(1090)] = 32694, - [SMALL_STATE(1091)] = 32748, - [SMALL_STATE(1092)] = 32802, - [SMALL_STATE(1093)] = 32856, - [SMALL_STATE(1094)] = 32910, - [SMALL_STATE(1095)] = 32964, - [SMALL_STATE(1096)] = 33018, - [SMALL_STATE(1097)] = 33072, - [SMALL_STATE(1098)] = 33126, - [SMALL_STATE(1099)] = 33180, - [SMALL_STATE(1100)] = 33234, - [SMALL_STATE(1101)] = 33288, - [SMALL_STATE(1102)] = 33342, - [SMALL_STATE(1103)] = 33396, - [SMALL_STATE(1104)] = 33450, - [SMALL_STATE(1105)] = 33504, - [SMALL_STATE(1106)] = 33558, - [SMALL_STATE(1107)] = 33612, - [SMALL_STATE(1108)] = 33666, - [SMALL_STATE(1109)] = 33720, - [SMALL_STATE(1110)] = 33774, - [SMALL_STATE(1111)] = 33828, - [SMALL_STATE(1112)] = 33882, - [SMALL_STATE(1113)] = 33936, - [SMALL_STATE(1114)] = 33990, - [SMALL_STATE(1115)] = 34044, - [SMALL_STATE(1116)] = 34098, - [SMALL_STATE(1117)] = 34152, - [SMALL_STATE(1118)] = 34206, - [SMALL_STATE(1119)] = 34260, + [SMALL_STATE(814)] = 17790, + [SMALL_STATE(815)] = 17844, + [SMALL_STATE(816)] = 17898, + [SMALL_STATE(817)] = 17952, + [SMALL_STATE(818)] = 18006, + [SMALL_STATE(819)] = 18060, + [SMALL_STATE(820)] = 18116, + [SMALL_STATE(821)] = 18170, + [SMALL_STATE(822)] = 18224, + [SMALL_STATE(823)] = 18278, + [SMALL_STATE(824)] = 18332, + [SMALL_STATE(825)] = 18386, + [SMALL_STATE(826)] = 18440, + [SMALL_STATE(827)] = 18494, + [SMALL_STATE(828)] = 18548, + [SMALL_STATE(829)] = 18602, + [SMALL_STATE(830)] = 18656, + [SMALL_STATE(831)] = 18710, + [SMALL_STATE(832)] = 18764, + [SMALL_STATE(833)] = 18818, + [SMALL_STATE(834)] = 18872, + [SMALL_STATE(835)] = 18926, + [SMALL_STATE(836)] = 18980, + [SMALL_STATE(837)] = 19034, + [SMALL_STATE(838)] = 19088, + [SMALL_STATE(839)] = 19142, + [SMALL_STATE(840)] = 19196, + [SMALL_STATE(841)] = 19250, + [SMALL_STATE(842)] = 19304, + [SMALL_STATE(843)] = 19358, + [SMALL_STATE(844)] = 19412, + [SMALL_STATE(845)] = 19466, + [SMALL_STATE(846)] = 19520, + [SMALL_STATE(847)] = 19574, + [SMALL_STATE(848)] = 19628, + [SMALL_STATE(849)] = 19682, + [SMALL_STATE(850)] = 19736, + [SMALL_STATE(851)] = 19790, + [SMALL_STATE(852)] = 19844, + [SMALL_STATE(853)] = 19898, + [SMALL_STATE(854)] = 19952, + [SMALL_STATE(855)] = 20006, + [SMALL_STATE(856)] = 20060, + [SMALL_STATE(857)] = 20114, + [SMALL_STATE(858)] = 20168, + [SMALL_STATE(859)] = 20222, + [SMALL_STATE(860)] = 20276, + [SMALL_STATE(861)] = 20330, + [SMALL_STATE(862)] = 20384, + [SMALL_STATE(863)] = 20438, + [SMALL_STATE(864)] = 20492, + [SMALL_STATE(865)] = 20546, + [SMALL_STATE(866)] = 20600, + [SMALL_STATE(867)] = 20654, + [SMALL_STATE(868)] = 20708, + [SMALL_STATE(869)] = 20762, + [SMALL_STATE(870)] = 20816, + [SMALL_STATE(871)] = 20870, + [SMALL_STATE(872)] = 20924, + [SMALL_STATE(873)] = 20978, + [SMALL_STATE(874)] = 21032, + [SMALL_STATE(875)] = 21086, + [SMALL_STATE(876)] = 21140, + [SMALL_STATE(877)] = 21194, + [SMALL_STATE(878)] = 21248, + [SMALL_STATE(879)] = 21302, + [SMALL_STATE(880)] = 21356, + [SMALL_STATE(881)] = 21410, + [SMALL_STATE(882)] = 21464, + [SMALL_STATE(883)] = 21518, + [SMALL_STATE(884)] = 21572, + [SMALL_STATE(885)] = 21626, + [SMALL_STATE(886)] = 21680, + [SMALL_STATE(887)] = 21734, + [SMALL_STATE(888)] = 21788, + [SMALL_STATE(889)] = 21842, + [SMALL_STATE(890)] = 21896, + [SMALL_STATE(891)] = 21950, + [SMALL_STATE(892)] = 22004, + [SMALL_STATE(893)] = 22058, + [SMALL_STATE(894)] = 22112, + [SMALL_STATE(895)] = 22166, + [SMALL_STATE(896)] = 22220, + [SMALL_STATE(897)] = 22274, + [SMALL_STATE(898)] = 22328, + [SMALL_STATE(899)] = 22382, + [SMALL_STATE(900)] = 22436, + [SMALL_STATE(901)] = 22490, + [SMALL_STATE(902)] = 22544, + [SMALL_STATE(903)] = 22598, + [SMALL_STATE(904)] = 22652, + [SMALL_STATE(905)] = 22706, + [SMALL_STATE(906)] = 22760, + [SMALL_STATE(907)] = 22814, + [SMALL_STATE(908)] = 22868, + [SMALL_STATE(909)] = 22922, + [SMALL_STATE(910)] = 22976, + [SMALL_STATE(911)] = 23030, + [SMALL_STATE(912)] = 23084, + [SMALL_STATE(913)] = 23138, + [SMALL_STATE(914)] = 23192, + [SMALL_STATE(915)] = 23246, + [SMALL_STATE(916)] = 23300, + [SMALL_STATE(917)] = 23354, + [SMALL_STATE(918)] = 23408, + [SMALL_STATE(919)] = 23462, + [SMALL_STATE(920)] = 23516, + [SMALL_STATE(921)] = 23570, + [SMALL_STATE(922)] = 23624, + [SMALL_STATE(923)] = 23678, + [SMALL_STATE(924)] = 23732, + [SMALL_STATE(925)] = 23786, + [SMALL_STATE(926)] = 23840, + [SMALL_STATE(927)] = 23894, + [SMALL_STATE(928)] = 23948, + [SMALL_STATE(929)] = 24002, + [SMALL_STATE(930)] = 24056, + [SMALL_STATE(931)] = 24110, + [SMALL_STATE(932)] = 24164, + [SMALL_STATE(933)] = 24218, + [SMALL_STATE(934)] = 24272, + [SMALL_STATE(935)] = 24326, + [SMALL_STATE(936)] = 24380, + [SMALL_STATE(937)] = 24434, + [SMALL_STATE(938)] = 24488, + [SMALL_STATE(939)] = 24542, + [SMALL_STATE(940)] = 24596, + [SMALL_STATE(941)] = 24650, + [SMALL_STATE(942)] = 24704, + [SMALL_STATE(943)] = 24758, + [SMALL_STATE(944)] = 24812, + [SMALL_STATE(945)] = 24866, + [SMALL_STATE(946)] = 24920, + [SMALL_STATE(947)] = 24974, + [SMALL_STATE(948)] = 25028, + [SMALL_STATE(949)] = 25082, + [SMALL_STATE(950)] = 25136, + [SMALL_STATE(951)] = 25190, + [SMALL_STATE(952)] = 25244, + [SMALL_STATE(953)] = 25298, + [SMALL_STATE(954)] = 25352, + [SMALL_STATE(955)] = 25406, + [SMALL_STATE(956)] = 25460, + [SMALL_STATE(957)] = 25514, + [SMALL_STATE(958)] = 25568, + [SMALL_STATE(959)] = 25622, + [SMALL_STATE(960)] = 25676, + [SMALL_STATE(961)] = 25730, + [SMALL_STATE(962)] = 25784, + [SMALL_STATE(963)] = 25838, + [SMALL_STATE(964)] = 25892, + [SMALL_STATE(965)] = 25946, + [SMALL_STATE(966)] = 26000, + [SMALL_STATE(967)] = 26054, + [SMALL_STATE(968)] = 26108, + [SMALL_STATE(969)] = 26162, + [SMALL_STATE(970)] = 26216, + [SMALL_STATE(971)] = 26270, + [SMALL_STATE(972)] = 26324, + [SMALL_STATE(973)] = 26378, + [SMALL_STATE(974)] = 26432, + [SMALL_STATE(975)] = 26486, + [SMALL_STATE(976)] = 26540, + [SMALL_STATE(977)] = 26594, + [SMALL_STATE(978)] = 26648, + [SMALL_STATE(979)] = 26702, + [SMALL_STATE(980)] = 26756, + [SMALL_STATE(981)] = 26810, + [SMALL_STATE(982)] = 26864, + [SMALL_STATE(983)] = 26918, + [SMALL_STATE(984)] = 26972, + [SMALL_STATE(985)] = 27026, + [SMALL_STATE(986)] = 27080, + [SMALL_STATE(987)] = 27134, + [SMALL_STATE(988)] = 27188, + [SMALL_STATE(989)] = 27242, + [SMALL_STATE(990)] = 27296, + [SMALL_STATE(991)] = 27350, + [SMALL_STATE(992)] = 27404, + [SMALL_STATE(993)] = 27458, + [SMALL_STATE(994)] = 27512, + [SMALL_STATE(995)] = 27566, + [SMALL_STATE(996)] = 27620, + [SMALL_STATE(997)] = 27674, + [SMALL_STATE(998)] = 27728, + [SMALL_STATE(999)] = 27782, + [SMALL_STATE(1000)] = 27836, + [SMALL_STATE(1001)] = 27890, + [SMALL_STATE(1002)] = 27944, + [SMALL_STATE(1003)] = 27998, + [SMALL_STATE(1004)] = 28052, + [SMALL_STATE(1005)] = 28106, + [SMALL_STATE(1006)] = 28160, + [SMALL_STATE(1007)] = 28214, + [SMALL_STATE(1008)] = 28268, + [SMALL_STATE(1009)] = 28322, + [SMALL_STATE(1010)] = 28376, + [SMALL_STATE(1011)] = 28430, + [SMALL_STATE(1012)] = 28484, + [SMALL_STATE(1013)] = 28538, + [SMALL_STATE(1014)] = 28592, + [SMALL_STATE(1015)] = 28646, + [SMALL_STATE(1016)] = 28700, + [SMALL_STATE(1017)] = 28754, + [SMALL_STATE(1018)] = 28808, + [SMALL_STATE(1019)] = 28862, + [SMALL_STATE(1020)] = 28916, + [SMALL_STATE(1021)] = 28970, + [SMALL_STATE(1022)] = 29024, + [SMALL_STATE(1023)] = 29078, + [SMALL_STATE(1024)] = 29132, + [SMALL_STATE(1025)] = 29186, + [SMALL_STATE(1026)] = 29240, + [SMALL_STATE(1027)] = 29294, + [SMALL_STATE(1028)] = 29348, + [SMALL_STATE(1029)] = 29402, + [SMALL_STATE(1030)] = 29456, + [SMALL_STATE(1031)] = 29510, + [SMALL_STATE(1032)] = 29564, + [SMALL_STATE(1033)] = 29618, + [SMALL_STATE(1034)] = 29672, + [SMALL_STATE(1035)] = 29726, + [SMALL_STATE(1036)] = 29780, + [SMALL_STATE(1037)] = 29834, + [SMALL_STATE(1038)] = 29888, + [SMALL_STATE(1039)] = 29942, + [SMALL_STATE(1040)] = 29996, + [SMALL_STATE(1041)] = 30050, + [SMALL_STATE(1042)] = 30104, + [SMALL_STATE(1043)] = 30158, + [SMALL_STATE(1044)] = 30212, + [SMALL_STATE(1045)] = 30266, + [SMALL_STATE(1046)] = 30320, + [SMALL_STATE(1047)] = 30374, + [SMALL_STATE(1048)] = 30428, + [SMALL_STATE(1049)] = 30482, + [SMALL_STATE(1050)] = 30536, + [SMALL_STATE(1051)] = 30590, + [SMALL_STATE(1052)] = 30644, + [SMALL_STATE(1053)] = 30698, + [SMALL_STATE(1054)] = 30752, + [SMALL_STATE(1055)] = 30806, + [SMALL_STATE(1056)] = 30860, + [SMALL_STATE(1057)] = 30914, + [SMALL_STATE(1058)] = 30968, + [SMALL_STATE(1059)] = 31022, + [SMALL_STATE(1060)] = 31076, + [SMALL_STATE(1061)] = 31130, + [SMALL_STATE(1062)] = 31184, + [SMALL_STATE(1063)] = 31238, + [SMALL_STATE(1064)] = 31292, + [SMALL_STATE(1065)] = 31346, + [SMALL_STATE(1066)] = 31400, + [SMALL_STATE(1067)] = 31454, + [SMALL_STATE(1068)] = 31508, + [SMALL_STATE(1069)] = 31562, + [SMALL_STATE(1070)] = 31616, + [SMALL_STATE(1071)] = 31670, + [SMALL_STATE(1072)] = 31724, + [SMALL_STATE(1073)] = 31778, + [SMALL_STATE(1074)] = 31832, + [SMALL_STATE(1075)] = 31886, + [SMALL_STATE(1076)] = 31940, + [SMALL_STATE(1077)] = 31994, + [SMALL_STATE(1078)] = 32048, + [SMALL_STATE(1079)] = 32102, + [SMALL_STATE(1080)] = 32156, + [SMALL_STATE(1081)] = 32210, + [SMALL_STATE(1082)] = 32264, + [SMALL_STATE(1083)] = 32318, + [SMALL_STATE(1084)] = 32372, + [SMALL_STATE(1085)] = 32426, + [SMALL_STATE(1086)] = 32480, + [SMALL_STATE(1087)] = 32534, + [SMALL_STATE(1088)] = 32588, + [SMALL_STATE(1089)] = 32642, + [SMALL_STATE(1090)] = 32696, + [SMALL_STATE(1091)] = 32750, + [SMALL_STATE(1092)] = 32804, + [SMALL_STATE(1093)] = 32858, + [SMALL_STATE(1094)] = 32912, + [SMALL_STATE(1095)] = 32966, + [SMALL_STATE(1096)] = 33020, + [SMALL_STATE(1097)] = 33074, + [SMALL_STATE(1098)] = 33128, + [SMALL_STATE(1099)] = 33182, + [SMALL_STATE(1100)] = 33236, + [SMALL_STATE(1101)] = 33290, + [SMALL_STATE(1102)] = 33344, + [SMALL_STATE(1103)] = 33398, + [SMALL_STATE(1104)] = 33452, + [SMALL_STATE(1105)] = 33506, + [SMALL_STATE(1106)] = 33560, + [SMALL_STATE(1107)] = 33614, + [SMALL_STATE(1108)] = 33668, + [SMALL_STATE(1109)] = 33722, + [SMALL_STATE(1110)] = 33776, + [SMALL_STATE(1111)] = 33830, + [SMALL_STATE(1112)] = 33884, + [SMALL_STATE(1113)] = 33938, + [SMALL_STATE(1114)] = 33992, + [SMALL_STATE(1115)] = 34046, + [SMALL_STATE(1116)] = 34100, + [SMALL_STATE(1117)] = 34154, + [SMALL_STATE(1118)] = 34208, + [SMALL_STATE(1119)] = 34262, [SMALL_STATE(1120)] = 34316, [SMALL_STATE(1121)] = 34370, [SMALL_STATE(1122)] = 34424, @@ -128335,173 +126034,173 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1126)] = 34640, [SMALL_STATE(1127)] = 34694, [SMALL_STATE(1128)] = 34748, - [SMALL_STATE(1129)] = 34823, + [SMALL_STATE(1129)] = 34831, [SMALL_STATE(1130)] = 34892, - [SMALL_STATE(1131)] = 34953, - [SMALL_STATE(1132)] = 35042, - [SMALL_STATE(1133)] = 35125, - [SMALL_STATE(1134)] = 35214, - [SMALL_STATE(1135)] = 35267, - [SMALL_STATE(1136)] = 35320, - [SMALL_STATE(1137)] = 35403, - [SMALL_STATE(1138)] = 35458, - [SMALL_STATE(1139)] = 35541, - [SMALL_STATE(1140)] = 35594, - [SMALL_STATE(1141)] = 35661, - [SMALL_STATE(1142)] = 35714, - [SMALL_STATE(1143)] = 35775, - [SMALL_STATE(1144)] = 35846, - [SMALL_STATE(1145)] = 35919, - [SMALL_STATE(1146)] = 36006, - [SMALL_STATE(1147)] = 36087, - [SMALL_STATE(1148)] = 36166, - [SMALL_STATE(1149)] = 36249, - [SMALL_STATE(1150)] = 36304, - [SMALL_STATE(1151)] = 36357, - [SMALL_STATE(1152)] = 36410, - [SMALL_STATE(1153)] = 36493, - [SMALL_STATE(1154)] = 36550, - [SMALL_STATE(1155)] = 36633, - [SMALL_STATE(1156)] = 36694, - [SMALL_STATE(1157)] = 36781, - [SMALL_STATE(1158)] = 36844, + [SMALL_STATE(1131)] = 34947, + [SMALL_STATE(1132)] = 35008, + [SMALL_STATE(1133)] = 35061, + [SMALL_STATE(1134)] = 35114, + [SMALL_STATE(1135)] = 35179, + [SMALL_STATE(1136)] = 35242, + [SMALL_STATE(1137)] = 35325, + [SMALL_STATE(1138)] = 35400, + [SMALL_STATE(1139)] = 35469, + [SMALL_STATE(1140)] = 35552, + [SMALL_STATE(1141)] = 35613, + [SMALL_STATE(1142)] = 35666, + [SMALL_STATE(1143)] = 35749, + [SMALL_STATE(1144)] = 35802, + [SMALL_STATE(1145)] = 35883, + [SMALL_STATE(1146)] = 35956, + [SMALL_STATE(1147)] = 36027, + [SMALL_STATE(1148)] = 36094, + [SMALL_STATE(1149)] = 36177, + [SMALL_STATE(1150)] = 36230, + [SMALL_STATE(1151)] = 36309, + [SMALL_STATE(1152)] = 36362, + [SMALL_STATE(1153)] = 36445, + [SMALL_STATE(1154)] = 36500, + [SMALL_STATE(1155)] = 36589, + [SMALL_STATE(1156)] = 36678, + [SMALL_STATE(1157)] = 36765, + [SMALL_STATE(1158)] = 36822, [SMALL_STATE(1159)] = 36909, [SMALL_STATE(1160)] = 36961, - [SMALL_STATE(1161)] = 37013, + [SMALL_STATE(1161)] = 37021, [SMALL_STATE(1162)] = 37073, - [SMALL_STATE(1163)] = 37158, - [SMALL_STATE(1164)] = 37209, + [SMALL_STATE(1163)] = 37160, + [SMALL_STATE(1164)] = 37245, [SMALL_STATE(1165)] = 37296, - [SMALL_STATE(1166)] = 37383, - [SMALL_STATE(1167)] = 37440, - [SMALL_STATE(1168)] = 37527, - [SMALL_STATE(1169)] = 37612, - [SMALL_STATE(1170)] = 37699, + [SMALL_STATE(1166)] = 37347, + [SMALL_STATE(1167)] = 37432, + [SMALL_STATE(1168)] = 37519, + [SMALL_STATE(1169)] = 37606, + [SMALL_STATE(1170)] = 37663, [SMALL_STATE(1171)] = 37750, - [SMALL_STATE(1172)] = 37806, - [SMALL_STATE(1173)] = 37860, - [SMALL_STATE(1174)] = 37936, + [SMALL_STATE(1172)] = 37804, + [SMALL_STATE(1173)] = 37880, + [SMALL_STATE(1174)] = 37956, [SMALL_STATE(1175)] = 38012, - [SMALL_STATE(1176)] = 38101, - [SMALL_STATE(1177)] = 38154, - [SMALL_STATE(1178)] = 38207, - [SMALL_STATE(1179)] = 38258, - [SMALL_STATE(1180)] = 38307, - [SMALL_STATE(1181)] = 38356, - [SMALL_STATE(1182)] = 38405, - [SMALL_STATE(1183)] = 38494, - [SMALL_STATE(1184)] = 38545, - [SMALL_STATE(1185)] = 38594, - [SMALL_STATE(1186)] = 38643, + [SMALL_STATE(1176)] = 38061, + [SMALL_STATE(1177)] = 38110, + [SMALL_STATE(1178)] = 38163, + [SMALL_STATE(1179)] = 38212, + [SMALL_STATE(1180)] = 38265, + [SMALL_STATE(1181)] = 38314, + [SMALL_STATE(1182)] = 38363, + [SMALL_STATE(1183)] = 38412, + [SMALL_STATE(1184)] = 38501, + [SMALL_STATE(1185)] = 38552, + [SMALL_STATE(1186)] = 38641, [SMALL_STATE(1187)] = 38692, [SMALL_STATE(1188)] = 38741, [SMALL_STATE(1189)] = 38790, [SMALL_STATE(1190)] = 38839, - [SMALL_STATE(1191)] = 38889, - [SMALL_STATE(1192)] = 38939, - [SMALL_STATE(1193)] = 38989, + [SMALL_STATE(1191)] = 38925, + [SMALL_STATE(1192)] = 38975, + [SMALL_STATE(1193)] = 39025, [SMALL_STATE(1194)] = 39075, - [SMALL_STATE(1195)] = 39125, - [SMALL_STATE(1196)] = 39203, - [SMALL_STATE(1197)] = 39281, + [SMALL_STATE(1195)] = 39161, + [SMALL_STATE(1196)] = 39211, + [SMALL_STATE(1197)] = 39289, [SMALL_STATE(1198)] = 39367, - [SMALL_STATE(1199)] = 39444, - [SMALL_STATE(1200)] = 39527, - [SMALL_STATE(1201)] = 39582, - [SMALL_STATE(1202)] = 39665, - [SMALL_STATE(1203)] = 39748, - [SMALL_STATE(1204)] = 39805, - [SMALL_STATE(1205)] = 39888, - [SMALL_STATE(1206)] = 39965, - [SMALL_STATE(1207)] = 40048, - [SMALL_STATE(1208)] = 40119, - [SMALL_STATE(1209)] = 40174, - [SMALL_STATE(1210)] = 40257, - [SMALL_STATE(1211)] = 40340, - [SMALL_STATE(1212)] = 40423, - [SMALL_STATE(1213)] = 40504, - [SMALL_STATE(1214)] = 40587, - [SMALL_STATE(1215)] = 40670, - [SMALL_STATE(1216)] = 40753, - [SMALL_STATE(1217)] = 40836, - [SMALL_STATE(1218)] = 40919, - [SMALL_STATE(1219)] = 41000, - [SMALL_STATE(1220)] = 41083, - [SMALL_STATE(1221)] = 41166, - [SMALL_STATE(1222)] = 41243, - [SMALL_STATE(1223)] = 41326, - [SMALL_STATE(1224)] = 41407, - [SMALL_STATE(1225)] = 41468, - [SMALL_STATE(1226)] = 41549, - [SMALL_STATE(1227)] = 41632, - [SMALL_STATE(1228)] = 41713, - [SMALL_STATE(1229)] = 41796, - [SMALL_STATE(1230)] = 41879, - [SMALL_STATE(1231)] = 41962, - [SMALL_STATE(1232)] = 42045, - [SMALL_STATE(1233)] = 42110, - [SMALL_STATE(1234)] = 42193, - [SMALL_STATE(1235)] = 42276, - [SMALL_STATE(1236)] = 42343, - [SMALL_STATE(1237)] = 42418, - [SMALL_STATE(1238)] = 42501, - [SMALL_STATE(1239)] = 42578, - [SMALL_STATE(1240)] = 42661, - [SMALL_STATE(1241)] = 42734, - [SMALL_STATE(1242)] = 42797, - [SMALL_STATE(1243)] = 42880, - [SMALL_STATE(1244)] = 42963, - [SMALL_STATE(1245)] = 43032, - [SMALL_STATE(1246)] = 43115, - [SMALL_STATE(1247)] = 43198, - [SMALL_STATE(1248)] = 43275, - [SMALL_STATE(1249)] = 43358, - [SMALL_STATE(1250)] = 43417, - [SMALL_STATE(1251)] = 43498, - [SMALL_STATE(1252)] = 43581, - [SMALL_STATE(1253)] = 43662, - [SMALL_STATE(1254)] = 43717, - [SMALL_STATE(1255)] = 43798, - [SMALL_STATE(1256)] = 43879, - [SMALL_STATE(1257)] = 43960, - [SMALL_STATE(1258)] = 44043, - [SMALL_STATE(1259)] = 44124, - [SMALL_STATE(1260)] = 44207, - [SMALL_STATE(1261)] = 44290, - [SMALL_STATE(1262)] = 44373, - [SMALL_STATE(1263)] = 44454, + [SMALL_STATE(1199)] = 39448, + [SMALL_STATE(1200)] = 39531, + [SMALL_STATE(1201)] = 39614, + [SMALL_STATE(1202)] = 39695, + [SMALL_STATE(1203)] = 39778, + [SMALL_STATE(1204)] = 39861, + [SMALL_STATE(1205)] = 39944, + [SMALL_STATE(1206)] = 40021, + [SMALL_STATE(1207)] = 40082, + [SMALL_STATE(1208)] = 40147, + [SMALL_STATE(1209)] = 40214, + [SMALL_STATE(1210)] = 40289, + [SMALL_STATE(1211)] = 40362, + [SMALL_STATE(1212)] = 40425, + [SMALL_STATE(1213)] = 40494, + [SMALL_STATE(1214)] = 40571, + [SMALL_STATE(1215)] = 40654, + [SMALL_STATE(1216)] = 40713, + [SMALL_STATE(1217)] = 40796, + [SMALL_STATE(1218)] = 40851, + [SMALL_STATE(1219)] = 40928, + [SMALL_STATE(1220)] = 41009, + [SMALL_STATE(1221)] = 41090, + [SMALL_STATE(1222)] = 41173, + [SMALL_STATE(1223)] = 41250, + [SMALL_STATE(1224)] = 41305, + [SMALL_STATE(1225)] = 41382, + [SMALL_STATE(1226)] = 41465, + [SMALL_STATE(1227)] = 41548, + [SMALL_STATE(1228)] = 41625, + [SMALL_STATE(1229)] = 41706, + [SMALL_STATE(1230)] = 41761, + [SMALL_STATE(1231)] = 41818, + [SMALL_STATE(1232)] = 41901, + [SMALL_STATE(1233)] = 41984, + [SMALL_STATE(1234)] = 42067, + [SMALL_STATE(1235)] = 42148, + [SMALL_STATE(1236)] = 42231, + [SMALL_STATE(1237)] = 42314, + [SMALL_STATE(1238)] = 42397, + [SMALL_STATE(1239)] = 42480, + [SMALL_STATE(1240)] = 42563, + [SMALL_STATE(1241)] = 42644, + [SMALL_STATE(1242)] = 42725, + [SMALL_STATE(1243)] = 42808, + [SMALL_STATE(1244)] = 42891, + [SMALL_STATE(1245)] = 42974, + [SMALL_STATE(1246)] = 43045, + [SMALL_STATE(1247)] = 43128, + [SMALL_STATE(1248)] = 43211, + [SMALL_STATE(1249)] = 43294, + [SMALL_STATE(1250)] = 43377, + [SMALL_STATE(1251)] = 43460, + [SMALL_STATE(1252)] = 43541, + [SMALL_STATE(1253)] = 43624, + [SMALL_STATE(1254)] = 43707, + [SMALL_STATE(1255)] = 43790, + [SMALL_STATE(1256)] = 43873, + [SMALL_STATE(1257)] = 43954, + [SMALL_STATE(1258)] = 44037, + [SMALL_STATE(1259)] = 44120, + [SMALL_STATE(1260)] = 44201, + [SMALL_STATE(1261)] = 44284, + [SMALL_STATE(1262)] = 44367, + [SMALL_STATE(1263)] = 44448, [SMALL_STATE(1264)] = 44531, - [SMALL_STATE(1265)] = 44611, - [SMALL_STATE(1266)] = 44691, - [SMALL_STATE(1267)] = 44771, - [SMALL_STATE(1268)] = 44851, + [SMALL_STATE(1265)] = 44609, + [SMALL_STATE(1266)] = 44689, + [SMALL_STATE(1267)] = 44769, + [SMALL_STATE(1268)] = 44849, [SMALL_STATE(1269)] = 44929, [SMALL_STATE(1270)] = 45009, - [SMALL_STATE(1271)] = 45087, - [SMALL_STATE(1272)] = 45167, - [SMALL_STATE(1273)] = 45247, - [SMALL_STATE(1274)] = 45327, - [SMALL_STATE(1275)] = 45407, - [SMALL_STATE(1276)] = 45487, - [SMALL_STATE(1277)] = 45567, - [SMALL_STATE(1278)] = 45647, - [SMALL_STATE(1279)] = 45727, - [SMALL_STATE(1280)] = 45807, - [SMALL_STATE(1281)] = 45885, - [SMALL_STATE(1282)] = 45965, - [SMALL_STATE(1283)] = 46045, - [SMALL_STATE(1284)] = 46123, - [SMALL_STATE(1285)] = 46203, - [SMALL_STATE(1286)] = 46283, - [SMALL_STATE(1287)] = 46363, - [SMALL_STATE(1288)] = 46443, - [SMALL_STATE(1289)] = 46523, + [SMALL_STATE(1271)] = 45089, + [SMALL_STATE(1272)] = 45169, + [SMALL_STATE(1273)] = 45249, + [SMALL_STATE(1274)] = 45329, + [SMALL_STATE(1275)] = 45409, + [SMALL_STATE(1276)] = 45489, + [SMALL_STATE(1277)] = 45569, + [SMALL_STATE(1278)] = 45649, + [SMALL_STATE(1279)] = 45729, + [SMALL_STATE(1280)] = 45809, + [SMALL_STATE(1281)] = 45889, + [SMALL_STATE(1282)] = 45957, + [SMALL_STATE(1283)] = 46037, + [SMALL_STATE(1284)] = 46117, + [SMALL_STATE(1285)] = 46195, + [SMALL_STATE(1286)] = 46275, + [SMALL_STATE(1287)] = 46353, + [SMALL_STATE(1288)] = 46433, + [SMALL_STATE(1289)] = 46511, [SMALL_STATE(1290)] = 46591, - [SMALL_STATE(1291)] = 46671, - [SMALL_STATE(1292)] = 46751, - [SMALL_STATE(1293)] = 46831, - [SMALL_STATE(1294)] = 46911, - [SMALL_STATE(1295)] = 46991, + [SMALL_STATE(1291)] = 46659, + [SMALL_STATE(1292)] = 46739, + [SMALL_STATE(1293)] = 46819, + [SMALL_STATE(1294)] = 46899, + [SMALL_STATE(1295)] = 46979, [SMALL_STATE(1296)] = 47059, [SMALL_STATE(1297)] = 47124, [SMALL_STATE(1298)] = 47189, @@ -128524,150 +126223,150 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1315)] = 48055, [SMALL_STATE(1316)] = 48101, [SMALL_STATE(1317)] = 48142, - [SMALL_STATE(1318)] = 48172, - [SMALL_STATE(1319)] = 48202, + [SMALL_STATE(1318)] = 48180, + [SMALL_STATE(1319)] = 48210, [SMALL_STATE(1320)] = 48240, [SMALL_STATE(1321)] = 48270, [SMALL_STATE(1322)] = 48300, [SMALL_STATE(1323)] = 48330, [SMALL_STATE(1324)] = 48360, - [SMALL_STATE(1325)] = 48390, - [SMALL_STATE(1326)] = 48420, + [SMALL_STATE(1325)] = 48398, + [SMALL_STATE(1326)] = 48428, [SMALL_STATE(1327)] = 48458, - [SMALL_STATE(1328)] = 48491, + [SMALL_STATE(1328)] = 48485, [SMALL_STATE(1329)] = 48518, - [SMALL_STATE(1330)] = 48551, + [SMALL_STATE(1330)] = 48545, [SMALL_STATE(1331)] = 48578, - [SMALL_STATE(1332)] = 48611, + [SMALL_STATE(1332)] = 48605, [SMALL_STATE(1333)] = 48638, - [SMALL_STATE(1334)] = 48664, - [SMALL_STATE(1335)] = 48718, - [SMALL_STATE(1336)] = 48744, - [SMALL_STATE(1337)] = 48770, - [SMALL_STATE(1338)] = 48804, - [SMALL_STATE(1339)] = 48830, - [SMALL_STATE(1340)] = 48884, + [SMALL_STATE(1334)] = 48672, + [SMALL_STATE(1335)] = 48726, + [SMALL_STATE(1336)] = 48780, + [SMALL_STATE(1337)] = 48804, + [SMALL_STATE(1338)] = 48830, + [SMALL_STATE(1339)] = 48856, + [SMALL_STATE(1340)] = 48882, [SMALL_STATE(1341)] = 48908, [SMALL_STATE(1342)] = 48933, - [SMALL_STATE(1343)] = 48958, - [SMALL_STATE(1344)] = 48981, - [SMALL_STATE(1345)] = 49006, - [SMALL_STATE(1346)] = 49031, - [SMALL_STATE(1347)] = 49056, - [SMALL_STATE(1348)] = 49081, + [SMALL_STATE(1343)] = 48964, + [SMALL_STATE(1344)] = 48989, + [SMALL_STATE(1345)] = 49014, + [SMALL_STATE(1346)] = 49039, + [SMALL_STATE(1347)] = 49062, + [SMALL_STATE(1348)] = 49087, [SMALL_STATE(1349)] = 49112, [SMALL_STATE(1350)] = 49136, - [SMALL_STATE(1351)] = 49158, + [SMALL_STATE(1351)] = 49160, [SMALL_STATE(1352)] = 49182, - [SMALL_STATE(1353)] = 49206, - [SMALL_STATE(1354)] = 49230, - [SMALL_STATE(1355)] = 49252, - [SMALL_STATE(1356)] = 49278, - [SMALL_STATE(1357)] = 49302, - [SMALL_STATE(1358)] = 49326, - [SMALL_STATE(1359)] = 49350, - [SMALL_STATE(1360)] = 49376, - [SMALL_STATE(1361)] = 49398, - [SMALL_STATE(1362)] = 49422, - [SMALL_STATE(1363)] = 49448, - [SMALL_STATE(1364)] = 49472, - [SMALL_STATE(1365)] = 49500, - [SMALL_STATE(1366)] = 49522, - [SMALL_STATE(1367)] = 49546, - [SMALL_STATE(1368)] = 49568, - [SMALL_STATE(1369)] = 49594, + [SMALL_STATE(1353)] = 49226, + [SMALL_STATE(1354)] = 49252, + [SMALL_STATE(1355)] = 49276, + [SMALL_STATE(1356)] = 49302, + [SMALL_STATE(1357)] = 49330, + [SMALL_STATE(1358)] = 49352, + [SMALL_STATE(1359)] = 49374, + [SMALL_STATE(1360)] = 49396, + [SMALL_STATE(1361)] = 49422, + [SMALL_STATE(1362)] = 49444, + [SMALL_STATE(1363)] = 49466, + [SMALL_STATE(1364)] = 49490, + [SMALL_STATE(1365)] = 49514, + [SMALL_STATE(1366)] = 49540, + [SMALL_STATE(1367)] = 49566, + [SMALL_STATE(1368)] = 49590, + [SMALL_STATE(1369)] = 49614, [SMALL_STATE(1370)] = 49638, - [SMALL_STATE(1371)] = 49660, - [SMALL_STATE(1372)] = 49682, - [SMALL_STATE(1373)] = 49704, - [SMALL_STATE(1374)] = 49750, - [SMALL_STATE(1375)] = 49776, + [SMALL_STATE(1371)] = 49662, + [SMALL_STATE(1372)] = 49706, + [SMALL_STATE(1373)] = 49752, + [SMALL_STATE(1374)] = 49774, + [SMALL_STATE(1375)] = 49796, [SMALL_STATE(1376)] = 49820, - [SMALL_STATE(1377)] = 49841, - [SMALL_STATE(1378)] = 49862, - [SMALL_STATE(1379)] = 49883, - [SMALL_STATE(1380)] = 49904, - [SMALL_STATE(1381)] = 49949, - [SMALL_STATE(1382)] = 49970, - [SMALL_STATE(1383)] = 49991, - [SMALL_STATE(1384)] = 50012, - [SMALL_STATE(1385)] = 50033, - [SMALL_STATE(1386)] = 50054, - [SMALL_STATE(1387)] = 50075, - [SMALL_STATE(1388)] = 50096, - [SMALL_STATE(1389)] = 50117, - [SMALL_STATE(1390)] = 50142, - [SMALL_STATE(1391)] = 50163, - [SMALL_STATE(1392)] = 50186, - [SMALL_STATE(1393)] = 50207, - [SMALL_STATE(1394)] = 50230, - [SMALL_STATE(1395)] = 50251, - [SMALL_STATE(1396)] = 50282, - [SMALL_STATE(1397)] = 50307, - [SMALL_STATE(1398)] = 50330, - [SMALL_STATE(1399)] = 50351, - [SMALL_STATE(1400)] = 50372, - [SMALL_STATE(1401)] = 50393, - [SMALL_STATE(1402)] = 50414, - [SMALL_STATE(1403)] = 50435, - [SMALL_STATE(1404)] = 50456, - [SMALL_STATE(1405)] = 50477, + [SMALL_STATE(1377)] = 49845, + [SMALL_STATE(1378)] = 49866, + [SMALL_STATE(1379)] = 49887, + [SMALL_STATE(1380)] = 49908, + [SMALL_STATE(1381)] = 49929, + [SMALL_STATE(1382)] = 49950, + [SMALL_STATE(1383)] = 49971, + [SMALL_STATE(1384)] = 49992, + [SMALL_STATE(1385)] = 50015, + [SMALL_STATE(1386)] = 50036, + [SMALL_STATE(1387)] = 50057, + [SMALL_STATE(1388)] = 50078, + [SMALL_STATE(1389)] = 50099, + [SMALL_STATE(1390)] = 50120, + [SMALL_STATE(1391)] = 50141, + [SMALL_STATE(1392)] = 50164, + [SMALL_STATE(1393)] = 50185, + [SMALL_STATE(1394)] = 50206, + [SMALL_STATE(1395)] = 50227, + [SMALL_STATE(1396)] = 50252, + [SMALL_STATE(1397)] = 50273, + [SMALL_STATE(1398)] = 50318, + [SMALL_STATE(1399)] = 50339, + [SMALL_STATE(1400)] = 50360, + [SMALL_STATE(1401)] = 50381, + [SMALL_STATE(1402)] = 50404, + [SMALL_STATE(1403)] = 50425, + [SMALL_STATE(1404)] = 50446, + [SMALL_STATE(1405)] = 50467, [SMALL_STATE(1406)] = 50498, [SMALL_STATE(1407)] = 50522, [SMALL_STATE(1408)] = 50544, [SMALL_STATE(1409)] = 50572, - [SMALL_STATE(1410)] = 50596, - [SMALL_STATE(1411)] = 50620, - [SMALL_STATE(1412)] = 50644, - [SMALL_STATE(1413)] = 50668, - [SMALL_STATE(1414)] = 50692, + [SMALL_STATE(1410)] = 50594, + [SMALL_STATE(1411)] = 50618, + [SMALL_STATE(1412)] = 50642, + [SMALL_STATE(1413)] = 50666, + [SMALL_STATE(1414)] = 50690, [SMALL_STATE(1415)] = 50714, - [SMALL_STATE(1416)] = 50736, + [SMALL_STATE(1416)] = 50738, [SMALL_STATE(1417)] = 50760, [SMALL_STATE(1418)] = 50784, [SMALL_STATE(1419)] = 50805, - [SMALL_STATE(1420)] = 50828, - [SMALL_STATE(1421)] = 50849, - [SMALL_STATE(1422)] = 50870, - [SMALL_STATE(1423)] = 50891, - [SMALL_STATE(1424)] = 50916, - [SMALL_STATE(1425)] = 50939, - [SMALL_STATE(1426)] = 50960, - [SMALL_STATE(1427)] = 50981, + [SMALL_STATE(1420)] = 50826, + [SMALL_STATE(1421)] = 50847, + [SMALL_STATE(1422)] = 50868, + [SMALL_STATE(1423)] = 50889, + [SMALL_STATE(1424)] = 50910, + [SMALL_STATE(1425)] = 50931, + [SMALL_STATE(1426)] = 50952, + [SMALL_STATE(1427)] = 50973, [SMALL_STATE(1428)] = 51002, [SMALL_STATE(1429)] = 51023, [SMALL_STATE(1430)] = 51044, - [SMALL_STATE(1431)] = 51067, - [SMALL_STATE(1432)] = 51092, - [SMALL_STATE(1433)] = 51113, - [SMALL_STATE(1434)] = 51138, - [SMALL_STATE(1435)] = 51159, - [SMALL_STATE(1436)] = 51182, - [SMALL_STATE(1437)] = 51203, - [SMALL_STATE(1438)] = 51224, - [SMALL_STATE(1439)] = 51245, - [SMALL_STATE(1440)] = 51274, - [SMALL_STATE(1441)] = 51295, - [SMALL_STATE(1442)] = 51316, - [SMALL_STATE(1443)] = 51337, - [SMALL_STATE(1444)] = 51358, + [SMALL_STATE(1431)] = 51065, + [SMALL_STATE(1432)] = 51086, + [SMALL_STATE(1433)] = 51107, + [SMALL_STATE(1434)] = 51128, + [SMALL_STATE(1435)] = 51149, + [SMALL_STATE(1436)] = 51170, + [SMALL_STATE(1437)] = 51195, + [SMALL_STATE(1438)] = 51216, + [SMALL_STATE(1439)] = 51237, + [SMALL_STATE(1440)] = 51258, + [SMALL_STATE(1441)] = 51283, + [SMALL_STATE(1442)] = 51308, + [SMALL_STATE(1443)] = 51333, + [SMALL_STATE(1444)] = 51354, [SMALL_STATE(1445)] = 51379, - [SMALL_STATE(1446)] = 51404, - [SMALL_STATE(1447)] = 51425, + [SMALL_STATE(1446)] = 51400, + [SMALL_STATE(1447)] = 51421, [SMALL_STATE(1448)] = 51446, - [SMALL_STATE(1449)] = 51467, + [SMALL_STATE(1449)] = 51471, [SMALL_STATE(1450)] = 51492, [SMALL_STATE(1451)] = 51513, - [SMALL_STATE(1452)] = 51534, - [SMALL_STATE(1453)] = 51555, - [SMALL_STATE(1454)] = 51576, - [SMALL_STATE(1455)] = 51597, - [SMALL_STATE(1456)] = 51618, - [SMALL_STATE(1457)] = 51639, - [SMALL_STATE(1458)] = 51664, - [SMALL_STATE(1459)] = 51685, - [SMALL_STATE(1460)] = 51710, - [SMALL_STATE(1461)] = 51731, + [SMALL_STATE(1452)] = 51538, + [SMALL_STATE(1453)] = 51559, + [SMALL_STATE(1454)] = 51580, + [SMALL_STATE(1455)] = 51601, + [SMALL_STATE(1456)] = 51622, + [SMALL_STATE(1457)] = 51645, + [SMALL_STATE(1458)] = 51668, + [SMALL_STATE(1459)] = 51691, + [SMALL_STATE(1460)] = 51714, + [SMALL_STATE(1461)] = 51735, [SMALL_STATE(1462)] = 51756, [SMALL_STATE(1463)] = 51788, [SMALL_STATE(1464)] = 51820, @@ -128677,1100 +126376,1110 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1468)] = 51932, [SMALL_STATE(1469)] = 51964, [SMALL_STATE(1470)] = 51996, - [SMALL_STATE(1471)] = 52028, + [SMALL_STATE(1471)] = 52020, [SMALL_STATE(1472)] = 52052, - [SMALL_STATE(1473)] = 52076, + [SMALL_STATE(1473)] = 52084, [SMALL_STATE(1474)] = 52108, - [SMALL_STATE(1475)] = 52135, - [SMALL_STATE(1476)] = 52164, - [SMALL_STATE(1477)] = 52189, - [SMALL_STATE(1478)] = 52220, - [SMALL_STATE(1479)] = 52253, - [SMALL_STATE(1480)] = 52286, - [SMALL_STATE(1481)] = 52319, + [SMALL_STATE(1475)] = 52141, + [SMALL_STATE(1476)] = 52174, + [SMALL_STATE(1477)] = 52207, + [SMALL_STATE(1478)] = 52232, + [SMALL_STATE(1479)] = 52265, + [SMALL_STATE(1480)] = 52296, + [SMALL_STATE(1481)] = 52325, [SMALL_STATE(1482)] = 52352, - [SMALL_STATE(1483)] = 52378, - [SMALL_STATE(1484)] = 52404, - [SMALL_STATE(1485)] = 52426, - [SMALL_STATE(1486)] = 52456, - [SMALL_STATE(1487)] = 52488, - [SMALL_STATE(1488)] = 52518, - [SMALL_STATE(1489)] = 52548, - [SMALL_STATE(1490)] = 52578, - [SMALL_STATE(1491)] = 52608, - [SMALL_STATE(1492)] = 52634, - [SMALL_STATE(1493)] = 52666, + [SMALL_STATE(1483)] = 52382, + [SMALL_STATE(1484)] = 52408, + [SMALL_STATE(1485)] = 52438, + [SMALL_STATE(1486)] = 52468, + [SMALL_STATE(1487)] = 52494, + [SMALL_STATE(1488)] = 52524, + [SMALL_STATE(1489)] = 52554, + [SMALL_STATE(1490)] = 52576, + [SMALL_STATE(1491)] = 52606, + [SMALL_STATE(1492)] = 52636, + [SMALL_STATE(1493)] = 52662, [SMALL_STATE(1494)] = 52692, - [SMALL_STATE(1495)] = 52722, - [SMALL_STATE(1496)] = 52752, - [SMALL_STATE(1497)] = 52784, - [SMALL_STATE(1498)] = 52810, - [SMALL_STATE(1499)] = 52840, - [SMALL_STATE(1500)] = 52866, - [SMALL_STATE(1501)] = 52896, + [SMALL_STATE(1495)] = 52718, + [SMALL_STATE(1496)] = 52748, + [SMALL_STATE(1497)] = 52770, + [SMALL_STATE(1498)] = 52802, + [SMALL_STATE(1499)] = 52828, + [SMALL_STATE(1500)] = 52858, + [SMALL_STATE(1501)] = 52888, [SMALL_STATE(1502)] = 52918, [SMALL_STATE(1503)] = 52948, - [SMALL_STATE(1504)] = 52978, + [SMALL_STATE(1504)] = 52974, [SMALL_STATE(1505)] = 53004, - [SMALL_STATE(1506)] = 53030, - [SMALL_STATE(1507)] = 53056, - [SMALL_STATE(1508)] = 53082, - [SMALL_STATE(1509)] = 53112, - [SMALL_STATE(1510)] = 53142, - [SMALL_STATE(1511)] = 53164, - [SMALL_STATE(1512)] = 53186, - [SMALL_STATE(1513)] = 53216, - [SMALL_STATE(1514)] = 53246, - [SMALL_STATE(1515)] = 53276, - [SMALL_STATE(1516)] = 53306, - [SMALL_STATE(1517)] = 53336, - [SMALL_STATE(1518)] = 53358, - [SMALL_STATE(1519)] = 53388, - [SMALL_STATE(1520)] = 53418, - [SMALL_STATE(1521)] = 53450, - [SMALL_STATE(1522)] = 53480, - [SMALL_STATE(1523)] = 53506, - [SMALL_STATE(1524)] = 53528, - [SMALL_STATE(1525)] = 53555, - [SMALL_STATE(1526)] = 53576, - [SMALL_STATE(1527)] = 53597, - [SMALL_STATE(1528)] = 53624, - [SMALL_STATE(1529)] = 53647, - [SMALL_STATE(1530)] = 53674, - [SMALL_STATE(1531)] = 53689, - [SMALL_STATE(1532)] = 53718, - [SMALL_STATE(1533)] = 53747, - [SMALL_STATE(1534)] = 53776, - [SMALL_STATE(1535)] = 53805, - [SMALL_STATE(1536)] = 53832, - [SMALL_STATE(1537)] = 53859, - [SMALL_STATE(1538)] = 53878, - [SMALL_STATE(1539)] = 53897, - [SMALL_STATE(1540)] = 53916, - [SMALL_STATE(1541)] = 53935, - [SMALL_STATE(1542)] = 53954, - [SMALL_STATE(1543)] = 53981, - [SMALL_STATE(1544)] = 54008, - [SMALL_STATE(1545)] = 54035, - [SMALL_STATE(1546)] = 54058, - [SMALL_STATE(1547)] = 54083, - [SMALL_STATE(1548)] = 54102, - [SMALL_STATE(1549)] = 54125, - [SMALL_STATE(1550)] = 54144, - [SMALL_STATE(1551)] = 54163, - [SMALL_STATE(1552)] = 54190, - [SMALL_STATE(1553)] = 54213, - [SMALL_STATE(1554)] = 54232, - [SMALL_STATE(1555)] = 54259, - [SMALL_STATE(1556)] = 54288, - [SMALL_STATE(1557)] = 54315, - [SMALL_STATE(1558)] = 54338, - [SMALL_STATE(1559)] = 54365, - [SMALL_STATE(1560)] = 54392, - [SMALL_STATE(1561)] = 54419, - [SMALL_STATE(1562)] = 54438, - [SMALL_STATE(1563)] = 54465, - [SMALL_STATE(1564)] = 54494, - [SMALL_STATE(1565)] = 54513, - [SMALL_STATE(1566)] = 54537, - [SMALL_STATE(1567)] = 54559, - [SMALL_STATE(1568)] = 54575, - [SMALL_STATE(1569)] = 54589, - [SMALL_STATE(1570)] = 54605, - [SMALL_STATE(1571)] = 54619, - [SMALL_STATE(1572)] = 54645, - [SMALL_STATE(1573)] = 54659, - [SMALL_STATE(1574)] = 54675, - [SMALL_STATE(1575)] = 54699, - [SMALL_STATE(1576)] = 54713, - [SMALL_STATE(1577)] = 54739, - [SMALL_STATE(1578)] = 54755, - [SMALL_STATE(1579)] = 54781, - [SMALL_STATE(1580)] = 54807, - [SMALL_STATE(1581)] = 54833, - [SMALL_STATE(1582)] = 54859, - [SMALL_STATE(1583)] = 54885, - [SMALL_STATE(1584)] = 54901, - [SMALL_STATE(1585)] = 54927, - [SMALL_STATE(1586)] = 54943, - [SMALL_STATE(1587)] = 54959, - [SMALL_STATE(1588)] = 54985, - [SMALL_STATE(1589)] = 55011, - [SMALL_STATE(1590)] = 55035, - [SMALL_STATE(1591)] = 55061, - [SMALL_STATE(1592)] = 55075, - [SMALL_STATE(1593)] = 55101, - [SMALL_STATE(1594)] = 55115, - [SMALL_STATE(1595)] = 55141, - [SMALL_STATE(1596)] = 55155, - [SMALL_STATE(1597)] = 55175, - [SMALL_STATE(1598)] = 55201, - [SMALL_STATE(1599)] = 55227, - [SMALL_STATE(1600)] = 55253, - [SMALL_STATE(1601)] = 55269, - [SMALL_STATE(1602)] = 55295, - [SMALL_STATE(1603)] = 55321, - [SMALL_STATE(1604)] = 55347, - [SMALL_STATE(1605)] = 55371, - [SMALL_STATE(1606)] = 55397, - [SMALL_STATE(1607)] = 55419, - [SMALL_STATE(1608)] = 55443, - [SMALL_STATE(1609)] = 55469, - [SMALL_STATE(1610)] = 55495, - [SMALL_STATE(1611)] = 55521, - [SMALL_STATE(1612)] = 55547, - [SMALL_STATE(1613)] = 55570, - [SMALL_STATE(1614)] = 55593, - [SMALL_STATE(1615)] = 55616, - [SMALL_STATE(1616)] = 55631, - [SMALL_STATE(1617)] = 55654, - [SMALL_STATE(1618)] = 55677, - [SMALL_STATE(1619)] = 55700, - [SMALL_STATE(1620)] = 55723, - [SMALL_STATE(1621)] = 55746, - [SMALL_STATE(1622)] = 55769, - [SMALL_STATE(1623)] = 55792, - [SMALL_STATE(1624)] = 55815, - [SMALL_STATE(1625)] = 55838, - [SMALL_STATE(1626)] = 55861, - [SMALL_STATE(1627)] = 55884, - [SMALL_STATE(1628)] = 55907, - [SMALL_STATE(1629)] = 55924, - [SMALL_STATE(1630)] = 55947, - [SMALL_STATE(1631)] = 55970, - [SMALL_STATE(1632)] = 55993, - [SMALL_STATE(1633)] = 56016, - [SMALL_STATE(1634)] = 56039, - [SMALL_STATE(1635)] = 56060, - [SMALL_STATE(1636)] = 56083, - [SMALL_STATE(1637)] = 56106, - [SMALL_STATE(1638)] = 56123, - [SMALL_STATE(1639)] = 56146, - [SMALL_STATE(1640)] = 56163, - [SMALL_STATE(1641)] = 56186, - [SMALL_STATE(1642)] = 56209, - [SMALL_STATE(1643)] = 56232, - [SMALL_STATE(1644)] = 56249, - [SMALL_STATE(1645)] = 56272, - [SMALL_STATE(1646)] = 56295, - [SMALL_STATE(1647)] = 56318, - [SMALL_STATE(1648)] = 56341, - [SMALL_STATE(1649)] = 56364, - [SMALL_STATE(1650)] = 56387, - [SMALL_STATE(1651)] = 56404, - [SMALL_STATE(1652)] = 56421, - [SMALL_STATE(1653)] = 56444, - [SMALL_STATE(1654)] = 56465, - [SMALL_STATE(1655)] = 56488, - [SMALL_STATE(1656)] = 56511, - [SMALL_STATE(1657)] = 56534, - [SMALL_STATE(1658)] = 56557, - [SMALL_STATE(1659)] = 56576, - [SMALL_STATE(1660)] = 56593, - [SMALL_STATE(1661)] = 56616, - [SMALL_STATE(1662)] = 56639, - [SMALL_STATE(1663)] = 56662, - [SMALL_STATE(1664)] = 56685, - [SMALL_STATE(1665)] = 56708, - [SMALL_STATE(1666)] = 56727, - [SMALL_STATE(1667)] = 56744, - [SMALL_STATE(1668)] = 56767, - [SMALL_STATE(1669)] = 56790, - [SMALL_STATE(1670)] = 56813, - [SMALL_STATE(1671)] = 56836, - [SMALL_STATE(1672)] = 56859, - [SMALL_STATE(1673)] = 56882, - [SMALL_STATE(1674)] = 56899, - [SMALL_STATE(1675)] = 56922, - [SMALL_STATE(1676)] = 56945, - [SMALL_STATE(1677)] = 56968, - [SMALL_STATE(1678)] = 56991, - [SMALL_STATE(1679)] = 57014, - [SMALL_STATE(1680)] = 57031, - [SMALL_STATE(1681)] = 57054, - [SMALL_STATE(1682)] = 57071, - [SMALL_STATE(1683)] = 57088, - [SMALL_STATE(1684)] = 57111, - [SMALL_STATE(1685)] = 57134, - [SMALL_STATE(1686)] = 57157, - [SMALL_STATE(1687)] = 57174, - [SMALL_STATE(1688)] = 57197, - [SMALL_STATE(1689)] = 57220, - [SMALL_STATE(1690)] = 57243, - [SMALL_STATE(1691)] = 57266, - [SMALL_STATE(1692)] = 57281, - [SMALL_STATE(1693)] = 57304, - [SMALL_STATE(1694)] = 57327, - [SMALL_STATE(1695)] = 57350, - [SMALL_STATE(1696)] = 57371, - [SMALL_STATE(1697)] = 57388, - [SMALL_STATE(1698)] = 57411, - [SMALL_STATE(1699)] = 57434, - [SMALL_STATE(1700)] = 57453, - [SMALL_STATE(1701)] = 57470, - [SMALL_STATE(1702)] = 57493, - [SMALL_STATE(1703)] = 57516, - [SMALL_STATE(1704)] = 57539, - [SMALL_STATE(1705)] = 57562, - [SMALL_STATE(1706)] = 57574, - [SMALL_STATE(1707)] = 57590, - [SMALL_STATE(1708)] = 57608, - [SMALL_STATE(1709)] = 57626, - [SMALL_STATE(1710)] = 57638, - [SMALL_STATE(1711)] = 57652, - [SMALL_STATE(1712)] = 57672, - [SMALL_STATE(1713)] = 57692, - [SMALL_STATE(1714)] = 57704, - [SMALL_STATE(1715)] = 57716, - [SMALL_STATE(1716)] = 57736, - [SMALL_STATE(1717)] = 57750, - [SMALL_STATE(1718)] = 57768, - [SMALL_STATE(1719)] = 57784, - [SMALL_STATE(1720)] = 57796, - [SMALL_STATE(1721)] = 57812, - [SMALL_STATE(1722)] = 57828, - [SMALL_STATE(1723)] = 57840, - [SMALL_STATE(1724)] = 57858, - [SMALL_STATE(1725)] = 57870, - [SMALL_STATE(1726)] = 57882, - [SMALL_STATE(1727)] = 57894, - [SMALL_STATE(1728)] = 57906, - [SMALL_STATE(1729)] = 57922, - [SMALL_STATE(1730)] = 57934, - [SMALL_STATE(1731)] = 57950, - [SMALL_STATE(1732)] = 57968, - [SMALL_STATE(1733)] = 57980, - [SMALL_STATE(1734)] = 57992, - [SMALL_STATE(1735)] = 58004, - [SMALL_STATE(1736)] = 58024, - [SMALL_STATE(1737)] = 58044, - [SMALL_STATE(1738)] = 58056, - [SMALL_STATE(1739)] = 58072, - [SMALL_STATE(1740)] = 58084, - [SMALL_STATE(1741)] = 58104, - [SMALL_STATE(1742)] = 58116, - [SMALL_STATE(1743)] = 58128, - [SMALL_STATE(1744)] = 58144, - [SMALL_STATE(1745)] = 58164, - [SMALL_STATE(1746)] = 58176, - [SMALL_STATE(1747)] = 58196, - [SMALL_STATE(1748)] = 58210, - [SMALL_STATE(1749)] = 58230, - [SMALL_STATE(1750)] = 58246, - [SMALL_STATE(1751)] = 58262, - [SMALL_STATE(1752)] = 58282, - [SMALL_STATE(1753)] = 58294, - [SMALL_STATE(1754)] = 58306, - [SMALL_STATE(1755)] = 58322, - [SMALL_STATE(1756)] = 58340, - [SMALL_STATE(1757)] = 58356, - [SMALL_STATE(1758)] = 58371, - [SMALL_STATE(1759)] = 58388, - [SMALL_STATE(1760)] = 58405, - [SMALL_STATE(1761)] = 58422, - [SMALL_STATE(1762)] = 58439, - [SMALL_STATE(1763)] = 58454, - [SMALL_STATE(1764)] = 58469, - [SMALL_STATE(1765)] = 58486, - [SMALL_STATE(1766)] = 58503, - [SMALL_STATE(1767)] = 58516, - [SMALL_STATE(1768)] = 58533, - [SMALL_STATE(1769)] = 58550, - [SMALL_STATE(1770)] = 58567, - [SMALL_STATE(1771)] = 58580, - [SMALL_STATE(1772)] = 58597, - [SMALL_STATE(1773)] = 58614, - [SMALL_STATE(1774)] = 58629, - [SMALL_STATE(1775)] = 58644, - [SMALL_STATE(1776)] = 58661, - [SMALL_STATE(1777)] = 58678, - [SMALL_STATE(1778)] = 58695, - [SMALL_STATE(1779)] = 58712, - [SMALL_STATE(1780)] = 58729, - [SMALL_STATE(1781)] = 58744, - [SMALL_STATE(1782)] = 58761, - [SMALL_STATE(1783)] = 58778, - [SMALL_STATE(1784)] = 58795, - [SMALL_STATE(1785)] = 58812, - [SMALL_STATE(1786)] = 58829, - [SMALL_STATE(1787)] = 58846, - [SMALL_STATE(1788)] = 58863, - [SMALL_STATE(1789)] = 58880, - [SMALL_STATE(1790)] = 58897, - [SMALL_STATE(1791)] = 58912, - [SMALL_STATE(1792)] = 58929, - [SMALL_STATE(1793)] = 58946, - [SMALL_STATE(1794)] = 58961, - [SMALL_STATE(1795)] = 58976, - [SMALL_STATE(1796)] = 58993, - [SMALL_STATE(1797)] = 59008, - [SMALL_STATE(1798)] = 59025, - [SMALL_STATE(1799)] = 59042, - [SMALL_STATE(1800)] = 59059, - [SMALL_STATE(1801)] = 59076, - [SMALL_STATE(1802)] = 59091, - [SMALL_STATE(1803)] = 59108, - [SMALL_STATE(1804)] = 59125, - [SMALL_STATE(1805)] = 59138, - [SMALL_STATE(1806)] = 59153, - [SMALL_STATE(1807)] = 59168, - [SMALL_STATE(1808)] = 59185, - [SMALL_STATE(1809)] = 59202, - [SMALL_STATE(1810)] = 59215, - [SMALL_STATE(1811)] = 59232, - [SMALL_STATE(1812)] = 59249, - [SMALL_STATE(1813)] = 59266, - [SMALL_STATE(1814)] = 59283, - [SMALL_STATE(1815)] = 59300, - [SMALL_STATE(1816)] = 59317, - [SMALL_STATE(1817)] = 59334, - [SMALL_STATE(1818)] = 59351, - [SMALL_STATE(1819)] = 59368, - [SMALL_STATE(1820)] = 59381, - [SMALL_STATE(1821)] = 59394, - [SMALL_STATE(1822)] = 59411, - [SMALL_STATE(1823)] = 59428, - [SMALL_STATE(1824)] = 59445, - [SMALL_STATE(1825)] = 59460, - [SMALL_STATE(1826)] = 59475, - [SMALL_STATE(1827)] = 59490, - [SMALL_STATE(1828)] = 59507, - [SMALL_STATE(1829)] = 59524, - [SMALL_STATE(1830)] = 59539, - [SMALL_STATE(1831)] = 59556, - [SMALL_STATE(1832)] = 59573, - [SMALL_STATE(1833)] = 59588, - [SMALL_STATE(1834)] = 59605, - [SMALL_STATE(1835)] = 59622, - [SMALL_STATE(1836)] = 59639, - [SMALL_STATE(1837)] = 59654, - [SMALL_STATE(1838)] = 59671, - [SMALL_STATE(1839)] = 59686, - [SMALL_STATE(1840)] = 59701, - [SMALL_STATE(1841)] = 59718, - [SMALL_STATE(1842)] = 59735, - [SMALL_STATE(1843)] = 59748, - [SMALL_STATE(1844)] = 59763, - [SMALL_STATE(1845)] = 59780, - [SMALL_STATE(1846)] = 59797, - [SMALL_STATE(1847)] = 59810, - [SMALL_STATE(1848)] = 59825, - [SMALL_STATE(1849)] = 59842, - [SMALL_STATE(1850)] = 59857, - [SMALL_STATE(1851)] = 59874, - [SMALL_STATE(1852)] = 59891, - [SMALL_STATE(1853)] = 59908, - [SMALL_STATE(1854)] = 59923, - [SMALL_STATE(1855)] = 59940, - [SMALL_STATE(1856)] = 59954, - [SMALL_STATE(1857)] = 59968, - [SMALL_STATE(1858)] = 59982, - [SMALL_STATE(1859)] = 59996, - [SMALL_STATE(1860)] = 60006, - [SMALL_STATE(1861)] = 60016, - [SMALL_STATE(1862)] = 60030, - [SMALL_STATE(1863)] = 60044, - [SMALL_STATE(1864)] = 60058, - [SMALL_STATE(1865)] = 60068, - [SMALL_STATE(1866)] = 60082, - [SMALL_STATE(1867)] = 60094, - [SMALL_STATE(1868)] = 60106, - [SMALL_STATE(1869)] = 60120, - [SMALL_STATE(1870)] = 60134, - [SMALL_STATE(1871)] = 60146, - [SMALL_STATE(1872)] = 60156, - [SMALL_STATE(1873)] = 60166, - [SMALL_STATE(1874)] = 60180, - [SMALL_STATE(1875)] = 60194, - [SMALL_STATE(1876)] = 60208, - [SMALL_STATE(1877)] = 60222, - [SMALL_STATE(1878)] = 60236, - [SMALL_STATE(1879)] = 60250, - [SMALL_STATE(1880)] = 60262, - [SMALL_STATE(1881)] = 60276, - [SMALL_STATE(1882)] = 60290, - [SMALL_STATE(1883)] = 60304, - [SMALL_STATE(1884)] = 60316, - [SMALL_STATE(1885)] = 60330, - [SMALL_STATE(1886)] = 60344, - [SMALL_STATE(1887)] = 60358, - [SMALL_STATE(1888)] = 60372, - [SMALL_STATE(1889)] = 60386, - [SMALL_STATE(1890)] = 60398, - [SMALL_STATE(1891)] = 60410, - [SMALL_STATE(1892)] = 60424, - [SMALL_STATE(1893)] = 60438, - [SMALL_STATE(1894)] = 60450, - [SMALL_STATE(1895)] = 60464, - [SMALL_STATE(1896)] = 60478, - [SMALL_STATE(1897)] = 60492, - [SMALL_STATE(1898)] = 60506, - [SMALL_STATE(1899)] = 60520, - [SMALL_STATE(1900)] = 60530, - [SMALL_STATE(1901)] = 60544, - [SMALL_STATE(1902)] = 60558, - [SMALL_STATE(1903)] = 60572, - [SMALL_STATE(1904)] = 60586, - [SMALL_STATE(1905)] = 60600, - [SMALL_STATE(1906)] = 60614, - [SMALL_STATE(1907)] = 60628, - [SMALL_STATE(1908)] = 60642, - [SMALL_STATE(1909)] = 60652, - [SMALL_STATE(1910)] = 60666, - [SMALL_STATE(1911)] = 60680, - [SMALL_STATE(1912)] = 60694, - [SMALL_STATE(1913)] = 60708, - [SMALL_STATE(1914)] = 60722, - [SMALL_STATE(1915)] = 60734, - [SMALL_STATE(1916)] = 60746, - [SMALL_STATE(1917)] = 60760, - [SMALL_STATE(1918)] = 60772, - [SMALL_STATE(1919)] = 60786, - [SMALL_STATE(1920)] = 60800, - [SMALL_STATE(1921)] = 60814, - [SMALL_STATE(1922)] = 60828, - [SMALL_STATE(1923)] = 60840, - [SMALL_STATE(1924)] = 60854, - [SMALL_STATE(1925)] = 60868, - [SMALL_STATE(1926)] = 60882, - [SMALL_STATE(1927)] = 60896, - [SMALL_STATE(1928)] = 60910, - [SMALL_STATE(1929)] = 60922, - [SMALL_STATE(1930)] = 60936, - [SMALL_STATE(1931)] = 60950, - [SMALL_STATE(1932)] = 60964, - [SMALL_STATE(1933)] = 60978, - [SMALL_STATE(1934)] = 60988, - [SMALL_STATE(1935)] = 61000, - [SMALL_STATE(1936)] = 61012, - [SMALL_STATE(1937)] = 61024, - [SMALL_STATE(1938)] = 61038, - [SMALL_STATE(1939)] = 61052, - [SMALL_STATE(1940)] = 61064, - [SMALL_STATE(1941)] = 61076, - [SMALL_STATE(1942)] = 61090, - [SMALL_STATE(1943)] = 61104, - [SMALL_STATE(1944)] = 61118, - [SMALL_STATE(1945)] = 61132, - [SMALL_STATE(1946)] = 61144, - [SMALL_STATE(1947)] = 61158, - [SMALL_STATE(1948)] = 61170, - [SMALL_STATE(1949)] = 61184, - [SMALL_STATE(1950)] = 61198, - [SMALL_STATE(1951)] = 61212, - [SMALL_STATE(1952)] = 61226, - [SMALL_STATE(1953)] = 61240, - [SMALL_STATE(1954)] = 61250, - [SMALL_STATE(1955)] = 61264, - [SMALL_STATE(1956)] = 61278, - [SMALL_STATE(1957)] = 61292, - [SMALL_STATE(1958)] = 61306, - [SMALL_STATE(1959)] = 61320, - [SMALL_STATE(1960)] = 61332, - [SMALL_STATE(1961)] = 61346, - [SMALL_STATE(1962)] = 61360, - [SMALL_STATE(1963)] = 61370, - [SMALL_STATE(1964)] = 61384, - [SMALL_STATE(1965)] = 61394, - [SMALL_STATE(1966)] = 61406, - [SMALL_STATE(1967)] = 61420, - [SMALL_STATE(1968)] = 61434, - [SMALL_STATE(1969)] = 61444, - [SMALL_STATE(1970)] = 61458, - [SMALL_STATE(1971)] = 61468, - [SMALL_STATE(1972)] = 61478, - [SMALL_STATE(1973)] = 61492, - [SMALL_STATE(1974)] = 61506, - [SMALL_STATE(1975)] = 61520, - [SMALL_STATE(1976)] = 61532, - [SMALL_STATE(1977)] = 61546, - [SMALL_STATE(1978)] = 61560, - [SMALL_STATE(1979)] = 61574, - [SMALL_STATE(1980)] = 61588, - [SMALL_STATE(1981)] = 61602, - [SMALL_STATE(1982)] = 61616, - [SMALL_STATE(1983)] = 61630, - [SMALL_STATE(1984)] = 61644, - [SMALL_STATE(1985)] = 61658, - [SMALL_STATE(1986)] = 61672, - [SMALL_STATE(1987)] = 61686, - [SMALL_STATE(1988)] = 61700, - [SMALL_STATE(1989)] = 61712, - [SMALL_STATE(1990)] = 61726, - [SMALL_STATE(1991)] = 61740, - [SMALL_STATE(1992)] = 61754, - [SMALL_STATE(1993)] = 61768, - [SMALL_STATE(1994)] = 61782, - [SMALL_STATE(1995)] = 61796, - [SMALL_STATE(1996)] = 61810, - [SMALL_STATE(1997)] = 61824, - [SMALL_STATE(1998)] = 61838, - [SMALL_STATE(1999)] = 61852, - [SMALL_STATE(2000)] = 61866, - [SMALL_STATE(2001)] = 61880, - [SMALL_STATE(2002)] = 61892, - [SMALL_STATE(2003)] = 61906, - [SMALL_STATE(2004)] = 61920, - [SMALL_STATE(2005)] = 61930, - [SMALL_STATE(2006)] = 61944, - [SMALL_STATE(2007)] = 61958, - [SMALL_STATE(2008)] = 61972, - [SMALL_STATE(2009)] = 61986, - [SMALL_STATE(2010)] = 62000, - [SMALL_STATE(2011)] = 62014, - [SMALL_STATE(2012)] = 62026, - [SMALL_STATE(2013)] = 62040, - [SMALL_STATE(2014)] = 62054, - [SMALL_STATE(2015)] = 62068, - [SMALL_STATE(2016)] = 62082, - [SMALL_STATE(2017)] = 62096, - [SMALL_STATE(2018)] = 62110, - [SMALL_STATE(2019)] = 62124, - [SMALL_STATE(2020)] = 62138, - [SMALL_STATE(2021)] = 62152, - [SMALL_STATE(2022)] = 62166, - [SMALL_STATE(2023)] = 62180, - [SMALL_STATE(2024)] = 62194, - [SMALL_STATE(2025)] = 62208, - [SMALL_STATE(2026)] = 62222, - [SMALL_STATE(2027)] = 62236, - [SMALL_STATE(2028)] = 62250, - [SMALL_STATE(2029)] = 62264, - [SMALL_STATE(2030)] = 62278, - [SMALL_STATE(2031)] = 62292, - [SMALL_STATE(2032)] = 62306, - [SMALL_STATE(2033)] = 62320, - [SMALL_STATE(2034)] = 62334, - [SMALL_STATE(2035)] = 62348, - [SMALL_STATE(2036)] = 62362, - [SMALL_STATE(2037)] = 62376, - [SMALL_STATE(2038)] = 62390, - [SMALL_STATE(2039)] = 62402, - [SMALL_STATE(2040)] = 62412, - [SMALL_STATE(2041)] = 62426, - [SMALL_STATE(2042)] = 62438, - [SMALL_STATE(2043)] = 62452, - [SMALL_STATE(2044)] = 62466, - [SMALL_STATE(2045)] = 62476, - [SMALL_STATE(2046)] = 62488, - [SMALL_STATE(2047)] = 62502, - [SMALL_STATE(2048)] = 62516, - [SMALL_STATE(2049)] = 62528, - [SMALL_STATE(2050)] = 62538, - [SMALL_STATE(2051)] = 62552, - [SMALL_STATE(2052)] = 62564, - [SMALL_STATE(2053)] = 62578, - [SMALL_STATE(2054)] = 62592, - [SMALL_STATE(2055)] = 62602, - [SMALL_STATE(2056)] = 62616, - [SMALL_STATE(2057)] = 62626, - [SMALL_STATE(2058)] = 62638, - [SMALL_STATE(2059)] = 62652, - [SMALL_STATE(2060)] = 62662, - [SMALL_STATE(2061)] = 62672, - [SMALL_STATE(2062)] = 62686, - [SMALL_STATE(2063)] = 62700, - [SMALL_STATE(2064)] = 62714, - [SMALL_STATE(2065)] = 62728, - [SMALL_STATE(2066)] = 62742, - [SMALL_STATE(2067)] = 62756, - [SMALL_STATE(2068)] = 62770, - [SMALL_STATE(2069)] = 62784, - [SMALL_STATE(2070)] = 62798, - [SMALL_STATE(2071)] = 62812, - [SMALL_STATE(2072)] = 62822, - [SMALL_STATE(2073)] = 62836, - [SMALL_STATE(2074)] = 62850, - [SMALL_STATE(2075)] = 62860, - [SMALL_STATE(2076)] = 62874, - [SMALL_STATE(2077)] = 62888, - [SMALL_STATE(2078)] = 62902, - [SMALL_STATE(2079)] = 62912, - [SMALL_STATE(2080)] = 62924, - [SMALL_STATE(2081)] = 62938, - [SMALL_STATE(2082)] = 62952, - [SMALL_STATE(2083)] = 62966, - [SMALL_STATE(2084)] = 62980, - [SMALL_STATE(2085)] = 62994, - [SMALL_STATE(2086)] = 63008, - [SMALL_STATE(2087)] = 63022, - [SMALL_STATE(2088)] = 63036, - [SMALL_STATE(2089)] = 63048, - [SMALL_STATE(2090)] = 63062, - [SMALL_STATE(2091)] = 63076, - [SMALL_STATE(2092)] = 63090, - [SMALL_STATE(2093)] = 63104, - [SMALL_STATE(2094)] = 63118, - [SMALL_STATE(2095)] = 63132, - [SMALL_STATE(2096)] = 63146, - [SMALL_STATE(2097)] = 63160, - [SMALL_STATE(2098)] = 63174, - [SMALL_STATE(2099)] = 63188, - [SMALL_STATE(2100)] = 63200, - [SMALL_STATE(2101)] = 63214, - [SMALL_STATE(2102)] = 63228, - [SMALL_STATE(2103)] = 63242, - [SMALL_STATE(2104)] = 63256, - [SMALL_STATE(2105)] = 63270, - [SMALL_STATE(2106)] = 63284, - [SMALL_STATE(2107)] = 63298, - [SMALL_STATE(2108)] = 63309, - [SMALL_STATE(2109)] = 63320, - [SMALL_STATE(2110)] = 63331, - [SMALL_STATE(2111)] = 63342, - [SMALL_STATE(2112)] = 63353, - [SMALL_STATE(2113)] = 63364, - [SMALL_STATE(2114)] = 63375, - [SMALL_STATE(2115)] = 63386, - [SMALL_STATE(2116)] = 63397, - [SMALL_STATE(2117)] = 63408, - [SMALL_STATE(2118)] = 63419, - [SMALL_STATE(2119)] = 63430, - [SMALL_STATE(2120)] = 63441, - [SMALL_STATE(2121)] = 63452, - [SMALL_STATE(2122)] = 63463, - [SMALL_STATE(2123)] = 63474, - [SMALL_STATE(2124)] = 63483, - [SMALL_STATE(2125)] = 63494, - [SMALL_STATE(2126)] = 63505, - [SMALL_STATE(2127)] = 63516, - [SMALL_STATE(2128)] = 63527, - [SMALL_STATE(2129)] = 63538, - [SMALL_STATE(2130)] = 63549, - [SMALL_STATE(2131)] = 63560, - [SMALL_STATE(2132)] = 63571, - [SMALL_STATE(2133)] = 63582, - [SMALL_STATE(2134)] = 63593, - [SMALL_STATE(2135)] = 63604, - [SMALL_STATE(2136)] = 63615, - [SMALL_STATE(2137)] = 63626, - [SMALL_STATE(2138)] = 63637, - [SMALL_STATE(2139)] = 63646, - [SMALL_STATE(2140)] = 63657, - [SMALL_STATE(2141)] = 63668, - [SMALL_STATE(2142)] = 63679, - [SMALL_STATE(2143)] = 63690, - [SMALL_STATE(2144)] = 63701, - [SMALL_STATE(2145)] = 63712, - [SMALL_STATE(2146)] = 63723, - [SMALL_STATE(2147)] = 63734, - [SMALL_STATE(2148)] = 63745, - [SMALL_STATE(2149)] = 63756, - [SMALL_STATE(2150)] = 63767, - [SMALL_STATE(2151)] = 63778, - [SMALL_STATE(2152)] = 63789, - [SMALL_STATE(2153)] = 63800, - [SMALL_STATE(2154)] = 63811, - [SMALL_STATE(2155)] = 63822, - [SMALL_STATE(2156)] = 63831, - [SMALL_STATE(2157)] = 63842, - [SMALL_STATE(2158)] = 63853, - [SMALL_STATE(2159)] = 63864, - [SMALL_STATE(2160)] = 63875, - [SMALL_STATE(2161)] = 63886, - [SMALL_STATE(2162)] = 63897, - [SMALL_STATE(2163)] = 63908, - [SMALL_STATE(2164)] = 63919, - [SMALL_STATE(2165)] = 63928, - [SMALL_STATE(2166)] = 63939, - [SMALL_STATE(2167)] = 63950, - [SMALL_STATE(2168)] = 63961, - [SMALL_STATE(2169)] = 63972, - [SMALL_STATE(2170)] = 63983, - [SMALL_STATE(2171)] = 63994, - [SMALL_STATE(2172)] = 64003, - [SMALL_STATE(2173)] = 64014, - [SMALL_STATE(2174)] = 64025, - [SMALL_STATE(2175)] = 64036, - [SMALL_STATE(2176)] = 64047, - [SMALL_STATE(2177)] = 64058, - [SMALL_STATE(2178)] = 64069, - [SMALL_STATE(2179)] = 64080, - [SMALL_STATE(2180)] = 64091, - [SMALL_STATE(2181)] = 64102, - [SMALL_STATE(2182)] = 64113, - [SMALL_STATE(2183)] = 64124, - [SMALL_STATE(2184)] = 64135, - [SMALL_STATE(2185)] = 64146, - [SMALL_STATE(2186)] = 64157, - [SMALL_STATE(2187)] = 64168, - [SMALL_STATE(2188)] = 64179, - [SMALL_STATE(2189)] = 64190, - [SMALL_STATE(2190)] = 64201, - [SMALL_STATE(2191)] = 64212, - [SMALL_STATE(2192)] = 64223, - [SMALL_STATE(2193)] = 64234, - [SMALL_STATE(2194)] = 64245, - [SMALL_STATE(2195)] = 64256, - [SMALL_STATE(2196)] = 64267, - [SMALL_STATE(2197)] = 64278, - [SMALL_STATE(2198)] = 64289, - [SMALL_STATE(2199)] = 64300, - [SMALL_STATE(2200)] = 64311, - [SMALL_STATE(2201)] = 64322, - [SMALL_STATE(2202)] = 64333, - [SMALL_STATE(2203)] = 64344, - [SMALL_STATE(2204)] = 64355, - [SMALL_STATE(2205)] = 64366, - [SMALL_STATE(2206)] = 64377, - [SMALL_STATE(2207)] = 64388, - [SMALL_STATE(2208)] = 64397, - [SMALL_STATE(2209)] = 64406, - [SMALL_STATE(2210)] = 64415, - [SMALL_STATE(2211)] = 64426, - [SMALL_STATE(2212)] = 64437, - [SMALL_STATE(2213)] = 64448, - [SMALL_STATE(2214)] = 64459, - [SMALL_STATE(2215)] = 64468, - [SMALL_STATE(2216)] = 64479, - [SMALL_STATE(2217)] = 64490, - [SMALL_STATE(2218)] = 64501, - [SMALL_STATE(2219)] = 64512, - [SMALL_STATE(2220)] = 64523, - [SMALL_STATE(2221)] = 64534, - [SMALL_STATE(2222)] = 64545, - [SMALL_STATE(2223)] = 64556, - [SMALL_STATE(2224)] = 64567, - [SMALL_STATE(2225)] = 64578, - [SMALL_STATE(2226)] = 64589, - [SMALL_STATE(2227)] = 64600, - [SMALL_STATE(2228)] = 64611, - [SMALL_STATE(2229)] = 64622, - [SMALL_STATE(2230)] = 64631, - [SMALL_STATE(2231)] = 64642, - [SMALL_STATE(2232)] = 64653, - [SMALL_STATE(2233)] = 64664, - [SMALL_STATE(2234)] = 64675, - [SMALL_STATE(2235)] = 64686, - [SMALL_STATE(2236)] = 64697, - [SMALL_STATE(2237)] = 64708, - [SMALL_STATE(2238)] = 64719, - [SMALL_STATE(2239)] = 64728, - [SMALL_STATE(2240)] = 64737, - [SMALL_STATE(2241)] = 64748, - [SMALL_STATE(2242)] = 64759, - [SMALL_STATE(2243)] = 64770, - [SMALL_STATE(2244)] = 64781, - [SMALL_STATE(2245)] = 64792, - [SMALL_STATE(2246)] = 64803, - [SMALL_STATE(2247)] = 64814, - [SMALL_STATE(2248)] = 64825, - [SMALL_STATE(2249)] = 64834, - [SMALL_STATE(2250)] = 64845, - [SMALL_STATE(2251)] = 64856, - [SMALL_STATE(2252)] = 64867, - [SMALL_STATE(2253)] = 64878, - [SMALL_STATE(2254)] = 64889, - [SMALL_STATE(2255)] = 64898, - [SMALL_STATE(2256)] = 64909, - [SMALL_STATE(2257)] = 64920, - [SMALL_STATE(2258)] = 64931, - [SMALL_STATE(2259)] = 64942, - [SMALL_STATE(2260)] = 64953, - [SMALL_STATE(2261)] = 64962, - [SMALL_STATE(2262)] = 64973, - [SMALL_STATE(2263)] = 64982, - [SMALL_STATE(2264)] = 64991, - [SMALL_STATE(2265)] = 65000, - [SMALL_STATE(2266)] = 65009, - [SMALL_STATE(2267)] = 65020, - [SMALL_STATE(2268)] = 65031, - [SMALL_STATE(2269)] = 65042, - [SMALL_STATE(2270)] = 65053, - [SMALL_STATE(2271)] = 65064, - [SMALL_STATE(2272)] = 65073, - [SMALL_STATE(2273)] = 65084, - [SMALL_STATE(2274)] = 65095, - [SMALL_STATE(2275)] = 65104, - [SMALL_STATE(2276)] = 65115, - [SMALL_STATE(2277)] = 65126, - [SMALL_STATE(2278)] = 65137, - [SMALL_STATE(2279)] = 65148, - [SMALL_STATE(2280)] = 65159, - [SMALL_STATE(2281)] = 65170, - [SMALL_STATE(2282)] = 65181, - [SMALL_STATE(2283)] = 65192, - [SMALL_STATE(2284)] = 65203, - [SMALL_STATE(2285)] = 65212, - [SMALL_STATE(2286)] = 65223, - [SMALL_STATE(2287)] = 65232, - [SMALL_STATE(2288)] = 65241, - [SMALL_STATE(2289)] = 65252, - [SMALL_STATE(2290)] = 65263, - [SMALL_STATE(2291)] = 65274, - [SMALL_STATE(2292)] = 65285, - [SMALL_STATE(2293)] = 65296, - [SMALL_STATE(2294)] = 65307, - [SMALL_STATE(2295)] = 65318, - [SMALL_STATE(2296)] = 65329, - [SMALL_STATE(2297)] = 65340, - [SMALL_STATE(2298)] = 65351, - [SMALL_STATE(2299)] = 65362, - [SMALL_STATE(2300)] = 65373, - [SMALL_STATE(2301)] = 65384, - [SMALL_STATE(2302)] = 65395, - [SMALL_STATE(2303)] = 65406, - [SMALL_STATE(2304)] = 65415, - [SMALL_STATE(2305)] = 65424, - [SMALL_STATE(2306)] = 65435, - [SMALL_STATE(2307)] = 65446, - [SMALL_STATE(2308)] = 65457, - [SMALL_STATE(2309)] = 65468, - [SMALL_STATE(2310)] = 65479, - [SMALL_STATE(2311)] = 65490, - [SMALL_STATE(2312)] = 65501, - [SMALL_STATE(2313)] = 65512, - [SMALL_STATE(2314)] = 65521, - [SMALL_STATE(2315)] = 65529, - [SMALL_STATE(2316)] = 65537, - [SMALL_STATE(2317)] = 65545, - [SMALL_STATE(2318)] = 65553, - [SMALL_STATE(2319)] = 65561, - [SMALL_STATE(2320)] = 65569, - [SMALL_STATE(2321)] = 65577, - [SMALL_STATE(2322)] = 65585, - [SMALL_STATE(2323)] = 65593, - [SMALL_STATE(2324)] = 65601, - [SMALL_STATE(2325)] = 65609, - [SMALL_STATE(2326)] = 65617, - [SMALL_STATE(2327)] = 65625, - [SMALL_STATE(2328)] = 65633, - [SMALL_STATE(2329)] = 65641, - [SMALL_STATE(2330)] = 65649, - [SMALL_STATE(2331)] = 65657, - [SMALL_STATE(2332)] = 65665, - [SMALL_STATE(2333)] = 65673, - [SMALL_STATE(2334)] = 65681, - [SMALL_STATE(2335)] = 65689, - [SMALL_STATE(2336)] = 65697, - [SMALL_STATE(2337)] = 65705, - [SMALL_STATE(2338)] = 65713, - [SMALL_STATE(2339)] = 65721, - [SMALL_STATE(2340)] = 65729, - [SMALL_STATE(2341)] = 65737, - [SMALL_STATE(2342)] = 65745, - [SMALL_STATE(2343)] = 65753, - [SMALL_STATE(2344)] = 65761, - [SMALL_STATE(2345)] = 65769, - [SMALL_STATE(2346)] = 65777, - [SMALL_STATE(2347)] = 65785, - [SMALL_STATE(2348)] = 65793, - [SMALL_STATE(2349)] = 65801, - [SMALL_STATE(2350)] = 65809, - [SMALL_STATE(2351)] = 65817, - [SMALL_STATE(2352)] = 65825, - [SMALL_STATE(2353)] = 65833, - [SMALL_STATE(2354)] = 65841, - [SMALL_STATE(2355)] = 65849, - [SMALL_STATE(2356)] = 65857, - [SMALL_STATE(2357)] = 65865, - [SMALL_STATE(2358)] = 65873, - [SMALL_STATE(2359)] = 65881, - [SMALL_STATE(2360)] = 65889, - [SMALL_STATE(2361)] = 65897, - [SMALL_STATE(2362)] = 65905, - [SMALL_STATE(2363)] = 65913, - [SMALL_STATE(2364)] = 65921, - [SMALL_STATE(2365)] = 65929, - [SMALL_STATE(2366)] = 65937, - [SMALL_STATE(2367)] = 65945, - [SMALL_STATE(2368)] = 65953, - [SMALL_STATE(2369)] = 65961, - [SMALL_STATE(2370)] = 65969, - [SMALL_STATE(2371)] = 65977, - [SMALL_STATE(2372)] = 65985, - [SMALL_STATE(2373)] = 65993, - [SMALL_STATE(2374)] = 66001, - [SMALL_STATE(2375)] = 66009, - [SMALL_STATE(2376)] = 66017, - [SMALL_STATE(2377)] = 66025, - [SMALL_STATE(2378)] = 66033, - [SMALL_STATE(2379)] = 66041, - [SMALL_STATE(2380)] = 66049, - [SMALL_STATE(2381)] = 66057, - [SMALL_STATE(2382)] = 66065, - [SMALL_STATE(2383)] = 66073, - [SMALL_STATE(2384)] = 66081, - [SMALL_STATE(2385)] = 66089, - [SMALL_STATE(2386)] = 66097, - [SMALL_STATE(2387)] = 66105, - [SMALL_STATE(2388)] = 66113, - [SMALL_STATE(2389)] = 66121, - [SMALL_STATE(2390)] = 66129, - [SMALL_STATE(2391)] = 66137, - [SMALL_STATE(2392)] = 66145, - [SMALL_STATE(2393)] = 66153, - [SMALL_STATE(2394)] = 66161, - [SMALL_STATE(2395)] = 66169, - [SMALL_STATE(2396)] = 66177, - [SMALL_STATE(2397)] = 66185, - [SMALL_STATE(2398)] = 66193, - [SMALL_STATE(2399)] = 66201, - [SMALL_STATE(2400)] = 66209, - [SMALL_STATE(2401)] = 66217, - [SMALL_STATE(2402)] = 66225, - [SMALL_STATE(2403)] = 66233, - [SMALL_STATE(2404)] = 66241, - [SMALL_STATE(2405)] = 66249, - [SMALL_STATE(2406)] = 66257, - [SMALL_STATE(2407)] = 66265, - [SMALL_STATE(2408)] = 66273, - [SMALL_STATE(2409)] = 66281, - [SMALL_STATE(2410)] = 66289, - [SMALL_STATE(2411)] = 66297, - [SMALL_STATE(2412)] = 66305, - [SMALL_STATE(2413)] = 66313, - [SMALL_STATE(2414)] = 66321, - [SMALL_STATE(2415)] = 66329, - [SMALL_STATE(2416)] = 66337, - [SMALL_STATE(2417)] = 66345, - [SMALL_STATE(2418)] = 66353, - [SMALL_STATE(2419)] = 66361, - [SMALL_STATE(2420)] = 66369, - [SMALL_STATE(2421)] = 66377, - [SMALL_STATE(2422)] = 66385, - [SMALL_STATE(2423)] = 66393, - [SMALL_STATE(2424)] = 66401, - [SMALL_STATE(2425)] = 66409, - [SMALL_STATE(2426)] = 66417, - [SMALL_STATE(2427)] = 66425, - [SMALL_STATE(2428)] = 66433, - [SMALL_STATE(2429)] = 66441, - [SMALL_STATE(2430)] = 66449, - [SMALL_STATE(2431)] = 66457, - [SMALL_STATE(2432)] = 66465, - [SMALL_STATE(2433)] = 66473, - [SMALL_STATE(2434)] = 66481, - [SMALL_STATE(2435)] = 66489, - [SMALL_STATE(2436)] = 66497, - [SMALL_STATE(2437)] = 66505, - [SMALL_STATE(2438)] = 66513, - [SMALL_STATE(2439)] = 66521, - [SMALL_STATE(2440)] = 66529, - [SMALL_STATE(2441)] = 66537, - [SMALL_STATE(2442)] = 66545, - [SMALL_STATE(2443)] = 66553, - [SMALL_STATE(2444)] = 66561, - [SMALL_STATE(2445)] = 66569, - [SMALL_STATE(2446)] = 66577, - [SMALL_STATE(2447)] = 66585, - [SMALL_STATE(2448)] = 66593, - [SMALL_STATE(2449)] = 66601, - [SMALL_STATE(2450)] = 66609, - [SMALL_STATE(2451)] = 66617, - [SMALL_STATE(2452)] = 66625, - [SMALL_STATE(2453)] = 66633, - [SMALL_STATE(2454)] = 66641, - [SMALL_STATE(2455)] = 66649, - [SMALL_STATE(2456)] = 66657, - [SMALL_STATE(2457)] = 66665, - [SMALL_STATE(2458)] = 66673, - [SMALL_STATE(2459)] = 66681, - [SMALL_STATE(2460)] = 66689, - [SMALL_STATE(2461)] = 66697, - [SMALL_STATE(2462)] = 66705, - [SMALL_STATE(2463)] = 66713, - [SMALL_STATE(2464)] = 66721, - [SMALL_STATE(2465)] = 66729, - [SMALL_STATE(2466)] = 66737, - [SMALL_STATE(2467)] = 66745, - [SMALL_STATE(2468)] = 66753, - [SMALL_STATE(2469)] = 66761, - [SMALL_STATE(2470)] = 66769, - [SMALL_STATE(2471)] = 66777, - [SMALL_STATE(2472)] = 66785, - [SMALL_STATE(2473)] = 66793, - [SMALL_STATE(2474)] = 66801, - [SMALL_STATE(2475)] = 66809, - [SMALL_STATE(2476)] = 66817, - [SMALL_STATE(2477)] = 66825, - [SMALL_STATE(2478)] = 66833, - [SMALL_STATE(2479)] = 66841, - [SMALL_STATE(2480)] = 66849, - [SMALL_STATE(2481)] = 66857, - [SMALL_STATE(2482)] = 66865, - [SMALL_STATE(2483)] = 66873, - [SMALL_STATE(2484)] = 66881, - [SMALL_STATE(2485)] = 66889, - [SMALL_STATE(2486)] = 66897, - [SMALL_STATE(2487)] = 66905, - [SMALL_STATE(2488)] = 66913, - [SMALL_STATE(2489)] = 66921, - [SMALL_STATE(2490)] = 66929, - [SMALL_STATE(2491)] = 66937, - [SMALL_STATE(2492)] = 66945, - [SMALL_STATE(2493)] = 66953, - [SMALL_STATE(2494)] = 66961, - [SMALL_STATE(2495)] = 66969, - [SMALL_STATE(2496)] = 66977, - [SMALL_STATE(2497)] = 66985, - [SMALL_STATE(2498)] = 66993, - [SMALL_STATE(2499)] = 67001, - [SMALL_STATE(2500)] = 67009, - [SMALL_STATE(2501)] = 67017, - [SMALL_STATE(2502)] = 67025, - [SMALL_STATE(2503)] = 67033, - [SMALL_STATE(2504)] = 67041, - [SMALL_STATE(2505)] = 67049, - [SMALL_STATE(2506)] = 67057, - [SMALL_STATE(2507)] = 67065, - [SMALL_STATE(2508)] = 67073, - [SMALL_STATE(2509)] = 67081, - [SMALL_STATE(2510)] = 67089, - [SMALL_STATE(2511)] = 67097, - [SMALL_STATE(2512)] = 67105, - [SMALL_STATE(2513)] = 67113, - [SMALL_STATE(2514)] = 67121, - [SMALL_STATE(2515)] = 67129, - [SMALL_STATE(2516)] = 67137, - [SMALL_STATE(2517)] = 67145, - [SMALL_STATE(2518)] = 67153, - [SMALL_STATE(2519)] = 67161, - [SMALL_STATE(2520)] = 67169, - [SMALL_STATE(2521)] = 67177, - [SMALL_STATE(2522)] = 67185, - [SMALL_STATE(2523)] = 67193, - [SMALL_STATE(2524)] = 67201, - [SMALL_STATE(2525)] = 67209, - [SMALL_STATE(2526)] = 67217, - [SMALL_STATE(2527)] = 67225, - [SMALL_STATE(2528)] = 67233, - [SMALL_STATE(2529)] = 67241, - [SMALL_STATE(2530)] = 67249, - [SMALL_STATE(2531)] = 67257, - [SMALL_STATE(2532)] = 67265, - [SMALL_STATE(2533)] = 67273, - [SMALL_STATE(2534)] = 67281, - [SMALL_STATE(2535)] = 67289, - [SMALL_STATE(2536)] = 67297, - [SMALL_STATE(2537)] = 67305, - [SMALL_STATE(2538)] = 67313, - [SMALL_STATE(2539)] = 67321, - [SMALL_STATE(2540)] = 67329, - [SMALL_STATE(2541)] = 67337, - [SMALL_STATE(2542)] = 67345, - [SMALL_STATE(2543)] = 67353, - [SMALL_STATE(2544)] = 67361, - [SMALL_STATE(2545)] = 67369, - [SMALL_STATE(2546)] = 67377, - [SMALL_STATE(2547)] = 67385, - [SMALL_STATE(2548)] = 67393, - [SMALL_STATE(2549)] = 67401, - [SMALL_STATE(2550)] = 67409, - [SMALL_STATE(2551)] = 67417, - [SMALL_STATE(2552)] = 67425, - [SMALL_STATE(2553)] = 67433, - [SMALL_STATE(2554)] = 67441, - [SMALL_STATE(2555)] = 67449, - [SMALL_STATE(2556)] = 67457, - [SMALL_STATE(2557)] = 67465, - [SMALL_STATE(2558)] = 67473, - [SMALL_STATE(2559)] = 67481, - [SMALL_STATE(2560)] = 67489, - [SMALL_STATE(2561)] = 67497, - [SMALL_STATE(2562)] = 67505, - [SMALL_STATE(2563)] = 67513, - [SMALL_STATE(2564)] = 67521, + [SMALL_STATE(1506)] = 53036, + [SMALL_STATE(1507)] = 53058, + [SMALL_STATE(1508)] = 53080, + [SMALL_STATE(1509)] = 53102, + [SMALL_STATE(1510)] = 53132, + [SMALL_STATE(1511)] = 53162, + [SMALL_STATE(1512)] = 53184, + [SMALL_STATE(1513)] = 53206, + [SMALL_STATE(1514)] = 53236, + [SMALL_STATE(1515)] = 53262, + [SMALL_STATE(1516)] = 53284, + [SMALL_STATE(1517)] = 53306, + [SMALL_STATE(1518)] = 53328, + [SMALL_STATE(1519)] = 53358, + [SMALL_STATE(1520)] = 53384, + [SMALL_STATE(1521)] = 53416, + [SMALL_STATE(1522)] = 53446, + [SMALL_STATE(1523)] = 53476, + [SMALL_STATE(1524)] = 53498, + [SMALL_STATE(1525)] = 53524, + [SMALL_STATE(1526)] = 53556, + [SMALL_STATE(1527)] = 53578, + [SMALL_STATE(1528)] = 53608, + [SMALL_STATE(1529)] = 53634, + [SMALL_STATE(1530)] = 53656, + [SMALL_STATE(1531)] = 53678, + [SMALL_STATE(1532)] = 53700, + [SMALL_STATE(1533)] = 53726, + [SMALL_STATE(1534)] = 53753, + [SMALL_STATE(1535)] = 53772, + [SMALL_STATE(1536)] = 53799, + [SMALL_STATE(1537)] = 53826, + [SMALL_STATE(1538)] = 53853, + [SMALL_STATE(1539)] = 53882, + [SMALL_STATE(1540)] = 53909, + [SMALL_STATE(1541)] = 53928, + [SMALL_STATE(1542)] = 53947, + [SMALL_STATE(1543)] = 53970, + [SMALL_STATE(1544)] = 53989, + [SMALL_STATE(1545)] = 54012, + [SMALL_STATE(1546)] = 54039, + [SMALL_STATE(1547)] = 54068, + [SMALL_STATE(1548)] = 54095, + [SMALL_STATE(1549)] = 54124, + [SMALL_STATE(1550)] = 54147, + [SMALL_STATE(1551)] = 54174, + [SMALL_STATE(1552)] = 54197, + [SMALL_STATE(1553)] = 54226, + [SMALL_STATE(1554)] = 54241, + [SMALL_STATE(1555)] = 54260, + [SMALL_STATE(1556)] = 54281, + [SMALL_STATE(1557)] = 54304, + [SMALL_STATE(1558)] = 54331, + [SMALL_STATE(1559)] = 54350, + [SMALL_STATE(1560)] = 54377, + [SMALL_STATE(1561)] = 54404, + [SMALL_STATE(1562)] = 54425, + [SMALL_STATE(1563)] = 54452, + [SMALL_STATE(1564)] = 54479, + [SMALL_STATE(1565)] = 54498, + [SMALL_STATE(1566)] = 54527, + [SMALL_STATE(1567)] = 54556, + [SMALL_STATE(1568)] = 54581, + [SMALL_STATE(1569)] = 54608, + [SMALL_STATE(1570)] = 54627, + [SMALL_STATE(1571)] = 54646, + [SMALL_STATE(1572)] = 54673, + [SMALL_STATE(1573)] = 54692, + [SMALL_STATE(1574)] = 54711, + [SMALL_STATE(1575)] = 54737, + [SMALL_STATE(1576)] = 54753, + [SMALL_STATE(1577)] = 54767, + [SMALL_STATE(1578)] = 54781, + [SMALL_STATE(1579)] = 54807, + [SMALL_STATE(1580)] = 54833, + [SMALL_STATE(1581)] = 54859, + [SMALL_STATE(1582)] = 54873, + [SMALL_STATE(1583)] = 54889, + [SMALL_STATE(1584)] = 54915, + [SMALL_STATE(1585)] = 54941, + [SMALL_STATE(1586)] = 54967, + [SMALL_STATE(1587)] = 54983, + [SMALL_STATE(1588)] = 55009, + [SMALL_STATE(1589)] = 55035, + [SMALL_STATE(1590)] = 55057, + [SMALL_STATE(1591)] = 55083, + [SMALL_STATE(1592)] = 55109, + [SMALL_STATE(1593)] = 55131, + [SMALL_STATE(1594)] = 55157, + [SMALL_STATE(1595)] = 55181, + [SMALL_STATE(1596)] = 55207, + [SMALL_STATE(1597)] = 55233, + [SMALL_STATE(1598)] = 55247, + [SMALL_STATE(1599)] = 55273, + [SMALL_STATE(1600)] = 55289, + [SMALL_STATE(1601)] = 55315, + [SMALL_STATE(1602)] = 55341, + [SMALL_STATE(1603)] = 55357, + [SMALL_STATE(1604)] = 55381, + [SMALL_STATE(1605)] = 55407, + [SMALL_STATE(1606)] = 55433, + [SMALL_STATE(1607)] = 55459, + [SMALL_STATE(1608)] = 55483, + [SMALL_STATE(1609)] = 55509, + [SMALL_STATE(1610)] = 55533, + [SMALL_STATE(1611)] = 55559, + [SMALL_STATE(1612)] = 55575, + [SMALL_STATE(1613)] = 55591, + [SMALL_STATE(1614)] = 55617, + [SMALL_STATE(1615)] = 55641, + [SMALL_STATE(1616)] = 55655, + [SMALL_STATE(1617)] = 55681, + [SMALL_STATE(1618)] = 55695, + [SMALL_STATE(1619)] = 55715, + [SMALL_STATE(1620)] = 55731, + [SMALL_STATE(1621)] = 55745, + [SMALL_STATE(1622)] = 55768, + [SMALL_STATE(1623)] = 55787, + [SMALL_STATE(1624)] = 55810, + [SMALL_STATE(1625)] = 55833, + [SMALL_STATE(1626)] = 55854, + [SMALL_STATE(1627)] = 55871, + [SMALL_STATE(1628)] = 55894, + [SMALL_STATE(1629)] = 55917, + [SMALL_STATE(1630)] = 55940, + [SMALL_STATE(1631)] = 55963, + [SMALL_STATE(1632)] = 55980, + [SMALL_STATE(1633)] = 55997, + [SMALL_STATE(1634)] = 56020, + [SMALL_STATE(1635)] = 56043, + [SMALL_STATE(1636)] = 56066, + [SMALL_STATE(1637)] = 56089, + [SMALL_STATE(1638)] = 56112, + [SMALL_STATE(1639)] = 56135, + [SMALL_STATE(1640)] = 56158, + [SMALL_STATE(1641)] = 56181, + [SMALL_STATE(1642)] = 56204, + [SMALL_STATE(1643)] = 56227, + [SMALL_STATE(1644)] = 56250, + [SMALL_STATE(1645)] = 56265, + [SMALL_STATE(1646)] = 56288, + [SMALL_STATE(1647)] = 56307, + [SMALL_STATE(1648)] = 56330, + [SMALL_STATE(1649)] = 56353, + [SMALL_STATE(1650)] = 56368, + [SMALL_STATE(1651)] = 56385, + [SMALL_STATE(1652)] = 56400, + [SMALL_STATE(1653)] = 56423, + [SMALL_STATE(1654)] = 56446, + [SMALL_STATE(1655)] = 56469, + [SMALL_STATE(1656)] = 56492, + [SMALL_STATE(1657)] = 56515, + [SMALL_STATE(1658)] = 56538, + [SMALL_STATE(1659)] = 56561, + [SMALL_STATE(1660)] = 56584, + [SMALL_STATE(1661)] = 56605, + [SMALL_STATE(1662)] = 56622, + [SMALL_STATE(1663)] = 56645, + [SMALL_STATE(1664)] = 56668, + [SMALL_STATE(1665)] = 56691, + [SMALL_STATE(1666)] = 56714, + [SMALL_STATE(1667)] = 56737, + [SMALL_STATE(1668)] = 56758, + [SMALL_STATE(1669)] = 56781, + [SMALL_STATE(1670)] = 56804, + [SMALL_STATE(1671)] = 56827, + [SMALL_STATE(1672)] = 56850, + [SMALL_STATE(1673)] = 56867, + [SMALL_STATE(1674)] = 56884, + [SMALL_STATE(1675)] = 56907, + [SMALL_STATE(1676)] = 56930, + [SMALL_STATE(1677)] = 56953, + [SMALL_STATE(1678)] = 56976, + [SMALL_STATE(1679)] = 56993, + [SMALL_STATE(1680)] = 57010, + [SMALL_STATE(1681)] = 57033, + [SMALL_STATE(1682)] = 57056, + [SMALL_STATE(1683)] = 57079, + [SMALL_STATE(1684)] = 57102, + [SMALL_STATE(1685)] = 57125, + [SMALL_STATE(1686)] = 57148, + [SMALL_STATE(1687)] = 57171, + [SMALL_STATE(1688)] = 57194, + [SMALL_STATE(1689)] = 57209, + [SMALL_STATE(1690)] = 57228, + [SMALL_STATE(1691)] = 57251, + [SMALL_STATE(1692)] = 57274, + [SMALL_STATE(1693)] = 57297, + [SMALL_STATE(1694)] = 57314, + [SMALL_STATE(1695)] = 57337, + [SMALL_STATE(1696)] = 57354, + [SMALL_STATE(1697)] = 57371, + [SMALL_STATE(1698)] = 57394, + [SMALL_STATE(1699)] = 57417, + [SMALL_STATE(1700)] = 57440, + [SMALL_STATE(1701)] = 57463, + [SMALL_STATE(1702)] = 57480, + [SMALL_STATE(1703)] = 57497, + [SMALL_STATE(1704)] = 57520, + [SMALL_STATE(1705)] = 57537, + [SMALL_STATE(1706)] = 57560, + [SMALL_STATE(1707)] = 57583, + [SMALL_STATE(1708)] = 57606, + [SMALL_STATE(1709)] = 57629, + [SMALL_STATE(1710)] = 57652, + [SMALL_STATE(1711)] = 57675, + [SMALL_STATE(1712)] = 57690, + [SMALL_STATE(1713)] = 57713, + [SMALL_STATE(1714)] = 57736, + [SMALL_STATE(1715)] = 57759, + [SMALL_STATE(1716)] = 57782, + [SMALL_STATE(1717)] = 57805, + [SMALL_STATE(1718)] = 57821, + [SMALL_STATE(1719)] = 57833, + [SMALL_STATE(1720)] = 57853, + [SMALL_STATE(1721)] = 57865, + [SMALL_STATE(1722)] = 57877, + [SMALL_STATE(1723)] = 57897, + [SMALL_STATE(1724)] = 57917, + [SMALL_STATE(1725)] = 57937, + [SMALL_STATE(1726)] = 57953, + [SMALL_STATE(1727)] = 57967, + [SMALL_STATE(1728)] = 57979, + [SMALL_STATE(1729)] = 57991, + [SMALL_STATE(1730)] = 58003, + [SMALL_STATE(1731)] = 58015, + [SMALL_STATE(1732)] = 58027, + [SMALL_STATE(1733)] = 58039, + [SMALL_STATE(1734)] = 58051, + [SMALL_STATE(1735)] = 58071, + [SMALL_STATE(1736)] = 58089, + [SMALL_STATE(1737)] = 58107, + [SMALL_STATE(1738)] = 58119, + [SMALL_STATE(1739)] = 58131, + [SMALL_STATE(1740)] = 58151, + [SMALL_STATE(1741)] = 58163, + [SMALL_STATE(1742)] = 58175, + [SMALL_STATE(1743)] = 58193, + [SMALL_STATE(1744)] = 58207, + [SMALL_STATE(1745)] = 58219, + [SMALL_STATE(1746)] = 58235, + [SMALL_STATE(1747)] = 58251, + [SMALL_STATE(1748)] = 58267, + [SMALL_STATE(1749)] = 58285, + [SMALL_STATE(1750)] = 58299, + [SMALL_STATE(1751)] = 58311, + [SMALL_STATE(1752)] = 58323, + [SMALL_STATE(1753)] = 58343, + [SMALL_STATE(1754)] = 58363, + [SMALL_STATE(1755)] = 58375, + [SMALL_STATE(1756)] = 58391, + [SMALL_STATE(1757)] = 58403, + [SMALL_STATE(1758)] = 58421, + [SMALL_STATE(1759)] = 58437, + [SMALL_STATE(1760)] = 58453, + [SMALL_STATE(1761)] = 58471, + [SMALL_STATE(1762)] = 58487, + [SMALL_STATE(1763)] = 58503, + [SMALL_STATE(1764)] = 58519, + [SMALL_STATE(1765)] = 58539, + [SMALL_STATE(1766)] = 58559, + [SMALL_STATE(1767)] = 58577, + [SMALL_STATE(1768)] = 58593, + [SMALL_STATE(1769)] = 58605, + [SMALL_STATE(1770)] = 58617, + [SMALL_STATE(1771)] = 58634, + [SMALL_STATE(1772)] = 58651, + [SMALL_STATE(1773)] = 58668, + [SMALL_STATE(1774)] = 58685, + [SMALL_STATE(1775)] = 58702, + [SMALL_STATE(1776)] = 58719, + [SMALL_STATE(1777)] = 58734, + [SMALL_STATE(1778)] = 58751, + [SMALL_STATE(1779)] = 58768, + [SMALL_STATE(1780)] = 58785, + [SMALL_STATE(1781)] = 58800, + [SMALL_STATE(1782)] = 58817, + [SMALL_STATE(1783)] = 58834, + [SMALL_STATE(1784)] = 58849, + [SMALL_STATE(1785)] = 58862, + [SMALL_STATE(1786)] = 58879, + [SMALL_STATE(1787)] = 58894, + [SMALL_STATE(1788)] = 58911, + [SMALL_STATE(1789)] = 58926, + [SMALL_STATE(1790)] = 58943, + [SMALL_STATE(1791)] = 58958, + [SMALL_STATE(1792)] = 58975, + [SMALL_STATE(1793)] = 58992, + [SMALL_STATE(1794)] = 59009, + [SMALL_STATE(1795)] = 59026, + [SMALL_STATE(1796)] = 59043, + [SMALL_STATE(1797)] = 59058, + [SMALL_STATE(1798)] = 59075, + [SMALL_STATE(1799)] = 59092, + [SMALL_STATE(1800)] = 59107, + [SMALL_STATE(1801)] = 59124, + [SMALL_STATE(1802)] = 59141, + [SMALL_STATE(1803)] = 59158, + [SMALL_STATE(1804)] = 59173, + [SMALL_STATE(1805)] = 59190, + [SMALL_STATE(1806)] = 59207, + [SMALL_STATE(1807)] = 59224, + [SMALL_STATE(1808)] = 59241, + [SMALL_STATE(1809)] = 59258, + [SMALL_STATE(1810)] = 59275, + [SMALL_STATE(1811)] = 59288, + [SMALL_STATE(1812)] = 59305, + [SMALL_STATE(1813)] = 59322, + [SMALL_STATE(1814)] = 59335, + [SMALL_STATE(1815)] = 59350, + [SMALL_STATE(1816)] = 59367, + [SMALL_STATE(1817)] = 59384, + [SMALL_STATE(1818)] = 59399, + [SMALL_STATE(1819)] = 59416, + [SMALL_STATE(1820)] = 59433, + [SMALL_STATE(1821)] = 59450, + [SMALL_STATE(1822)] = 59467, + [SMALL_STATE(1823)] = 59480, + [SMALL_STATE(1824)] = 59493, + [SMALL_STATE(1825)] = 59508, + [SMALL_STATE(1826)] = 59523, + [SMALL_STATE(1827)] = 59540, + [SMALL_STATE(1828)] = 59557, + [SMALL_STATE(1829)] = 59574, + [SMALL_STATE(1830)] = 59591, + [SMALL_STATE(1831)] = 59608, + [SMALL_STATE(1832)] = 59625, + [SMALL_STATE(1833)] = 59642, + [SMALL_STATE(1834)] = 59659, + [SMALL_STATE(1835)] = 59676, + [SMALL_STATE(1836)] = 59693, + [SMALL_STATE(1837)] = 59710, + [SMALL_STATE(1838)] = 59725, + [SMALL_STATE(1839)] = 59742, + [SMALL_STATE(1840)] = 59759, + [SMALL_STATE(1841)] = 59776, + [SMALL_STATE(1842)] = 59793, + [SMALL_STATE(1843)] = 59810, + [SMALL_STATE(1844)] = 59827, + [SMALL_STATE(1845)] = 59844, + [SMALL_STATE(1846)] = 59859, + [SMALL_STATE(1847)] = 59876, + [SMALL_STATE(1848)] = 59893, + [SMALL_STATE(1849)] = 59908, + [SMALL_STATE(1850)] = 59921, + [SMALL_STATE(1851)] = 59938, + [SMALL_STATE(1852)] = 59955, + [SMALL_STATE(1853)] = 59972, + [SMALL_STATE(1854)] = 59989, + [SMALL_STATE(1855)] = 60006, + [SMALL_STATE(1856)] = 60023, + [SMALL_STATE(1857)] = 60040, + [SMALL_STATE(1858)] = 60053, + [SMALL_STATE(1859)] = 60066, + [SMALL_STATE(1860)] = 60076, + [SMALL_STATE(1861)] = 60090, + [SMALL_STATE(1862)] = 60102, + [SMALL_STATE(1863)] = 60116, + [SMALL_STATE(1864)] = 60130, + [SMALL_STATE(1865)] = 60142, + [SMALL_STATE(1866)] = 60156, + [SMALL_STATE(1867)] = 60168, + [SMALL_STATE(1868)] = 60182, + [SMALL_STATE(1869)] = 60194, + [SMALL_STATE(1870)] = 60208, + [SMALL_STATE(1871)] = 60220, + [SMALL_STATE(1872)] = 60234, + [SMALL_STATE(1873)] = 60248, + [SMALL_STATE(1874)] = 60260, + [SMALL_STATE(1875)] = 60272, + [SMALL_STATE(1876)] = 60286, + [SMALL_STATE(1877)] = 60298, + [SMALL_STATE(1878)] = 60310, + [SMALL_STATE(1879)] = 60324, + [SMALL_STATE(1880)] = 60334, + [SMALL_STATE(1881)] = 60348, + [SMALL_STATE(1882)] = 60362, + [SMALL_STATE(1883)] = 60376, + [SMALL_STATE(1884)] = 60390, + [SMALL_STATE(1885)] = 60400, + [SMALL_STATE(1886)] = 60414, + [SMALL_STATE(1887)] = 60424, + [SMALL_STATE(1888)] = 60438, + [SMALL_STATE(1889)] = 60452, + [SMALL_STATE(1890)] = 60462, + [SMALL_STATE(1891)] = 60474, + [SMALL_STATE(1892)] = 60488, + [SMALL_STATE(1893)] = 60502, + [SMALL_STATE(1894)] = 60514, + [SMALL_STATE(1895)] = 60528, + [SMALL_STATE(1896)] = 60542, + [SMALL_STATE(1897)] = 60556, + [SMALL_STATE(1898)] = 60570, + [SMALL_STATE(1899)] = 60582, + [SMALL_STATE(1900)] = 60596, + [SMALL_STATE(1901)] = 60610, + [SMALL_STATE(1902)] = 60624, + [SMALL_STATE(1903)] = 60638, + [SMALL_STATE(1904)] = 60650, + [SMALL_STATE(1905)] = 60664, + [SMALL_STATE(1906)] = 60678, + [SMALL_STATE(1907)] = 60688, + [SMALL_STATE(1908)] = 60702, + [SMALL_STATE(1909)] = 60716, + [SMALL_STATE(1910)] = 60730, + [SMALL_STATE(1911)] = 60744, + [SMALL_STATE(1912)] = 60758, + [SMALL_STATE(1913)] = 60772, + [SMALL_STATE(1914)] = 60786, + [SMALL_STATE(1915)] = 60800, + [SMALL_STATE(1916)] = 60812, + [SMALL_STATE(1917)] = 60826, + [SMALL_STATE(1918)] = 60840, + [SMALL_STATE(1919)] = 60854, + [SMALL_STATE(1920)] = 60868, + [SMALL_STATE(1921)] = 60882, + [SMALL_STATE(1922)] = 60896, + [SMALL_STATE(1923)] = 60910, + [SMALL_STATE(1924)] = 60924, + [SMALL_STATE(1925)] = 60938, + [SMALL_STATE(1926)] = 60952, + [SMALL_STATE(1927)] = 60966, + [SMALL_STATE(1928)] = 60980, + [SMALL_STATE(1929)] = 60994, + [SMALL_STATE(1930)] = 61004, + [SMALL_STATE(1931)] = 61018, + [SMALL_STATE(1932)] = 61028, + [SMALL_STATE(1933)] = 61038, + [SMALL_STATE(1934)] = 61052, + [SMALL_STATE(1935)] = 61066, + [SMALL_STATE(1936)] = 61080, + [SMALL_STATE(1937)] = 61094, + [SMALL_STATE(1938)] = 61108, + [SMALL_STATE(1939)] = 61122, + [SMALL_STATE(1940)] = 61132, + [SMALL_STATE(1941)] = 61142, + [SMALL_STATE(1942)] = 61156, + [SMALL_STATE(1943)] = 61170, + [SMALL_STATE(1944)] = 61184, + [SMALL_STATE(1945)] = 61194, + [SMALL_STATE(1946)] = 61204, + [SMALL_STATE(1947)] = 61214, + [SMALL_STATE(1948)] = 61224, + [SMALL_STATE(1949)] = 61238, + [SMALL_STATE(1950)] = 61252, + [SMALL_STATE(1951)] = 61266, + [SMALL_STATE(1952)] = 61276, + [SMALL_STATE(1953)] = 61290, + [SMALL_STATE(1954)] = 61300, + [SMALL_STATE(1955)] = 61314, + [SMALL_STATE(1956)] = 61328, + [SMALL_STATE(1957)] = 61342, + [SMALL_STATE(1958)] = 61356, + [SMALL_STATE(1959)] = 61370, + [SMALL_STATE(1960)] = 61386, + [SMALL_STATE(1961)] = 61400, + [SMALL_STATE(1962)] = 61410, + [SMALL_STATE(1963)] = 61422, + [SMALL_STATE(1964)] = 61436, + [SMALL_STATE(1965)] = 61450, + [SMALL_STATE(1966)] = 61464, + [SMALL_STATE(1967)] = 61478, + [SMALL_STATE(1968)] = 61492, + [SMALL_STATE(1969)] = 61504, + [SMALL_STATE(1970)] = 61516, + [SMALL_STATE(1971)] = 61530, + [SMALL_STATE(1972)] = 61544, + [SMALL_STATE(1973)] = 61558, + [SMALL_STATE(1974)] = 61572, + [SMALL_STATE(1975)] = 61584, + [SMALL_STATE(1976)] = 61600, + [SMALL_STATE(1977)] = 61614, + [SMALL_STATE(1978)] = 61628, + [SMALL_STATE(1979)] = 61638, + [SMALL_STATE(1980)] = 61650, + [SMALL_STATE(1981)] = 61664, + [SMALL_STATE(1982)] = 61678, + [SMALL_STATE(1983)] = 61690, + [SMALL_STATE(1984)] = 61704, + [SMALL_STATE(1985)] = 61718, + [SMALL_STATE(1986)] = 61732, + [SMALL_STATE(1987)] = 61744, + [SMALL_STATE(1988)] = 61758, + [SMALL_STATE(1989)] = 61772, + [SMALL_STATE(1990)] = 61786, + [SMALL_STATE(1991)] = 61798, + [SMALL_STATE(1992)] = 61812, + [SMALL_STATE(1993)] = 61826, + [SMALL_STATE(1994)] = 61840, + [SMALL_STATE(1995)] = 61854, + [SMALL_STATE(1996)] = 61868, + [SMALL_STATE(1997)] = 61882, + [SMALL_STATE(1998)] = 61896, + [SMALL_STATE(1999)] = 61910, + [SMALL_STATE(2000)] = 61924, + [SMALL_STATE(2001)] = 61938, + [SMALL_STATE(2002)] = 61952, + [SMALL_STATE(2003)] = 61966, + [SMALL_STATE(2004)] = 61980, + [SMALL_STATE(2005)] = 61994, + [SMALL_STATE(2006)] = 62008, + [SMALL_STATE(2007)] = 62022, + [SMALL_STATE(2008)] = 62036, + [SMALL_STATE(2009)] = 62050, + [SMALL_STATE(2010)] = 62064, + [SMALL_STATE(2011)] = 62078, + [SMALL_STATE(2012)] = 62092, + [SMALL_STATE(2013)] = 62106, + [SMALL_STATE(2014)] = 62120, + [SMALL_STATE(2015)] = 62134, + [SMALL_STATE(2016)] = 62150, + [SMALL_STATE(2017)] = 62164, + [SMALL_STATE(2018)] = 62178, + [SMALL_STATE(2019)] = 62192, + [SMALL_STATE(2020)] = 62206, + [SMALL_STATE(2021)] = 62218, + [SMALL_STATE(2022)] = 62232, + [SMALL_STATE(2023)] = 62246, + [SMALL_STATE(2024)] = 62260, + [SMALL_STATE(2025)] = 62274, + [SMALL_STATE(2026)] = 62286, + [SMALL_STATE(2027)] = 62300, + [SMALL_STATE(2028)] = 62310, + [SMALL_STATE(2029)] = 62324, + [SMALL_STATE(2030)] = 62338, + [SMALL_STATE(2031)] = 62352, + [SMALL_STATE(2032)] = 62366, + [SMALL_STATE(2033)] = 62380, + [SMALL_STATE(2034)] = 62394, + [SMALL_STATE(2035)] = 62408, + [SMALL_STATE(2036)] = 62422, + [SMALL_STATE(2037)] = 62436, + [SMALL_STATE(2038)] = 62448, + [SMALL_STATE(2039)] = 62462, + [SMALL_STATE(2040)] = 62476, + [SMALL_STATE(2041)] = 62490, + [SMALL_STATE(2042)] = 62502, + [SMALL_STATE(2043)] = 62516, + [SMALL_STATE(2044)] = 62530, + [SMALL_STATE(2045)] = 62544, + [SMALL_STATE(2046)] = 62556, + [SMALL_STATE(2047)] = 62570, + [SMALL_STATE(2048)] = 62584, + [SMALL_STATE(2049)] = 62598, + [SMALL_STATE(2050)] = 62612, + [SMALL_STATE(2051)] = 62626, + [SMALL_STATE(2052)] = 62640, + [SMALL_STATE(2053)] = 62654, + [SMALL_STATE(2054)] = 62668, + [SMALL_STATE(2055)] = 62682, + [SMALL_STATE(2056)] = 62696, + [SMALL_STATE(2057)] = 62706, + [SMALL_STATE(2058)] = 62716, + [SMALL_STATE(2059)] = 62728, + [SMALL_STATE(2060)] = 62742, + [SMALL_STATE(2061)] = 62756, + [SMALL_STATE(2062)] = 62770, + [SMALL_STATE(2063)] = 62782, + [SMALL_STATE(2064)] = 62796, + [SMALL_STATE(2065)] = 62810, + [SMALL_STATE(2066)] = 62824, + [SMALL_STATE(2067)] = 62834, + [SMALL_STATE(2068)] = 62848, + [SMALL_STATE(2069)] = 62862, + [SMALL_STATE(2070)] = 62876, + [SMALL_STATE(2071)] = 62890, + [SMALL_STATE(2072)] = 62904, + [SMALL_STATE(2073)] = 62914, + [SMALL_STATE(2074)] = 62928, + [SMALL_STATE(2075)] = 62942, + [SMALL_STATE(2076)] = 62954, + [SMALL_STATE(2077)] = 62964, + [SMALL_STATE(2078)] = 62976, + [SMALL_STATE(2079)] = 62990, + [SMALL_STATE(2080)] = 63004, + [SMALL_STATE(2081)] = 63018, + [SMALL_STATE(2082)] = 63032, + [SMALL_STATE(2083)] = 63046, + [SMALL_STATE(2084)] = 63060, + [SMALL_STATE(2085)] = 63074, + [SMALL_STATE(2086)] = 63088, + [SMALL_STATE(2087)] = 63102, + [SMALL_STATE(2088)] = 63116, + [SMALL_STATE(2089)] = 63128, + [SMALL_STATE(2090)] = 63140, + [SMALL_STATE(2091)] = 63154, + [SMALL_STATE(2092)] = 63168, + [SMALL_STATE(2093)] = 63182, + [SMALL_STATE(2094)] = 63196, + [SMALL_STATE(2095)] = 63210, + [SMALL_STATE(2096)] = 63224, + [SMALL_STATE(2097)] = 63238, + [SMALL_STATE(2098)] = 63252, + [SMALL_STATE(2099)] = 63266, + [SMALL_STATE(2100)] = 63280, + [SMALL_STATE(2101)] = 63294, + [SMALL_STATE(2102)] = 63308, + [SMALL_STATE(2103)] = 63322, + [SMALL_STATE(2104)] = 63334, + [SMALL_STATE(2105)] = 63348, + [SMALL_STATE(2106)] = 63362, + [SMALL_STATE(2107)] = 63376, + [SMALL_STATE(2108)] = 63390, + [SMALL_STATE(2109)] = 63404, + [SMALL_STATE(2110)] = 63418, + [SMALL_STATE(2111)] = 63430, + [SMALL_STATE(2112)] = 63444, + [SMALL_STATE(2113)] = 63458, + [SMALL_STATE(2114)] = 63472, + [SMALL_STATE(2115)] = 63486, + [SMALL_STATE(2116)] = 63497, + [SMALL_STATE(2117)] = 63508, + [SMALL_STATE(2118)] = 63519, + [SMALL_STATE(2119)] = 63530, + [SMALL_STATE(2120)] = 63541, + [SMALL_STATE(2121)] = 63552, + [SMALL_STATE(2122)] = 63563, + [SMALL_STATE(2123)] = 63574, + [SMALL_STATE(2124)] = 63585, + [SMALL_STATE(2125)] = 63596, + [SMALL_STATE(2126)] = 63607, + [SMALL_STATE(2127)] = 63618, + [SMALL_STATE(2128)] = 63629, + [SMALL_STATE(2129)] = 63640, + [SMALL_STATE(2130)] = 63651, + [SMALL_STATE(2131)] = 63660, + [SMALL_STATE(2132)] = 63671, + [SMALL_STATE(2133)] = 63682, + [SMALL_STATE(2134)] = 63693, + [SMALL_STATE(2135)] = 63704, + [SMALL_STATE(2136)] = 63715, + [SMALL_STATE(2137)] = 63726, + [SMALL_STATE(2138)] = 63737, + [SMALL_STATE(2139)] = 63748, + [SMALL_STATE(2140)] = 63757, + [SMALL_STATE(2141)] = 63768, + [SMALL_STATE(2142)] = 63779, + [SMALL_STATE(2143)] = 63790, + [SMALL_STATE(2144)] = 63801, + [SMALL_STATE(2145)] = 63810, + [SMALL_STATE(2146)] = 63821, + [SMALL_STATE(2147)] = 63832, + [SMALL_STATE(2148)] = 63843, + [SMALL_STATE(2149)] = 63854, + [SMALL_STATE(2150)] = 63865, + [SMALL_STATE(2151)] = 63876, + [SMALL_STATE(2152)] = 63887, + [SMALL_STATE(2153)] = 63898, + [SMALL_STATE(2154)] = 63909, + [SMALL_STATE(2155)] = 63918, + [SMALL_STATE(2156)] = 63927, + [SMALL_STATE(2157)] = 63938, + [SMALL_STATE(2158)] = 63947, + [SMALL_STATE(2159)] = 63958, + [SMALL_STATE(2160)] = 63969, + [SMALL_STATE(2161)] = 63978, + [SMALL_STATE(2162)] = 63989, + [SMALL_STATE(2163)] = 64000, + [SMALL_STATE(2164)] = 64011, + [SMALL_STATE(2165)] = 64022, + [SMALL_STATE(2166)] = 64033, + [SMALL_STATE(2167)] = 64044, + [SMALL_STATE(2168)] = 64053, + [SMALL_STATE(2169)] = 64064, + [SMALL_STATE(2170)] = 64075, + [SMALL_STATE(2171)] = 64086, + [SMALL_STATE(2172)] = 64097, + [SMALL_STATE(2173)] = 64106, + [SMALL_STATE(2174)] = 64117, + [SMALL_STATE(2175)] = 64128, + [SMALL_STATE(2176)] = 64139, + [SMALL_STATE(2177)] = 64150, + [SMALL_STATE(2178)] = 64161, + [SMALL_STATE(2179)] = 64172, + [SMALL_STATE(2180)] = 64183, + [SMALL_STATE(2181)] = 64194, + [SMALL_STATE(2182)] = 64205, + [SMALL_STATE(2183)] = 64216, + [SMALL_STATE(2184)] = 64227, + [SMALL_STATE(2185)] = 64238, + [SMALL_STATE(2186)] = 64249, + [SMALL_STATE(2187)] = 64260, + [SMALL_STATE(2188)] = 64271, + [SMALL_STATE(2189)] = 64282, + [SMALL_STATE(2190)] = 64293, + [SMALL_STATE(2191)] = 64304, + [SMALL_STATE(2192)] = 64315, + [SMALL_STATE(2193)] = 64326, + [SMALL_STATE(2194)] = 64335, + [SMALL_STATE(2195)] = 64346, + [SMALL_STATE(2196)] = 64357, + [SMALL_STATE(2197)] = 64368, + [SMALL_STATE(2198)] = 64379, + [SMALL_STATE(2199)] = 64390, + [SMALL_STATE(2200)] = 64401, + [SMALL_STATE(2201)] = 64412, + [SMALL_STATE(2202)] = 64423, + [SMALL_STATE(2203)] = 64434, + [SMALL_STATE(2204)] = 64445, + [SMALL_STATE(2205)] = 64456, + [SMALL_STATE(2206)] = 64465, + [SMALL_STATE(2207)] = 64476, + [SMALL_STATE(2208)] = 64487, + [SMALL_STATE(2209)] = 64498, + [SMALL_STATE(2210)] = 64509, + [SMALL_STATE(2211)] = 64520, + [SMALL_STATE(2212)] = 64531, + [SMALL_STATE(2213)] = 64542, + [SMALL_STATE(2214)] = 64553, + [SMALL_STATE(2215)] = 64564, + [SMALL_STATE(2216)] = 64575, + [SMALL_STATE(2217)] = 64586, + [SMALL_STATE(2218)] = 64597, + [SMALL_STATE(2219)] = 64608, + [SMALL_STATE(2220)] = 64619, + [SMALL_STATE(2221)] = 64630, + [SMALL_STATE(2222)] = 64641, + [SMALL_STATE(2223)] = 64652, + [SMALL_STATE(2224)] = 64661, + [SMALL_STATE(2225)] = 64672, + [SMALL_STATE(2226)] = 64683, + [SMALL_STATE(2227)] = 64694, + [SMALL_STATE(2228)] = 64703, + [SMALL_STATE(2229)] = 64714, + [SMALL_STATE(2230)] = 64725, + [SMALL_STATE(2231)] = 64736, + [SMALL_STATE(2232)] = 64745, + [SMALL_STATE(2233)] = 64756, + [SMALL_STATE(2234)] = 64767, + [SMALL_STATE(2235)] = 64778, + [SMALL_STATE(2236)] = 64787, + [SMALL_STATE(2237)] = 64798, + [SMALL_STATE(2238)] = 64809, + [SMALL_STATE(2239)] = 64820, + [SMALL_STATE(2240)] = 64831, + [SMALL_STATE(2241)] = 64842, + [SMALL_STATE(2242)] = 64853, + [SMALL_STATE(2243)] = 64864, + [SMALL_STATE(2244)] = 64875, + [SMALL_STATE(2245)] = 64886, + [SMALL_STATE(2246)] = 64897, + [SMALL_STATE(2247)] = 64906, + [SMALL_STATE(2248)] = 64917, + [SMALL_STATE(2249)] = 64928, + [SMALL_STATE(2250)] = 64939, + [SMALL_STATE(2251)] = 64948, + [SMALL_STATE(2252)] = 64959, + [SMALL_STATE(2253)] = 64970, + [SMALL_STATE(2254)] = 64981, + [SMALL_STATE(2255)] = 64990, + [SMALL_STATE(2256)] = 65001, + [SMALL_STATE(2257)] = 65010, + [SMALL_STATE(2258)] = 65021, + [SMALL_STATE(2259)] = 65032, + [SMALL_STATE(2260)] = 65041, + [SMALL_STATE(2261)] = 65052, + [SMALL_STATE(2262)] = 65063, + [SMALL_STATE(2263)] = 65072, + [SMALL_STATE(2264)] = 65083, + [SMALL_STATE(2265)] = 65094, + [SMALL_STATE(2266)] = 65105, + [SMALL_STATE(2267)] = 65116, + [SMALL_STATE(2268)] = 65127, + [SMALL_STATE(2269)] = 65138, + [SMALL_STATE(2270)] = 65149, + [SMALL_STATE(2271)] = 65160, + [SMALL_STATE(2272)] = 65171, + [SMALL_STATE(2273)] = 65182, + [SMALL_STATE(2274)] = 65191, + [SMALL_STATE(2275)] = 65202, + [SMALL_STATE(2276)] = 65213, + [SMALL_STATE(2277)] = 65224, + [SMALL_STATE(2278)] = 65235, + [SMALL_STATE(2279)] = 65244, + [SMALL_STATE(2280)] = 65255, + [SMALL_STATE(2281)] = 65266, + [SMALL_STATE(2282)] = 65277, + [SMALL_STATE(2283)] = 65288, + [SMALL_STATE(2284)] = 65299, + [SMALL_STATE(2285)] = 65310, + [SMALL_STATE(2286)] = 65321, + [SMALL_STATE(2287)] = 65332, + [SMALL_STATE(2288)] = 65343, + [SMALL_STATE(2289)] = 65354, + [SMALL_STATE(2290)] = 65365, + [SMALL_STATE(2291)] = 65376, + [SMALL_STATE(2292)] = 65387, + [SMALL_STATE(2293)] = 65398, + [SMALL_STATE(2294)] = 65409, + [SMALL_STATE(2295)] = 65420, + [SMALL_STATE(2296)] = 65431, + [SMALL_STATE(2297)] = 65440, + [SMALL_STATE(2298)] = 65451, + [SMALL_STATE(2299)] = 65460, + [SMALL_STATE(2300)] = 65471, + [SMALL_STATE(2301)] = 65480, + [SMALL_STATE(2302)] = 65491, + [SMALL_STATE(2303)] = 65502, + [SMALL_STATE(2304)] = 65513, + [SMALL_STATE(2305)] = 65524, + [SMALL_STATE(2306)] = 65535, + [SMALL_STATE(2307)] = 65546, + [SMALL_STATE(2308)] = 65557, + [SMALL_STATE(2309)] = 65568, + [SMALL_STATE(2310)] = 65577, + [SMALL_STATE(2311)] = 65588, + [SMALL_STATE(2312)] = 65599, + [SMALL_STATE(2313)] = 65610, + [SMALL_STATE(2314)] = 65621, + [SMALL_STATE(2315)] = 65632, + [SMALL_STATE(2316)] = 65643, + [SMALL_STATE(2317)] = 65654, + [SMALL_STATE(2318)] = 65665, + [SMALL_STATE(2319)] = 65676, + [SMALL_STATE(2320)] = 65687, + [SMALL_STATE(2321)] = 65698, + [SMALL_STATE(2322)] = 65709, + [SMALL_STATE(2323)] = 65717, + [SMALL_STATE(2324)] = 65725, + [SMALL_STATE(2325)] = 65733, + [SMALL_STATE(2326)] = 65741, + [SMALL_STATE(2327)] = 65749, + [SMALL_STATE(2328)] = 65757, + [SMALL_STATE(2329)] = 65765, + [SMALL_STATE(2330)] = 65773, + [SMALL_STATE(2331)] = 65781, + [SMALL_STATE(2332)] = 65789, + [SMALL_STATE(2333)] = 65797, + [SMALL_STATE(2334)] = 65805, + [SMALL_STATE(2335)] = 65813, + [SMALL_STATE(2336)] = 65821, + [SMALL_STATE(2337)] = 65829, + [SMALL_STATE(2338)] = 65837, + [SMALL_STATE(2339)] = 65845, + [SMALL_STATE(2340)] = 65853, + [SMALL_STATE(2341)] = 65861, + [SMALL_STATE(2342)] = 65869, + [SMALL_STATE(2343)] = 65877, + [SMALL_STATE(2344)] = 65885, + [SMALL_STATE(2345)] = 65893, + [SMALL_STATE(2346)] = 65901, + [SMALL_STATE(2347)] = 65909, + [SMALL_STATE(2348)] = 65917, + [SMALL_STATE(2349)] = 65925, + [SMALL_STATE(2350)] = 65933, + [SMALL_STATE(2351)] = 65941, + [SMALL_STATE(2352)] = 65949, + [SMALL_STATE(2353)] = 65957, + [SMALL_STATE(2354)] = 65965, + [SMALL_STATE(2355)] = 65973, + [SMALL_STATE(2356)] = 65981, + [SMALL_STATE(2357)] = 65989, + [SMALL_STATE(2358)] = 65997, + [SMALL_STATE(2359)] = 66005, + [SMALL_STATE(2360)] = 66013, + [SMALL_STATE(2361)] = 66021, + [SMALL_STATE(2362)] = 66029, + [SMALL_STATE(2363)] = 66037, + [SMALL_STATE(2364)] = 66045, + [SMALL_STATE(2365)] = 66053, + [SMALL_STATE(2366)] = 66061, + [SMALL_STATE(2367)] = 66069, + [SMALL_STATE(2368)] = 66077, + [SMALL_STATE(2369)] = 66085, + [SMALL_STATE(2370)] = 66093, + [SMALL_STATE(2371)] = 66101, + [SMALL_STATE(2372)] = 66109, + [SMALL_STATE(2373)] = 66117, + [SMALL_STATE(2374)] = 66125, + [SMALL_STATE(2375)] = 66133, + [SMALL_STATE(2376)] = 66141, + [SMALL_STATE(2377)] = 66149, + [SMALL_STATE(2378)] = 66157, + [SMALL_STATE(2379)] = 66165, + [SMALL_STATE(2380)] = 66173, + [SMALL_STATE(2381)] = 66181, + [SMALL_STATE(2382)] = 66189, + [SMALL_STATE(2383)] = 66197, + [SMALL_STATE(2384)] = 66205, + [SMALL_STATE(2385)] = 66213, + [SMALL_STATE(2386)] = 66221, + [SMALL_STATE(2387)] = 66229, + [SMALL_STATE(2388)] = 66237, + [SMALL_STATE(2389)] = 66245, + [SMALL_STATE(2390)] = 66253, + [SMALL_STATE(2391)] = 66261, + [SMALL_STATE(2392)] = 66269, + [SMALL_STATE(2393)] = 66277, + [SMALL_STATE(2394)] = 66285, + [SMALL_STATE(2395)] = 66293, + [SMALL_STATE(2396)] = 66301, + [SMALL_STATE(2397)] = 66309, + [SMALL_STATE(2398)] = 66317, + [SMALL_STATE(2399)] = 66325, + [SMALL_STATE(2400)] = 66333, + [SMALL_STATE(2401)] = 66341, + [SMALL_STATE(2402)] = 66349, + [SMALL_STATE(2403)] = 66357, + [SMALL_STATE(2404)] = 66365, + [SMALL_STATE(2405)] = 66373, + [SMALL_STATE(2406)] = 66381, + [SMALL_STATE(2407)] = 66389, + [SMALL_STATE(2408)] = 66397, + [SMALL_STATE(2409)] = 66405, + [SMALL_STATE(2410)] = 66413, + [SMALL_STATE(2411)] = 66421, + [SMALL_STATE(2412)] = 66429, + [SMALL_STATE(2413)] = 66437, + [SMALL_STATE(2414)] = 66445, + [SMALL_STATE(2415)] = 66453, + [SMALL_STATE(2416)] = 66461, + [SMALL_STATE(2417)] = 66469, + [SMALL_STATE(2418)] = 66477, + [SMALL_STATE(2419)] = 66485, + [SMALL_STATE(2420)] = 66493, + [SMALL_STATE(2421)] = 66501, + [SMALL_STATE(2422)] = 66509, + [SMALL_STATE(2423)] = 66517, + [SMALL_STATE(2424)] = 66525, + [SMALL_STATE(2425)] = 66533, + [SMALL_STATE(2426)] = 66541, + [SMALL_STATE(2427)] = 66549, + [SMALL_STATE(2428)] = 66557, + [SMALL_STATE(2429)] = 66565, + [SMALL_STATE(2430)] = 66573, + [SMALL_STATE(2431)] = 66581, + [SMALL_STATE(2432)] = 66589, + [SMALL_STATE(2433)] = 66597, + [SMALL_STATE(2434)] = 66605, + [SMALL_STATE(2435)] = 66613, + [SMALL_STATE(2436)] = 66621, + [SMALL_STATE(2437)] = 66629, + [SMALL_STATE(2438)] = 66637, + [SMALL_STATE(2439)] = 66645, + [SMALL_STATE(2440)] = 66653, + [SMALL_STATE(2441)] = 66661, + [SMALL_STATE(2442)] = 66669, + [SMALL_STATE(2443)] = 66677, + [SMALL_STATE(2444)] = 66685, + [SMALL_STATE(2445)] = 66693, + [SMALL_STATE(2446)] = 66701, + [SMALL_STATE(2447)] = 66709, + [SMALL_STATE(2448)] = 66717, + [SMALL_STATE(2449)] = 66725, + [SMALL_STATE(2450)] = 66733, + [SMALL_STATE(2451)] = 66741, + [SMALL_STATE(2452)] = 66749, + [SMALL_STATE(2453)] = 66757, + [SMALL_STATE(2454)] = 66765, + [SMALL_STATE(2455)] = 66773, + [SMALL_STATE(2456)] = 66781, + [SMALL_STATE(2457)] = 66789, + [SMALL_STATE(2458)] = 66797, + [SMALL_STATE(2459)] = 66805, + [SMALL_STATE(2460)] = 66813, + [SMALL_STATE(2461)] = 66821, + [SMALL_STATE(2462)] = 66829, + [SMALL_STATE(2463)] = 66837, + [SMALL_STATE(2464)] = 66845, + [SMALL_STATE(2465)] = 66853, + [SMALL_STATE(2466)] = 66861, + [SMALL_STATE(2467)] = 66869, + [SMALL_STATE(2468)] = 66877, + [SMALL_STATE(2469)] = 66885, + [SMALL_STATE(2470)] = 66893, + [SMALL_STATE(2471)] = 66901, + [SMALL_STATE(2472)] = 66909, + [SMALL_STATE(2473)] = 66917, + [SMALL_STATE(2474)] = 66925, + [SMALL_STATE(2475)] = 66933, + [SMALL_STATE(2476)] = 66941, + [SMALL_STATE(2477)] = 66949, + [SMALL_STATE(2478)] = 66957, + [SMALL_STATE(2479)] = 66965, + [SMALL_STATE(2480)] = 66973, + [SMALL_STATE(2481)] = 66981, + [SMALL_STATE(2482)] = 66989, + [SMALL_STATE(2483)] = 66997, + [SMALL_STATE(2484)] = 67005, + [SMALL_STATE(2485)] = 67013, + [SMALL_STATE(2486)] = 67021, + [SMALL_STATE(2487)] = 67029, + [SMALL_STATE(2488)] = 67037, + [SMALL_STATE(2489)] = 67045, + [SMALL_STATE(2490)] = 67053, + [SMALL_STATE(2491)] = 67061, + [SMALL_STATE(2492)] = 67069, + [SMALL_STATE(2493)] = 67077, + [SMALL_STATE(2494)] = 67085, + [SMALL_STATE(2495)] = 67093, + [SMALL_STATE(2496)] = 67101, + [SMALL_STATE(2497)] = 67109, + [SMALL_STATE(2498)] = 67117, + [SMALL_STATE(2499)] = 67125, + [SMALL_STATE(2500)] = 67133, + [SMALL_STATE(2501)] = 67141, + [SMALL_STATE(2502)] = 67149, + [SMALL_STATE(2503)] = 67157, + [SMALL_STATE(2504)] = 67165, + [SMALL_STATE(2505)] = 67173, + [SMALL_STATE(2506)] = 67181, + [SMALL_STATE(2507)] = 67189, + [SMALL_STATE(2508)] = 67197, + [SMALL_STATE(2509)] = 67205, + [SMALL_STATE(2510)] = 67213, + [SMALL_STATE(2511)] = 67221, + [SMALL_STATE(2512)] = 67229, + [SMALL_STATE(2513)] = 67237, + [SMALL_STATE(2514)] = 67245, + [SMALL_STATE(2515)] = 67253, + [SMALL_STATE(2516)] = 67261, + [SMALL_STATE(2517)] = 67269, + [SMALL_STATE(2518)] = 67277, + [SMALL_STATE(2519)] = 67285, + [SMALL_STATE(2520)] = 67293, + [SMALL_STATE(2521)] = 67301, + [SMALL_STATE(2522)] = 67309, + [SMALL_STATE(2523)] = 67317, + [SMALL_STATE(2524)] = 67325, + [SMALL_STATE(2525)] = 67333, + [SMALL_STATE(2526)] = 67341, + [SMALL_STATE(2527)] = 67349, + [SMALL_STATE(2528)] = 67357, + [SMALL_STATE(2529)] = 67365, + [SMALL_STATE(2530)] = 67373, + [SMALL_STATE(2531)] = 67381, + [SMALL_STATE(2532)] = 67389, + [SMALL_STATE(2533)] = 67397, + [SMALL_STATE(2534)] = 67405, + [SMALL_STATE(2535)] = 67413, + [SMALL_STATE(2536)] = 67421, + [SMALL_STATE(2537)] = 67429, + [SMALL_STATE(2538)] = 67437, + [SMALL_STATE(2539)] = 67445, + [SMALL_STATE(2540)] = 67453, + [SMALL_STATE(2541)] = 67461, + [SMALL_STATE(2542)] = 67469, + [SMALL_STATE(2543)] = 67477, + [SMALL_STATE(2544)] = 67485, + [SMALL_STATE(2545)] = 67493, + [SMALL_STATE(2546)] = 67501, + [SMALL_STATE(2547)] = 67509, + [SMALL_STATE(2548)] = 67517, + [SMALL_STATE(2549)] = 67525, + [SMALL_STATE(2550)] = 67533, + [SMALL_STATE(2551)] = 67541, + [SMALL_STATE(2552)] = 67549, + [SMALL_STATE(2553)] = 67557, + [SMALL_STATE(2554)] = 67565, + [SMALL_STATE(2555)] = 67573, + [SMALL_STATE(2556)] = 67581, + [SMALL_STATE(2557)] = 67589, + [SMALL_STATE(2558)] = 67597, + [SMALL_STATE(2559)] = 67605, + [SMALL_STATE(2560)] = 67613, + [SMALL_STATE(2561)] = 67621, + [SMALL_STATE(2562)] = 67629, + [SMALL_STATE(2563)] = 67637, + [SMALL_STATE(2564)] = 67645, + [SMALL_STATE(2565)] = 67653, + [SMALL_STATE(2566)] = 67661, + [SMALL_STATE(2567)] = 67669, + [SMALL_STATE(2568)] = 67677, + [SMALL_STATE(2569)] = 67685, + [SMALL_STATE(2570)] = 67693, + [SMALL_STATE(2571)] = 67701, + [SMALL_STATE(2572)] = 67709, + [SMALL_STATE(2573)] = 67717, + [SMALL_STATE(2574)] = 67725, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -129778,2725 +127487,2744 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1161), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(253), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2048), - [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), - [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(148), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1119), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2564), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1523), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1510), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(770), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2563), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2214), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(617), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(43), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(628), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(598), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2299), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(155), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2550), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1341), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1921), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2541), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2540), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2535), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1166), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1476), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1300), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(50), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2261), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1467), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(634), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2533), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(556), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2259), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(815), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1853), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1028), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1031), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2530), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1351), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1031), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1160), + [114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(250), + [117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1915), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(50), + [123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(7), + [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), + [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2574), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1496), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1515), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(769), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(770), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2560), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2167), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(600), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(631), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(596), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2169), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(151), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2507), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1348), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(23), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2003), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2497), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2496), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2495), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1169), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1477), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1298), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(40), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2180), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1464), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(634), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2488), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(95), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(555), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2185), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(909), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1516), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2485), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1375), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), [282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), [288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 18), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 18), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 27), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 27), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 31), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 31), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 59), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 59), - [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), - [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(758), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(10), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(148), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1119), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2564), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1856), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2218), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(770), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(780), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(597), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(39), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2256), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(142), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(24), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2186), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(41), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(634), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2533), - [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(91), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(556), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2259), - [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(815), - [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1853), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1028), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1031), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2530), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1031), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), - [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 18), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 18), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 218), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 34), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 133), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 27), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 98), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 31), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 90), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 14), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(755), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(50), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(11), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(113), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(813), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2574), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1937), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2213), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(769), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(781), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(604), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2271), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(126), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(23), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2214), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(48), + [565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(634), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2488), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(95), + [574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(555), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(22), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2185), + [586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(909), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1516), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(818), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(819), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2485), + [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(819), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 59), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 99), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 99), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 155), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 99), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 99), [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(239), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(492), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(486), [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(481), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(494), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2460), - [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(585), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1801), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(584), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(485), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(484), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2470), + [903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(573), + [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1517), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(568), [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(558), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2288), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1055), - [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1975), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2345), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1526), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1577), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1547), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2354), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2238), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(625), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(616), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2359), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1341), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1898), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2360), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2361), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2362), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1895), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1553), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1299), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2244), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1464), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(634), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2364), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1366), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 48), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 48), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 22), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 22), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 71), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 71), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 181), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 181), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 15), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 15), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 176), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 176), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 15), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 15), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 76), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 76), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 74), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 74), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 194), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 194), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 61), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 61), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 195), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 195), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 183), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 183), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 245), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 245), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 76), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 76), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 76), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 76), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 24), - [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 24), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 244), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 244), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 26), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 26), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 28), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 28), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 243), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 243), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), - [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 48), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 48), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 6), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 6), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), - [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 224), - [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 224), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 15), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 15), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 242), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 242), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(561), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2165), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(918), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2058), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2512), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1561), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1586), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1572), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2364), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2160), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(627), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(606), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2369), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1348), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2098), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2370), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2371), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2372), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2035), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1570), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1297), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2159), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1470), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(634), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2476), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2379), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1368), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2379), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 236), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 225), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 225), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 175), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 76), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 157), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 148), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 147), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 86), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 146), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 145), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 169), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 87), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 76), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 143), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 104), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 154), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 128), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 76), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 88), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 76), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 83), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 173), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 124), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 48), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 48), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 5), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 76), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 75), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 61), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 169), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 171), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 15), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 170), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 176), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 176), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 51), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 169), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 50), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 72), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 74), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 51), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 73), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 50), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 51), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 178), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 50), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 15), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 109), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 167), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 179), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 151), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 166), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 152), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 71), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 68), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 22), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 22), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 67), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 180), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 153), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 66), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 162), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 174), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 161), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 51), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 245), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 245), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 240), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 244), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 244), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 243), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 243), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 181), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 181), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 242), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 238), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 238), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 24), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 99), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 237), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 237), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 48), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 48), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 53), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 5), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 52), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 26), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 183), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 183), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 5), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 28), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 138), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 137), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 136), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 6), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 233), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 233), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 94), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 15), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 232), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 232), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 225), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 225), [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 15), [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 15), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 235), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 186), [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 6), [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 6), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 241), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 240), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 187), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 15), [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 15), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 48), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 48), - [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 51), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 50), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), - [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 92), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 239), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 76), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 76), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 30), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 30), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 229), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 238), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 238), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 237), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 237), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 93), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 236), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 236), - [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 61), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 61), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 234), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 215), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 233), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 233), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 232), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 232), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 183), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 183), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 94), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 95), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 52), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 96), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 225), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 225), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 48), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 48), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 15), - [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 15), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 231), - [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 231), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 208), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 225), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 225), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 105), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 92), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 66), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 107), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 109), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 113), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 113), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 99), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 99), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 228), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 228), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 112), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 110), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(522), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(530), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(534), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(592), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1762), - [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(589), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(535), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(544), - [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(533), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2553), - [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(585), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1801), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(584), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(485), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 137), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 188), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 15), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 51), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 230), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 93), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 229), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 228), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 228), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 145), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 203), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 147), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 192), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 194), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 194), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 195), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 195), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 196), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 93), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 30), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 197), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 227), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 117), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 183), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 183), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 201), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 118), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 93), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 5), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 61), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 5), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 122), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 123), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 48), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 48), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 48), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 48), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 157), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 200), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 224), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 223), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 222), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 201), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 202), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 186), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 217), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 203), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 166), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 132), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 206), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 173), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 207), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 131), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 208), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 180), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 124), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 122), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 216), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 128), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 209), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 124), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 210), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 124), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 130), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 122), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 211), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 39), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 215), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 129), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 76), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 212), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 213), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 214), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 124), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 122), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(509), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(516), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(521), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(616), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(1529), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(615), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(524), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(504), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(530), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2453), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(573), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1517), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(568), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(493), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1315), - [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(561), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(559), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1364), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2251), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1348), - [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2501), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(586), + [2104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(554), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(556), + [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1356), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2266), + [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1342), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2454), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(589), [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(634), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2496), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1422), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(608), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(599), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1421), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2208), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1397), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1829), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1358), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2001), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2001), + [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2426), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1428), + [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(618), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(619), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1429), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2250), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1391), + [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1508), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1370), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1876), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1876), [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 182), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2501), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2454), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 4), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 20), [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 20), [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 20), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 21), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 21), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 36), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 41), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 37), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 47), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 37), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 19), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 19), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 25), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 25), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 61), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 61), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), - [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 61), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 61), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 60), - [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 60), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 22), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 22), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 193), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 193), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 42), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 42), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), - [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), - [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 99), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 99), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 99), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), - [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), - [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2518), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 32), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 32), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 33), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 13), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 41), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 6), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 19), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 19), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 38), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 37), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 45), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 46), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 47), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 25), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 25), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 108), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 16), + [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 69), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 17), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 89), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 22), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 22), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 60), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 61), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 61), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 91), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 100), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 103), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 111), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 9), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 142), + [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 144), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 150), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 43), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 193), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 193), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 134), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 155), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 155), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 32), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 32), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 62), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 42), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 42), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 7), + [3042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 62), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 62), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 42), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 99), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 99), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 33), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2528), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 11), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 114), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 99), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 172), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 219), [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 127), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 172), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 155), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 185), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 125), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 99), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 32), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 135), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 99), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 184), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 99), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 32), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 125), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__pattern, 1), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 4), REDUCE(sym__pattern, 1), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), - [3616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 54), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 58), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 55), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 55), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 56), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 55), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 5), REDUCE(sym_scoped_type_identifier, 2, .production_id = 6), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 56), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 12), REDUCE(sym_scoped_type_identifier, 3, .production_id = 13), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 35), REDUCE(sym_scoped_type_identifier, 3, .production_id = 36), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 40), REDUCE(sym_scoped_type_identifier, 3, .production_id = 41), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 55), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 55), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 55), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 56), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 56), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1525), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1561), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(594), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(496), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(498), - [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(499), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1735), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1489), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(489), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(491), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(492), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1555), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1558), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(597), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1367), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(188), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 61), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 22), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 226), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 61), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 22), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 226), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(606), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1168), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1839), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 61), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 190), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 189), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1535), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(555), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 22), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), - [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2295), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 29), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), - [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1695), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 28), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1551), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 64), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 44), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(104), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(52), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1548), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1296), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1556), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(673), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 79), - [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 80), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 64), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(562), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 3), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 84), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 49), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 5), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 66), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 55), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 55), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 2), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 2), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 103), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 198), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 61), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 103), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 61), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 226), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 158), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 198), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1351), + [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(187), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 22), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), + [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 226), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 158), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 62), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 22), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(603), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 85), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1166), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 77), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 139), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(190), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 57), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 189), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 190), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 63), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 64), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 28), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1563), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 61), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 199), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 44), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(57), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1545), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 29), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 78), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 79), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1549), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 80), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1625), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1959), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 141), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 221), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(578), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1300), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 103), + [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(236), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 140), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2258), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 92), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 9), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 64), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 63), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 160), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), + [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 159), SHIFT_REPEAT(557), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 102), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 22), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1550), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 97), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(119), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(715), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 101), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), - [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 82), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5569] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 3), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 84), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 81), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 82), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5535] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 156), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), }; #ifdef __cplusplus @@ -132549,7 +130277,6 @@ extern const TSLanguage *tree_sitter_rust(void) { tree_sitter_rust_external_scanner_serialize, tree_sitter_rust_external_scanner_deserialize, }, - .primary_state_ids = ts_primary_state_ids, }; return &language; } diff --git a/src/scanner.c b/src/scanner.c index 92911b45..29305d07 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -27,7 +27,7 @@ bool tree_sitter_rust_external_scanner_scan(void *payload, TSLexer *lexer, if (valid_symbols[STRING_CONTENT] && !valid_symbols[FLOAT_LITERAL]) { bool has_content = false; for (;;) { - if (lexer->lookahead == '\"' || lexer->lookahead == '\\') { + if (lexer->lookahead == '\"' || lexer->lookahead == '\\' || lexer->lookahead == '{') { break; } else if (lexer->lookahead == 0) { return false;